gwt /
gwt /
e1f3234fc7d9413b0967e8cb12e4cec5a64d88f5 - e1f3234 Linux distro should use bzip2. by scottb@google.com · 17 years ago
- e21c04a JavaScriptException is now approximately 327% more uber. In addition to really great error messages, the underlying exception is also accessible. There's new hosted mode integration to make it work the same in hosted mode, as well as a new test+suite. by scottb@google.com · 17 years ago
- 74af630 Remove unused import from Stats.java. by gwt.team.bobv · 17 years ago
- 6f8b4d9 Generic types that declared TypeParameters which erased to Object were considered GWT serializable even though their raw form would not be due to the explicit Object reference. This patch will treat any type parameter that erases to Object as if it were Object explicitly. by gwt.team.mmendez · 17 years ago
- 946c440 TypeOracle.getParameterizedType would erroneously throw an IllegalArgumentException for a nested generic type if if its parameterized form was requested before the nested generic type was fully resolved. by gwt.team.mmendez · 17 years ago
- 519810f Update the I18N sample to demonstrate i18n annotations, including plural forms. by gwt.team.jat · 17 years ago
- 3a9d9cc Add support for i18n annotations, including plural forms. by gwt.team.jat · 17 years ago
- eca2d4f Fixes a bug in MenuBar where the selectedItem was not set to null when an item is removed or clearItems is called. This could result in a JS null pointer exception if garbage collection runs because we try to access an element that no longer has any references to it. by gwt.team.jlabanca · 17 years ago
- 3fb08e7 Fixes another problem with JSNI method signatures introduced in r2090. Decided to maintain information about whether a type bound was implicit (i.e. ?) or explicit ? (extends | super) T. by gwt.team.mmendez · 17 years ago
- 6ef7147 Correct misleading documentation. by gwt.team.jat · 17 years ago
- 58016b5 Adds hooks for lightweight performance metrics for GWT modules. by gwt.team.bobv · 17 years ago
- 90c234d Updated to use new ImageBundle.@Resource annotation instead of old-style javadoc @gwt.resource. In RichTextToolbar.java, removed the metadata completely since in every case the image file was already named after the associated method. Also removed an unused local in ShowcaseGenerator.java. by bruce@google.com · 17 years ago
- 4e7fd56 Fixes the build break caused by JSNI injector on generic native methods. This was broken by the commit at r2090 which removed the JBounds class and affected the toString methods. by gwt.team.mmendez · 17 years ago
- 5fbcafd Very minor log messages tweaks for grammar and/or consistency. by bruce@google.com · 17 years ago
- 46cff10 Addresses issue 2171. Adds the @Resource annotation to ImageBundle and deprecates the old @gwt.resource javadoc pseudo-annotation. Includes updated javadoc, samples, and a bonus class "UnitTestTreeLogger" that makes it easier to unit test behavior with respect to logging. by bruce@google.com · 17 years ago
- cc83bd0 This patch updates JTypeParameter.getBounds(), JWildcardType.getUpperBounds() and JWildcardType.getLowerBounds() to simply return the array of type bounds directly without having to use the intermediate JBounds type. The wildcard type bounds follows the model used by the reflection API. by gwt.team.mmendez · 17 years ago
- 75fb467 Add mix-in behavior to the LinkerContext visible to the Linkers. by gwt.team.bobv · 17 years ago
- 0ac7a94 by bruce@google.com · 17 years ago
- 4837dd3 Re-adding a11y changes from r1977 and r1980 (these changes were previously rolled back in r1981). by gwt.team.rdayal · 17 years ago
- f50b4eb Follow-up to r2074: by scottb@google.com · 17 years ago
- 20f249d - adds StringBuilder to the Java emulation classes, by spoon@google.com · 17 years ago
- 143acb7 If a PopupPanel is closed while it is being opened, the animation is cancelled according to the new (closed) state instead of the old (opened) state. As a result, the animation could be hidden twice in a row, once on cancel, and another when it is actually hidden. In ie6, this causes a JS error. The animation in the PopupPanel now has a boolean that keeps track of the old state. by gwt.team.jlabanca · 17 years ago
- ae8ceb7 Enable inlining of functions that use local variables. by gwt.team.bobv · 17 years ago
- 07575ae Animations now start synchronously if the start time is not in the future. by gwt.team.jlabanca · 17 years ago
- 198a195 JEnumType.getEnumContants() were not being returned in declaration order. This patch updates the AbstractMembers classes to use LinkedHashMaps so that the insertion order is preserved. JDT visits fields and methods in declaration order so this also addresses the problem with enumeration constants. JEnumTypeTest was updated accordingly. by gwt.team.mmendez · 17 years ago
- 34f31d6 Convert to annotations, minor cleanup. by gwt.team.jat · 17 years ago
- 40faa08 The Showcase sample demonstrates many of the features of GWT including Widget styles and animations, I18N support, general design patterns, other features. The Showcase is available in 4 languages and works well on all browsers. This version is almost complete, but Bruce, Joel and I decided to check it in before GWT 1.5 milestone 2 so we can receive feedback before the offical release. by gwt.team.jlabanca · 17 years ago
- bc55ed6 This patch includes style and animation enhancements to multiple widgets. The Animation base class provides basic animation support controlled by a single Timer. Many widgets now use animations to create UI effects on user actions. Animations can be disabled en mass using one of two properties: gwt.enableAnimations and gwt.enabledWidgetAnimations. In addition, animations can be enabled or disabled on a Widget by Widget basis. by gwt.team.jlabanca · 17 years ago
- 841e9c8 Format: remove unnecessary blank lines. by scottb@google.com · 17 years ago
- 7b9e93f One of the BrowserManagerServer tasks in our continous build was not by gwt.team.zundel · 17 years ago
- c9107bd Removed unused import. by scottb@google.com · 17 years ago
- f808c69 Added a custom error message to GWTShellServlet for "gwt.js" requests. by scottb@google.com · 17 years ago
- a3ab357 Fixes a build break caused by r2047. We were always attempting to generate an instantiate method for a generated field serializer; even if the the class was not default instantiable. This error was only detected in web mode. by gwt.team.mmendez · 17 years ago
- 0f1bb91 Added a warning for each use of the gwt.defaultEntryPoint javadoc annotation on RemoteService interfaces. (This annotation causes the client side proxy to automatically call the ServiceDefTarget.setServiceEntryPoint(String) method.) Introduced a Java 1.5 style annotation, RemoteServiceRelativePath, which has the same effect. by gwt.team.mmendez · 17 years ago
- 5f35789 Finishes issue 1139. Adds java.io.Serializable to our JRE's version of Throwable. The Throwable.getMessage() method for checked exceptions thrown by RPC methods no longer returns null if a user forgets to extend SerializableException. by gwt.team.mmendez · 17 years ago
- 6876b70 Fixed svn:eol-style. by scottb@google.com · 17 years ago
- 077e9db JavaScriptObject identity now holds true for all hosted modes; deprecating DOM.compare() which is no longer necessary. by scottb@google.com · 17 years ago
- 575b4d5 JsValueIE6 now queries for IUnknown to determine unique pointer, per COM rules. This makes JavaScriptObject$ identity match JavaScript object identity more closely. by scottb@google.com · 17 years ago
- cf3bfd0 Changing equals usage to DOM.compare by gwt.team.ecc · 17 years ago
- abe666a Quick patch to fix a quirks -> standards bug (missing 'px') in the mail sample. by gwt.team.jgw · 17 years ago
- eda21bf The mac distro was bundling gwt-dev-linux instead of gwt-dev-mac. by scottb@google.com · 17 years ago
- 6feb8e6 Fixed svn props on new files by scottb@google.com · 17 years ago
- 8214ff1 Added logic to Tree to prevent it from blocking native browser history navigation via alt+left/right. by gwt.team.jlabanca · 17 years ago
- 97af149 Made OSX hosted mode consistent with other platforms in handling of JSNI by gwt.team.knorton · 17 years ago
- ead7f7c Fixed a problem in the mac distro-source build.xml that would bonk the by gwt.team.knorton · 17 years ago
- dd65321 It turns out that Safari 2.0.4 does not throw an exception when an XHR violates the same-origin policy. As a matter of fact, it appears to do nothing. The test will no longer fail if an XHR on a Safari browser fails to generate a same-origin policy violation. by gwt.team.mmendez · 17 years ago
- 890cb21 Rewrote JSON library. by scottb@google.com · 17 years ago
- 4530b75 Removed unnecessary lambda wrappers from generated type serializers. This would break Windows hosted mode before, but now hosted mode is fixed. by scottb@google.com · 17 years ago
- 8d3c288 Fixes Issue #1792 by gwt.team.knorton · 17 years ago
- 6271b76 Fixed several instances of "can not" => "cannot" by scottb@google.com · 17 years ago
- 45e892a RequestBuilderTest was not failing when it should. by scottb@google.com · 17 years ago
- 7118257 The JSO redesign broke callers of Element.equals() on some browsers; updated tests to use DOM.compare(). by scottb@google.com · 17 years ago
- 93ebf89 scottb, bruce, and jat totally botched this patch and were only copying half as many bytes as necessary in the SwtOleGlue fix. by scottb@google.com · 17 years ago
- ec4ee03 Fixes a latent bug in SwtOleGlue.extractStringFromOleCharPtr(). We were treating the incoming value as a BSTR, but it's really just a naked OLECHAR*. by scottb@google.com · 17 years ago
- a34e25a Keep from crashing IE hosted mode by recreating expired MethodDispatches. by scottb@google.com · 17 years ago
- e184502 Scott optismization(TM). Removed unnecessary and costly check from JsValueGlue.createJavaScriptObject(). by scottb@google.com · 17 years ago
- eee7738 - Added install and staging to jni/windows - Cleaned up staging target by scottb@google.com · 17 years ago
- a687b20 Fixes the RequestBuilderTest unit test which was broken on Safari 2.0.4. On Safari, 2.0.4, if an HTTP response does not have a body, the XmlHttpRequest.status field will have an undefined value. by gwt.team.mmendez · 17 years ago
- 77aed62 Rolling back commits 1980 and 1977. The a11y work has implementation conflicts with ensureDebugId. by gwt.team.rdayal · 17 years ago
- eed24c3 Fix Checkstyle issue. by gwt.team.rdayal · 17 years ago
- fcf42dd Committed guard to prevent DOM.isOrHasChild() from being called with a null child element. by gwt.team.ecc · 17 years ago
- 0f93138 -Added supporting library for setting of ARIA roles/states (it is currently just a wrapper around DOM.set/get/removeElementAttribute calls) by gwt.team.rdayal · 17 years ago
- ceec4c0 Fixes eventGetFromElement and eventGetToElement by making them work on both mouseover and mouseout. by gwt.team.ecc · 17 years ago
- 5103555 Filed as Issue #2143. by gwt.team.knorton · 17 years ago
- 0192789 Changed JSONNumber to always uses JavaScript-level double->String conversion by scottb@google.com · 17 years ago
- f70df4c Fixes issue 2008. Corrects JSONObject's toString to properly escape by gwt.team.jat · 17 years ago
- edb4ca7 Moved ASM into a private package namespace in our source tree to avoid external class conflicts. by scottb@google.com · 17 years ago
- 9b81e79 Fixes issue #2139; web mode was throwing an ArrayStoreException trying to store a JavaScriptObject into Object[]. by scottb@google.com · 17 years ago
- 0e0a3e4 Fixed bad comment in JSONParser. by scottb@google.com · 17 years ago
- 7cead1f Minor code cleanup of a couple of compiler visitors. by scottb@google.com · 17 years ago
- 3da39cd Removed Xerces from our distro; the functionality we needed is built into the 1.5 JRE. by scottb@google.com · 17 years ago
- b1812e9 Updated source location for BrowserDetect in product COPYING notices due to moved Benchmarks. by scottb@google.com · 17 years ago
- 4ca1b43 propertyregex doesn't work in this case, just require that gwt.remote.browsers includes rmi:// for each host. by gwt.team.bobv · 17 years ago
- 7704291 Run all remoteweb targets in parallel in a single JVM instead of serially across multiple JVMs. by gwt.team.bobv · 17 years ago
- 799633f Add GWTTestSuite to bin GWTTestCases to minimize the number of times the test cases must switch between GWT Modules. by gwt.team.bobv · 17 years ago
- 88a6232 This change updates the sample apps and applicationCreator to create HTML pages that set browsers into Standards rendering mode. It adds an example of an HTML 4.0.1 Transitional DOCTYPE declaration to the template used by applicationCreator and by all of the sample application host pages distributed with GWT. by gwt.team.zundel · 17 years ago
- d337854 Repatching clobbered change for bug 1528 (must use "" rather than "auto" for IE 6. by gwt.team.ecc · 17 years ago
- 7273290 Adds the clone element to DOM. Reviewed as part of Tree upgrades. Review by: jgw by gwt.team.ecc · 17 years ago
- 8a3f57a The erasure of a wildcard should be the erasure of its first bound. by gwt.team.mmendez · 17 years ago
- 1b74362 - Removed the deprecated Range interface; since we're breaking everyone anyway, there's little point in leaving this class around. by scottb@google.com · 17 years ago
- a9b8a1a Made the JUnit translatable organization simpler since it's easy to order source lookup path these days. by scottb@google.com · 17 years ago
- cb8ba84 Fixes the problem reported in issue 1830 comment #12. by gwt.team.mmendez · 17 years ago
- 2458343 Added check to keep it from mistakenly seeing static methods as being by gwt.team.jgw · 17 years ago
- 825f8bd Reverted wonky junitHost-based JUnit page load back to a static HTML page that determines what module to load on the client side. by scottb@google.com · 17 years ago
- 6436125 Forgot to update the copyright date. by gwt.team.mmendez · 17 years ago
- 19e6aca Fixes a race condition while trying to reset the accessibility state of Field objects during serialization. It turns out that this was not necessary because reflection will return a copy of this state when Class.getDeclaredFields() is called. by gwt.team.mmendez · 17 years ago
- 45c5374 ReportViewer's helper text was not showing up on the the initial load. by scottb@google.com · 17 years ago
- 8521345 Fixed doc build for new benchmarks package location. by scottb@google.com · 17 years ago
- cc80ab7 Roll-back accidental commit in r1933. by scottb@google.com · 17 years ago
- 7f6f311 Adding translatable-only benchmarks files to gwt-lang. by scottb@google.com · 17 years ago
- 3edd5e4 Merge: changes/scottb/jso -r1776:1933 Into: trunk@1933 by scottb@google.com · 17 years ago
- 78b5d97 Fixed JUnit's module rebasing for Old Mozilla. by scottb@google.com · 17 years ago
- 15c1766 Fixed bad result for GWTTestCaseImpl.supportsAsync(). by scottb@google.com · 17 years ago
- ecee168 Added simple history support to benchmark viewer. by scottb@google.com · 17 years ago
- 5345c0e - Moved benchmark viewer out of the junit package and into its own by scottb@google.com · 17 years ago
- e5da60b - Moved benchmarks out of the junit package and into its own - Mucho refactoring by scottb@google.com · 17 years ago
- a9f2750 Moved favicon.ico escape logic up to the top level to avoid spurious module load attempts. by scottb@google.com · 17 years ago
- c4b3bec Fixing accidental commit. by gwt.team.rdayal · 17 years ago
- 696a51f Share project 'Hello' into 'https://google-web-toolkit.googlecode.com/svn/trunk' by gwt.team.rdayal · 17 years ago
- 50933a8 Fixes issue #2109. This change toJUnit catches errors that occur during module load. JUnitHostImpl generates a host page which defines the GWT error handling functions. If one of these functions is called, an XHR is made back to the servlet, reporting the failure. The servlet then terminates the test. by scottb@google.com · 17 years ago