Re: Charting capabilities under GWT

2008-12-10 Thread alex.d
Take a look at the Google Visualisation API Library - i think it maybe exactly what you need: http://google-code-updates.blogspot.com/2008/12/google-visualization-api-library-now.html On 9 Dez., 17:12, Srini Marreddy [EMAIL PROTECTED] wrote: I suggest to take a look at Google charts api. It is

Re: Capabilities of GWT interfacing with Java applets

2008-12-10 Thread olivier FRESSE
GWTAI looks promising too : http://code.google.com/p/gwtai/ 2008/12/9 Alfred S [EMAIL PROTECTED] The information looks to be all there! I was able to successfully experiment a bit with it. Thanks! ~Alfred On Dec 9, 12:45 pm, Shawn Pearce [EMAIL PROTECTED] wrote: To answer your

Re: Server Side Byte Code Obfuscation

2008-12-10 Thread Allahbaksh
HI Rob and Shawn, Thanks for your reply. I am thinking to use ProGuard.Do you have any other open source alternatives. Please let me know if you have used any other? Regards, Allahbaksh On Dec 9, 9:35 pm, Rob Coops [EMAIL PROTECTED] wrote: On Tue, Dec 9, 2008 at 5:17 PM, Allahbaksh [EMAIL

Re: save content locally

2008-12-10 Thread Mahboob Khalid
Well Lothar, Actually, when gwt application is resolved to javascript, the url (of servlet) becomes part of the code and thus url could be hacked. That's why I am looking for a client-side solution, or is there a way to secure URL. Regards, Mahboob On Mon, Dec 8, 2008 at 7:10 PM, Lothar

Re: Standard/Simple GWT CSS?

2008-12-10 Thread Miles T.
On 9 déc, 21:07, gregor [EMAIL PROTECTED] wrote: usually with the rider that I tried MyGWT for only a short while and walked away from it after I realized what was going on What was going on ? Are you talking about the license change ? the point is there is a price to pay (and I don't mean

Re: GWT 1.5.3 with Eclipse

2008-12-10 Thread Mandar Vaze
Checkout mini tutorial for using GWT with Eclipse at http://desipenguin.wordpress.com/2008/12/08/creating-gwt-application-using-eclipse/ This covers the setup part only, not GWT development. But looks like you need help with the setup initially. -Mandar On Dec 10, 1:47 am, pgoovaerts [EMAIL

Re: Server Side Byte Code Obfuscation

2008-12-10 Thread Magno Machado
Won't it break rpc?Unless your obfuscator keep the names of your services methods, I think RemoteServiceServlet won't find them when you make a RPC call. But I'm not sure about this.. 2008/12/10 Allahbaksh [EMAIL PROTECTED] HI Rob and Shawn, Thanks for your reply. I am thinking to use

Re: Server Side Byte Code Obfuscation

2008-12-10 Thread Jason Morris
The obfuscator should either leave those method alone by default (since they're defined in an outside interface), or you should be able to configure it to leave them alone. Either way, RemoteServiceServlet uses reflection and thus does need the method names intact. You may be able to alter

Using ImageBundle for GWT maps

2008-12-10 Thread Danny Schimke
Is it possible to use ImageBundle for GWT-maps-API too? Because there are used Icon- objects which expect an image-URL-parameter or an Icon- object to create a new instance: 1. Icon.newInstance(images/red-blank-small.gif); 2. Icon.newInstance(myIconObject); Currently I am using images within a

Strange Dev Shell problem

2008-12-10 Thread Tóth Imre
Hi all! I am struggling with the Development Shell becouse it cant show me the exeptions. i run it from eclipse with the following argumnets: -logLevel ALL -noserver -whitelist . -out www http://localhost/scheduler/index.html My shell gives me indormations, what is the most important. it

Re: How to put focus on a cell of an editable grid if a particular even occurs

2008-12-10 Thread [EMAIL PROTECTED]
My suggestion is that you provide a lot more information. What does your editable grid look like? Is it something that you've written yourself? Does it have an API that allows you access to the internal text controls by position or reference? Later, Shaffer On Dec 9, 10:51 pm, chhavi [EMAIL

Re: Can't solve warnings

2008-12-10 Thread Thomas Broyer
On 9 déc, 18:58, Isaac Truett [EMAIL PROTECTED] wrote: Either upgrade to GWT 1.5 (which does support Java 1.5 syntax) or downgrade to Java 1.4. Where downgrade to Java 1.4 just means ask your IDE to use Java 1.4 source compatibility. In Eclipse, in your project's properties, Java Compiler -

Re: GWTShell and facelet.

2008-12-10 Thread olivier FRESSE
I'm not sure that it's the issue. From my understanding, the noserver mode is really useful when you wan't to use GWT RPC. I've made a network capture to see what's going on between the server and the hosted browser, and I've seen good html, ie JSF tags are translated by the servlet. But for

Re: Expandable rows in GWT ext table grid

2008-12-10 Thread Arthur Kalmenson
Hi Cris, As Sumit has already mentioned to you, you need to ask on the GWT-ext mailing list here: http://groups.google.com/group/gwt-ext GWT and GWT-ext are _very_ different. You can essentially consider them different libraries/frameworks. -- Arthur Kalmenson On Tue, Dec 9, 2008 at 12:32

Re: Server Side Byte Code Obfuscation

2008-12-10 Thread Allahbaksh
HI All, Thaks for your reply. I got a mail from Kevin Tarun. He has done it. There is a way in ProGuard by which you can specify which methods and classes not to obfuscate. Warm Regards, Allahbaksh On Dec 10, 4:13 pm, Jason Morris [EMAIL PROTECTED] wrote: The obfuscator should either leave

Re: ListBox [Beginner]

2008-12-10 Thread agon84
hm am I not allowed to post links here? (imageshack or something?) hm a small solution: add everything together ;) http: // img139. imageshack. us/img 139/ 3028/ agon84jd3 .jpg On 10 Dez., 16:14, agon84 [EMAIL PROTECTED] wrote: hi everyone, @gregor i will try this on at the xml. at the

Re: Advise for reimplementing a Struts JSP application in GWT

2008-12-10 Thread [EMAIL PROTECTED]
Speaking strictly from my opinion and based upon a very similar experience, a lot of this is going to be a complete rewrite. If your original development did a good job of separating true server functionality from client struts functionality, then the server objects could be reused in some

Spring ME for GWT?

2008-12-10 Thread wilfred
Guys, Yesterday I talked to a couple of GWT folks at Devoxx, and I told them about something we released open sourced. It's something that allows you to use Spring in environments without support for reflection. We made it for one of our projects based on Java ME, but several people told me it

Re: Can't solve warnings

2008-12-10 Thread MMM
Thanks Isaac and Thomas. I upgrade to GWT 1.5, but I still have two warnings: --First: Type safety: The expression of type List needs unchecked conversion to conform to ListObject Code: FileItemFactory factory = new DiskFileItemFactory(); ServletFileUpload upload

Re: why DOM.eventGetCurrentEvent().getButton() always returns 1 during MouseMove on FireFox?

2008-12-10 Thread yilativs
I opened a bug for this issue http://code.google.com/p/google-web-toolkit/issues/detail?id=3185 if you face similar problem please STAR the bug. By placing a STAR in issue tracker you make google developers consider the problem. On Dec 9, 11:58 pm, yilativs [EMAIL PROTECTED] wrote: Hello,

Re: Hello Everybody - need help with an GWT interface

2008-12-10 Thread Sumit Chandel
Hi Thib'z, Once you've coded up your GWT application, you would then deploy it by running the GWT cross-compiler over your source code to generate the corresponding JavaScript and HTML files. If you used the applicationCreator script to create your application, there will be an emitted

Using eclipse project references with GWT.

2008-12-10 Thread flash
In Eclipse I have a JPA project that contains a bunch of entities. I have a GWT project that houses all the web related stuff and GWT. I added a project reference from the GWT project to the JPA Project. When I start using JPA objects in GWT project I get errors in the console complaining about

Re: Capabilities of GWT interfacing with Java applets

2008-12-10 Thread Matt Bishop
Be careful about taking strings back from the Java applet, as they do not automatically coerce into JS strings. you have to do that yourself in native JS code: '' + appletString On Dec 9, 1:16 pm, Alfred S [EMAIL PROTECTED] wrote: The information looks to be all there!  I was able to

Re: Page navigation in GWT

2008-12-10 Thread fargo...@googlemail.com
Hi, I am just prototyping an app with GWT and surely miss the page navigation handling. But suppose i agree with taking the things in or out from the container. How one can handle the following scenario: * I have my main.html and this html has a loading_div, that shows loading message when the

Re: How to have a layered panel?

2008-12-10 Thread rakesh wagh
Yup glasspanel is really handy. Do remember to turn off the scrollbars... they could mess up the page big time! Window.enableScrolling(false); On Dec 9, 12:32 am, Petrus Pelser [EMAIL PROTECTED] wrote: The component in the incubator is called a GlassPanel and it works really well. Though I did

Re: PopupPanel over pdf bug in Firefox

2008-12-10 Thread ka1n
Thanks for the reply. Unfortunately the solution you mentioned is not sufficient for me because the pdf is taking up most of the screen. Making it invisible for a mere popup would look terrible. There is another solution and I already know how to do it without GWT. A simple iframe shim does

Re: Capabilities of GWT interfacing with Java applets

2008-12-10 Thread Alfred S
Thanks for the tip/heads-up! I'm sure that could have been an insanely frustrating problem to figure out. Here's hoping all goes smoothly... ~Alfred On Dec 10, 3:29 pm, Matt Bishop [EMAIL PROTECTED] wrote: Be careful about taking strings back from the Java applet, as they do not

What gwt method and/or event indicates that the object has been rendered?

2008-12-10 Thread sssmack
...and upon that for example getOffsetWidth() will return the rendered amount? thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

How to set Id's in a EditorGridCellPanel

2008-12-10 Thread Ruggershawn
Hello, I am trying to set Id's in a EditorGridPanel so I can use selenium for automation testing. I have different widgets in each cell (TextField, ComboBox, NumberField) and need to find a way to set a unique id for each widget on each row. Any ideas? Thanks!

Event.ONCLICK doesn't work in FF 3.0.3

2008-12-10 Thread Dackiller
Hi all, This is my First time using DOM Class... I try to set Event.ONCLICK from DOM class, it just work fine in IE6 but FF doen't work... I still searching about this issue, but nothing work for me. Let me show you... My Module.html content: --- HTML - html

Re: How to set Id's in a EditorGridCellPanel

2008-12-10 Thread Dackiller
Are you using GWT-EXT ? if your are using GWT-EXT, please go to http://gwt-ext.com/forum for GWT-EXT questions to set ID for any Widget use: TextField.setId(String id); to get ID for any Widget use: String ComboBox.getId(); I hope this can help you... On Dec 10, 5:53 pm, Ruggershawn [EMAIL

GTileLayerOverlay show and hide

2008-12-10 Thread ben
I have my GTileLayerOverlay adding and showing on start, and have them listed in a tree on the left. I then want the checkbox to toggle the visibility of the layer. But my problem is I have tried both remove and show/hide. Hide hides the GTileLayerOverlay, until you change the zoom on the map.

Installing GWT

2008-12-10 Thread Skywalker
Im trying to install the GWT. When I went to set my PATH variable it was not under users, it was under system. I edited it to contain the path of where I extracted the GWT. When I went to create a new project, it said 'java' is not recognized as an internal or external command, operable program

what's the caching solution for immutable tablemodels?

2008-12-10 Thread Hasan Turksoy
Hi all, Env; GWT-1.5.3, GWTIncubator-compiled code from latest incubator src it seems CachedTableModel will be available only for MutableTableModels (from the latest incubator src). Anybody knows the reason behind this? I want to use a paging scroll table with a custom immutable model (extends

TextBox listener for contents changed?

2008-12-10 Thread dhoffer
Does anyone know how to configure GWT's TextBox so I can be notified when its contents changes? I have just found out that addChangeListener does not work because it only gets fired when the user leaves the text box. Also addKeyboardListener does not do what I need because this is fired BEFORE

Re: TextBox listener for contents changed?

2008-12-10 Thread David Hoffer
It looks like KeyboardListenerAdapter's onKeyUp will do what I need. -Dave On Wed, Dec 10, 2008 at 5:50 PM, dhoffer [EMAIL PROTECTED] wrote: Does anyone know how to configure GWT's TextBox so I can be notified when its contents changes? I have just found out that addChangeListener does not

Re: TextBox listener for contents changed?

2008-12-10 Thread Litty Preeth
ChangeListener is the right one On Thu, Dec 11, 2008 at 7:06 AM, David Hoffer [EMAIL PROTECTED] wrote: It looks like KeyboardListenerAdapter's onKeyUp will do what I need. -Dave On Wed, Dec 10, 2008 at 5:50 PM, dhoffer [EMAIL PROTECTED] wrote: Does anyone know how to configure GWT's

Dynamically load GWT-Ext js

2008-12-10 Thread Sanj
Hi All, I want to load my all gwt-ext javascripts files after my home page. I think, there should be one method through JSNI like this :- public static native void loadScript() /*-{ document.write('script src=js//ext//adapter//yui//yui- utilities.js

Re: What gwt method and/or event indicates that the object has been rendered?

2008-12-10 Thread Adam T
Try overloading the onAttach() method of the widget/panel in question which are called as the widget is attached to the DOM, it might be wise to wrap your code that calls the getOffsetWidth() method up in a DeferredCommand. If you're widget is an Image, try adding a LoadListener and wrap the

Re: Installing GWT

2008-12-10 Thread ajay jetti
Set the the classpath variable of your operating system to ../jdk/bin directory you know for such errors you can just google with the string of error you got. yours --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[gwt-contrib] Re: Warning message in IE6 when using NamedFrame on SSL-secured web-site

2008-12-10 Thread David
Using javascript:'' for any IFRAME should be done as a default, without even thinking about the possible use. There were bugs in the past in FormPanel and PopupPanel in IE6 for the exact same reason. David On Tue, Dec 9, 2008 at 9:34 PM, Emily Crutcher [EMAIL PROTECTED] wrote: Why is this a

[gwt-contrib] [google-web-toolkit] [EMAIL PROTECTED] commented on revision r4292.

2008-12-10 Thread codesite-noreply
[google-web-toolkit] [EMAIL PROTECTED] commented on revision r4292. Details are at http://code.google.com/p/google-web-toolkit/source/detail?r=4292 Score: Negative General Comment: This doesn't even compile. Respond to these comments at

[gwt-contrib] [google-web-toolkit commit] r4294 - in releases/1.6/user: src/com/google/gwt/user/client/ui test/com/google/gwt/user/client/ui

2008-12-10 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Wed Dec 10 07:59:58 2008 New Revision: 4294 Modified: releases/1.6/user/src/com/google/gwt/user/client/ui/TabBar.java releases/1.6/user/test/com/google/gwt/user/client/ui/TabBarTest.java Log: Rolling back r4292. Review by: jlabanca (TBR) Modified:

[gwt-contrib] [google-web-toolkit commit] r4295 - releases/1.6/dev/core/src/com/google/gwt/dev

2008-12-10 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Wed Dec 10 09:27:58 2008 New Revision: 4295 Modified: releases/1.6/dev/core/src/com/google/gwt/dev/CompilePerms.java releases/1.6/dev/core/src/com/google/gwt/dev/Link.java Log: Fixed bad mojo with permutation IDs between CompilePerms and Link. Review by:

[gwt-contrib] Re: code review: issues_3166_3167_gwt16_r4353.patch

2008-12-10 Thread Joel Webber
Thanks. Still waiting on scottb to review my JUnit patch, then I will commit. On Mon, Dec 8, 2008 at 4:58 PM, Ray Ryan [EMAIL PROTECTED] wrote: LGTM Rietveld can't show inter-diff diffs, so I can't see, say, your version 1 and comments on the left and the new patch on the right. That's a

[gwt-contrib] [google-web-toolkit commit] r4297 - releases/1.6/eclipse

2008-12-10 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Wed Dec 10 10:38:08 2008 New Revision: 4297 Modified: releases/1.6/eclipse/README.txt Log: Adding instructions to ensure that eclipse is in 1.5 compliance mode. Modified: releases/1.6/eclipse/README.txt

[gwt-contrib] [google-web-toolkit commit] r4296 - in releases/1.6/user: src/com/google/gwt/user/client/ui test/com/google/gwt/user/client/ui

2008-12-10 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Wed Dec 10 10:30:37 2008 New Revision: 4296 Modified: releases/1.6/user/src/com/google/gwt/user/client/ui/TabBar.java releases/1.6/user/test/com/google/gwt/user/client/ui/TabBarTest.java Log: Recommitting r4292 after making it Java 1.5 compatible. Patch

[gwt-contrib] Re: Why is Timer#schedule(0) bad?

2008-12-10 Thread James Robinson
WebKit treats a time of 0 as 'set the timer to the lowest legal value'. I'm not aware of any browsers where it results in the code running inline, that seems like a clear browser bug if it was the case. The actual value that it clamps to varies by browser and changes occasionally. You can

[gwt-contrib] Re: Why is Timer#schedule(0) bad?

2008-12-10 Thread Ray Cromwell
Maybe a safe default is to clamp to the value of 1 vertical blanking period @ 60hz, or 16ms. It appears that on some systems, the timers are inherently keyed to this resolution anyway. -Ray On Mon, Dec 8, 2008 at 10:09 PM, James Robinson [EMAIL PROTECTED] wrote: WebKit treats a time of 0 as

[gwt-contrib] [google-web-toolkit commit] r4298 - in releases/1.6/user: src/com/google/gwt/user/client test/com/google/gwt/user/client test...

2008-12-10 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Wed Dec 10 12:46:47 2008 New Revision: 4298 Modified: releases/1.6/user/src/com/google/gwt/user/client/ListenerWrapper.java releases/1.6/user/src/com/google/gwt/user/client/Window.java releases/1.6/user/test/com/google/gwt/user/client/WindowTest.java

[gwt-contrib] [google-web-toolkit commit] r4299 - in releases/1.6: reference/code-museum/src/com/google/gwt/museum/client/defaultmuseum use...

2008-12-10 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Wed Dec 10 12:51:19 2008 New Revision: 4299 Added: releases/1.6/reference/code-museum/src/com/google/gwt/museum/client/defaultmuseum/Issue3186.java Modified: releases/1.6/user/src/com/google/gwt/user/client/ui/ListenerWrapper.java Log: Fixing issue 3186

[gwt-contrib] Code review request for blocking mouse leave/enter events in some cases

2008-12-10 Thread ecc
Reviewers: jlabanca, Description: Code review request for gwt issue (3189) Fixes the default Widget code to not trigger mouse enter/leave events when the user did not actually leave or enter the widget. http://code.google.com/p/google-web-toolkit/issues/detail?id=3189 Please review this at

[gwt-contrib] Re: Code review request for blocking mouse leave/enter events in some cases

2008-12-10 Thread jlabanca
LGTM http://gwt-code-reviews.appspot.com/605 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] Re: Fix for listenerwrapper, remove listener

2008-12-10 Thread ecc
On 2008/12/09 18:01:50, jlabanca wrote: LGTM Committed at 4298. http://gwt-code-reviews.appspot.com/603 --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] Re: Need review for more 1.6 WAR changes

2008-12-10 Thread Scott Blum
John, this is the corresponding change to the Linux binary to support it. BTW: how do we build libstdc++5 compatible binaries these days? --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit commit] r4300 - releases/1.6/user/src/com/google/gwt/user/client/ui

2008-12-10 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Wed Dec 10 13:13:19 2008 New Revision: 4300 Modified: releases/1.6/user/src/com/google/gwt/user/client/ui/ListenerWrapper.java Log: Formatting ListenerWrapper using standard gwt formatter to get the line breaks correct. TBR:jlabanca Modified:

[gwt-contrib] RR: baking the svn revision number into gwt-incubator.jar

2008-12-10 Thread Amit Manjhi
Hi Emily and Freeland, Please review the attached patch that bakes the svn information into gwt-incubator.jar. Regards, Amit --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] Re: Need review for more 1.6 WAR changes

2008-12-10 Thread BobV
dev/core/src/com/google/gwt/core/ext/linker/AbstractLinker.java | 7170 +1 - 0 ! What's with the @SuppressWarnings tags? dev/core/src/com/google/gwt/core/ext/linker/impl/SelectionScriptLinker.java | 20 13 +7 - 0 ! emitSelectionScript(): add a comment to explain

[gwt-contrib] Re: Need review for more 1.6 WAR changes

2008-12-10 Thread Scott Blum
On Wed, Dec 10, 2008 at 6:59 PM, John Tamplin [EMAIL PROTECTED] wrote: On Wed, Dec 10, 2008 at 3:51 PM, Scott Blum [EMAIL PROTECTED] wrote: John, this is the corresponding change to the Linux binary to support it. Changing the test for the number of arguments to gwtOnLoad will prevent

[gwt-contrib] RR: HasValue is not ready for primetime

2008-12-10 Thread Ray Ryan
As much as I like the spirit HasValue interface introduced with the new event handlers, I think we've rushed it, and that it should be removed for 1.6. It stands a good chance of interfering with nascent data binding / validation work. And its application to CheckBox is just plain wrongheaded and

[gwt-contrib] Re: RR: HasValue is not ready for primetime

2008-12-10 Thread Isaac Truett
Reactions? Puzzlement. It stands a good chance of interfering with nascent data binding / validation work. Care to elaborate on this? And its application to CheckBox is just plain wrongheaded and confusing. (CheckBox#setValue doesn't actually set the input element's value

[gwt-contrib] Re: RR: HasValue is not ready for primetime

2008-12-10 Thread Ray Ryan
On Thu, Dec 11, 2008 at 12:28 PM, Isaac Truett [EMAIL PROTECTED] wrote: Reactions? Puzzlement. It stands a good chance of interfering with nascent data binding / validation work. Care to elaborate on this? We'll need a general stick-a-value-in-take-a-value-out mechanism, the

[gwt-contrib] Re: Need review for more 1.6 WAR changes

2008-12-10 Thread Scott Blum
On Wed, Dec 10, 2008 at 6:51 PM, BobV [EMAIL PROTECTED] wrote: dev/core/src/com/google/gwt/core/ext/linker/AbstractLinker.java | 7170 +1 - 0 ! What's with the @SuppressWarnings tags? logger is unused, UnableToComplete not actually thrown.

[gwt-contrib] Re: RR: HasValue is not ready for primetime

2008-12-10 Thread Isaac Truett
We'll need a general stick-a-value-in-take-a-value-out mechanism, the HasValue interface may not be the right one, and we'd prefer not to lead with it in isolation from the framework as a whole. If HasValue isn't a contract that you want to honor, that's one thing. But saying that it would

[gwt-contrib] [google-web-toolkit commit] r4301 - in releases/1.6/jni/linux: . prebuilt

2008-12-10 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Wed Dec 10 16:39:41 2008 New Revision: 4301 Modified: releases/1.6/jni/linux/ExternalWrapper.cpp releases/1.6/jni/linux/prebuilt/libgwt-ll.so Log: Adding initModule() support for Linux hosted mode. Review by: jat Modified:

[gwt-contrib] Re: RR: HasValue is not ready for primetime

2008-12-10 Thread Freeland Abbott
Without having actually looked at HasValue much, I did get pinged by a friend of mine who was annoyed that his overridden parameterized getValue() was now colliding with our String getValue()... looking at CheckBox, perhaps something like HasValueBoolean would be a better semantic. (It also might

[gwt-contrib] review: selective merges from 1.6 to trunk

2008-12-10 Thread Freeland Abbott
This is going to make our next 1.6 - trunk merge mildly unpleasant, but we need the 1.6 fixes at c4298 and c4299 'cause we're seeing them in the trunk, but want minimal other changes until we're sure the current mess around the confluence of event updates, hosted mode, war mode, AND oophm have