- e970067 Fixes issue #1345; calling XHR.open() with null arguments for user and password would cause a "null"/"null" login to be sent to the server on Opera. The fix is to only pass exactly as many arguments to open() as matter. I made three different overloads for the JSNI methods because in most cases (no auth) the compiler will be able to optimize out the 4 and 5 arg versions. by gwt.team.scottb · 18 years ago
- 213986c Fixes issues 1180 and 1181. In addition, it also normalizes the scales for graphs of the same benchmark and includes several UI improvements (styling, hyperlinks, improved reports list, to name a few). by gwt.team.mmendez · 18 years ago
- 6a69ac1 Fixes issue #1406; there was a memory leak on IE due to very subtle nuances of XHR on IE. Turns out the only legal way to "unhook" an onreadystatechanged handler is to set it to a dummy func! by gwt.team.scottb · 18 years ago
- bceba00 Fixes Issue #1421. by gwt.team.knorton · 18 years ago
- 687674a Fixed ImageSrcIE6.removeTop(); it was borked. Added better test coverage for delay-load images by checking the REAL source after the image has had a chance to really load. by gwt.team.scottb · 18 years ago
- 121a608 Fixes issue #1215; this change handles state transitions among delay-loaded images on IE6 properly, so that updating the src of an image at any given time will have the correct effect. Updates to DOMTest to thoroughly test all the cases. by gwt.team.scottb · 18 years ago
- 0497e89 Fixes a build break; the code I had committed did not work properly in hosted mode. by gwt.team.scottb · 18 years ago
- 8f7a36f Fixes issue #1346; catches a couple of cases where JavaScriptObjects should have been getting wrapped, but weren't. by gwt.team.scottb · 18 years ago
- 36e1e34 The DOM.eventGet methods can return "undefined" or "NaN" if the event property by gwt.team.jgw · 18 years ago
- 4393f55 Fixes issue #1162 and issue #1128; JSON classes now defensively ensure the JavaScript string used as a key is actually a primitive when access the backStore JSO. This was an issue particularly on FF. Includes tests to verify the behavior. by gwt.team.scottb · 18 years ago
- 2ff7cf0 Fixes issue #1176; better error created when using GWT.create() outside of client code. by gwt.team.scottb · 18 years ago
- f8fe904 Must access fields at the actual declared class. by gwt.team.scottb · 18 years ago
- 0361757 When removing a widget from the RootPanel, the RootPanel overwrites the CSS by gwt.team.jgw · 18 years ago
- aa481e1 PopupPanel positioning changes. Currently, PopupPanel.center() requires that by gwt.team.jgw · 18 years ago
- ea75da5 Fixing accidental bug checked in as part of r1239. by gwt.team.jgw · 18 years ago
- 7041820 PopupPanel.onEventPreview doesn't call the onKeyXXXPreview method unless the by gwt.team.jgw · 18 years ago
- 02d203e Integer.parseInt throws a JavaScript Exception when passed null. The Number.__parseAndValidateLong method by gwt.team.jgw · 18 years ago
- c5f8429 The hidden input used in Safari changes the cursor to a text selector on hover, by gwt.team.jgw · 18 years ago
- 44a60aa Reversed assertEquals parameters so that expected and actual are reported by gwt.team.knorton · 18 years ago
- b055b40 Fixes Issue #1349. by gwt.team.knorton · 18 years ago
- 3072041 Fixes Issue #1289. by gwt.team.knorton · 18 years ago
- 21a5a48 Fixes issue 1138. The root cause was that the RPC class and the ServerSerializationStreamReader used their respective this.class.getClassLoader() to get a classloader to resolve types during deserialization. This worked well as long as the GWT code was in the same classloader as the application code. In scenarios where the GWT code was moved into a shared classloader, like tomcat's shared classloader, we would fail to resolve classes. by gwt.team.mmendez · 18 years ago
- efe3b8b Clarifies the order in which onLoad() and onUnload() will be called. onLoad() will always be by gwt.team.jgw · 18 years ago
- a456f2e This commit addresses issues 1129, 1161, and 1163 and it includes some general by gwt.team.mmendez · 18 years ago
- ef31b33 Fixes issue #1253. Adds mouse capture to SplitPanels. by gwt.team.knorton · 18 years ago
- 77cda40 Now that PopupPanel.setWidth(String) and PopupPanel.setHeight(String) actually by gwt.team.jgw · 18 years ago
- c734701 There were some references to "clear.cache.gif" that did not have by gwt.team.jgw · 18 years ago
- 42a7cc6 Doc warnings fixit. by gwt.team.scottb · 18 years ago
- 8ca1129 Build fix: mismatched HTML tags. by gwt.team.scottb · 18 years ago
- 29eadb5 Rewrite of ArrayList.java by gwt.team.scottb · 18 years ago
- db8160c Build fix: was trying to rely on JavaScriptObject methods that haven't been committed yet. :) by gwt.team.scottb · 18 years ago
- 9c29c1c Rewrite of HashMap. The proximal reason for the changes are that HashMap was intolerant of any modifications to the JS Object prototype, which can occur in mashup mode with certain JavaScript libraries. The new implementation will ignore most extra fields. by gwt.team.scottb · 18 years ago
- 88964b0 - Lazy init hashCache to avoid clinit calls by gwt.team.scottb · 18 years ago
- 1228924 Fixing a little typo. by gwt.team.jgw · 18 years ago
- 4d2183c scontinue use of JavaScript's Date.toGMTString with an by gwt.team.jgw · 18 years ago
- 7c061da In Internet Explorer, if you call popupPanel.setVisible(...) while the panel is by gwt.team.jgw · 18 years ago
- a96818a There is a problem when using Internet Explorer to access image bundle files by gwt.team.jgw · 18 years ago
- cb1bef0 I made the suggested code change to check if the "expires" parameter is null before calling the by gwt.team.jgw · 18 years ago
- 0836294 Fixes issue #1260. I introduced the bug in r955. The problem I was trying to solve in that revision was making the following code do an array store check: by gwt.team.scottb · 18 years ago
- 80fb20b Fixes issue #1132. In r956 I put in a fix to make static initializers chain to their superclass static initializers. Unfortunately, the change I put in resulted in the wrong evaluation order. I'm backing out much of that change, and instead fixing the same problem a different way. by gwt.team.scottb · 18 years ago
- 060bd86 Fixes Issue #1093. by gwt.team.knorton · 18 years ago
- 32a1d3d Fixes Window.getClient[Width|Height]() to reliably give the client area, excluding scrollbars. Moves implementation to browser-specific code. by gwt.team.jgw · 18 years ago
- 3062faf Fixes Issue #1118. by gwt.team.knorton · 18 years ago
- 417a226 Fixed a typo causing DelegatingKeyboardListenerCollection to misfire onKeyUp; added unit test. by gwt.team.jgw · 18 years ago
- 13a731e Fixes issue #1200; instead of using about:blank as an error proxy for clear.cache.gif in ClippedImageImplIE6.java, uses "http://" or "https://" (depending on the host page base URL). by gwt.team.scottb · 18 years ago
- 2b47014 Fixes issue #1225. by gwt.team.knorton · 18 years ago
- e083ef7 Fixes a problem where detaching and reattaching a RichTechArea would cause an NPE; cross platform. This really needs to be fixed the right way after the RC so that initialization is totally separate from attachment. by gwt.team.scottb · 18 years ago
- 30c2ef2 Server side code will now also check for java.io.Serializable when determining if a type is GWT serializable. Added unit tests to cross-check. TEst failed before the modification to ServerSerializableTypeOracleImpl and passed afterwards. by gwt.team.mmendez · 18 years ago
- 7f31fa8 Fixes the firing of focus by FocusImplSafari. Calls to element.focus and by gwt.team.knorton · 18 years ago
- 082736c Fixing props on new RichTextAreaTest.java. by gwt.team.scottb · 18 years ago
- cedd004 Whoops, fixing bad merging (and setting props) on FocusImplSafari.java by gwt.team.scottb · 18 years ago
- 332c0f8 Fixes RichTextArea.get/setText() on Safari by using innerText rather than textContent. by gwt.team.scottb · 18 years ago
- ffb2c2b Makes focus work on Safari for elements that are not naturally focusable. by gwt.team.scottb · 18 years ago
- 73aaa6b Fixes event handling for CustomButton and subclasses: by gwt.team.scottb · 18 years ago
- a68f4ed This change allows setHTML/getHTML and setText/getText to work on a RichTextArea before the underlying iframe is properly initialized. It does so by caching the data in a temporary div, and copying the contents into the iframe once its ready. by gwt.team.scottb · 18 years ago
- 1e2f88e Fixes Issue #1103. by gwt.team.knorton · 18 years ago
- be6c981 Fixes Issue #961. by gwt.team.knorton · 18 years ago
- 49ac92d Build fix; makes a PopupPanel "remember" what size the user asked for. This allows a user to set a size first and then add a child widget (which historically works). Also changes expected/actual in PopupTest. by gwt.team.scottb · 18 years ago
- b8975e8 Fixit on missing svn props. by gwt.team.scottb · 18 years ago
- 9d5fec5 Style cleanup for previous patch (r1152). by gwt.team.jgw · 18 years ago
- e0f26f6 Fixes poke-through scrollbars on Firefox/Mac. by gwt.team.jgw · 18 years ago
- 4d0386d Makes DialogBox modal by default (the original default, before we added modeless dialogs). by gwt.team.jgw · 18 years ago
- ecd0049 Docs the fact that setting selection programmatically does not fire events. by gwt.team.jgw · 18 years ago
- 452b151 Fixes a problem with the RichTextAreaImplIE6 implementation that caused a bogus history entry to be created. by gwt.team.scottb · 18 years ago
- 1c64647 Fixes a CSS typo in DOMTest that was breaking the absolute position by gwt.team.knorton · 18 years ago
- b42442a Fixes Issue #852. by gwt.team.knorton · 18 years ago
- 333bde7 Servlet URLs should be module base relative. by gwt.team.scottb · 18 years ago
- eca8726 Moving ImageBundle into the ui subpackage. by gwt.team.scottb · 18 years ago
- ee53e2e Fixed imports. by gwt.team.scottb · 18 years ago
- 7d72e96 Updating error message to include new formulation of history frame. by gwt.team.scottb · 18 years ago
- c81a304 Removed test code. by gwt.team.mmendez · 18 years ago
- 749b95f Fixes issue 1097; added a unit test for this case. The code will now validate the interface in the aggregate. Minor doc fix for ReachableTypeOracleBuilder. by gwt.team.mmendez · 18 years ago
- 3b8f421 Spelling fix + unneeded import. by gwt.team.scottb · 18 years ago
- f811950 Accidentally committed another empty file. by gwt.team.jgw · 18 years ago
- e3841f5 Fixes DialogBox's DockPanel to be 'width 100%' when it is resized. by gwt.team.jgw · 18 years ago
- f980e69 Fixes Issue #757. by gwt.team.knorton · 18 years ago
- e0dbb6e Fixes Issue #634. by gwt.team.knorton · 18 years ago
- 58c69a3 Removing accidentally left over, but empty, FormPanelImplOpera. by gwt.team.jgw · 18 years ago
- 5fe9eb5 Fixes Issue #1070. by gwt.team.knorton · 18 years ago
- 3c0de0e Fixes FormPanel submission on Safari; switches text/plain requirement to text/html (text/plain simply cannot be made to work on Safari); by gwt.team.jgw · 18 years ago
- 7e2dddb Update the javadoc and DeveloperGuide to reflect the latest RPC changes. by gwt.team.mmendez · 18 years ago
- 32deefd Some error message and doc cleanup in I18N. by gwt.team.scottb · 18 years ago
- 380dd3c Fixes the mysterious jumping popup panels. Patch by: jgw Review by: rdayal by gwt.team.jgw · 18 years ago
- 4afa2f9 Fixes issue 1091, default to warn if not all types in an auto serializable type hierachy are serializable and adds gentler treatment of missing gwt.typeArgs. If there is a missing gwt.typeArgs the generator will emit a warning and pull in all types that qualify for serilization. This will allow code that was missing gwt.typeArgs to continue to work at the cost of a larger application size. by gwt.team.mmendez · 18 years ago
- c57f943 Fixes CustomButton to follow the new style naming pattern. by gwt.team.jgw · 18 years ago
- ec4a1df Changes all uses of Vector to ArrayList in the user, samples and super. by gwt.team.knorton · 18 years ago
- bf30b3e Build fixes; sorted RichTextImpls and removed no longer supported change by gwt.team.scottb · 18 years ago
- b4e2234 Forget to set props. by gwt.team.scottb · 18 years ago
- 895944a A fix for the broken build, mostly related to UIObject.styleName stuff. by gwt.team.scottb · 18 years ago
- b19e674 Fixes race condition in RichTextAreaImplIE6, and badly borked Opera implementation. by gwt.team.jgw · 18 years ago
- 73470db Fixes issue 1078. The primitive wrapper classes in our JRE emulation libraries should have been updated to use "final transient" instance fields instead of "final" instance fields as part of r1043. by gwt.team.mmendez · 18 years ago
- fd944f8 Fixes popup panels that are shown and then reused. It was setting its position style in its ctor, by gwt.team.jgw · 18 years ago
- af65813 Set the mime-type and eol-style properties. by gwt.team.mmendez · 18 years ago
- 0e65faf Fixes issue 1059. The problem is that all of the detected version incompatibilities between a RemoteService client and its corresponding server get converted into an InvocationException. This is a problem because the client code does not know what caused the InvocationException and the only thing that it can do is retry. by gwt.team.mmendez · 18 years ago
- 0119cb3 Removing jgw contamination from the bobv r1096 patch. by gwt.team.scottb · 18 years ago
- 5daf29d Makes the IE6 popup shim transparent. Patch by: bobv Review by: jgw by gwt.team.jgw · 18 years ago
- d64b728 Constrains PopupPanel key preview events to fire only for those elements by gwt.team.jgw · 18 years ago
- ccdb36c Normalizes IE to generate two clicks for a doubleclick event (like other browsers do). by gwt.team.jgw · 18 years ago
- e4b9fe1 Fixes issue #1024; we were not correctly setting up static dispatch for *qualified* super method calls due to a misunderstanding of JDT's model. by gwt.team.scottb · 18 years ago
- b751f24 Fixes: by gwt.team.jgw · 18 years ago