gwt /
gwt /
86357040894790be29f4c0eecf145e6980b74dfc - 8635704 Fix for issue #774. Actually running dev/core/test now from ant build.xml by gwt.team.scottb · 18 years ago
- d1e6e52 Fix for issue #774. Deleted several archaic tests that are not relevant anymore. Moved a two tests into user and cleaned them up big time. by gwt.team.scottb · 18 years ago
- 4be6d93 Changed auto-generation of wrapper HTML in hosted mode to use the new module inclusion syntax. by gwt.team.jgw · 18 years ago
- afb1339 Whoops, I forget to actually THROW the exception! by gwt.team.scottb · 18 years ago
- 42cc096 Removed @link dependency from GWT to DOM; it was causing more code to get pulled in during a compile. by gwt.team.scottb · 18 years ago
- 2770ec1 GWT.getModuleBaseURL() should be fast.. really fast. Currently, it's not. This patch makes it fast. by gwt.team.scottb · 18 years ago
- 2a5e38c Fixed a number of problems with the new startup, including: by gwt.team.scottb · 18 years ago
- c8e942d Cleanups based on review feedback. by gwt.team.jat · 18 years ago
- a44245a Fixed an NPE reporting JSNI errors caused by the fact that JsNodes by gwt.team.scottb · 18 years ago
- a80474e Fixing props in .js file. by gwt.team.scottb · 18 years ago
- 2d98ad3 Added new eclipse projects for simple RPC example. Reviewed by: mmendez by gwt.team.ecc · 18 years ago
- 2e383df Added new simple RPC example to supplement the DynaTable example. by gwt.team.ecc · 18 years ago
- a15ecd9 Rename Moz.cpp to LowLevelMoz.cpp to better reflect its function as the by gwt.team.jat · 18 years ago
- c85cb7f Fixes issues #472, #627, #736, #739 by gwt.team.jat · 18 years ago
- de85c1f Merging startup optimization into trunk from branches/opt_imgs_and_startup@538. Had to hand-merge several things. by gwt.team.scottb · 18 years ago
- 038efe2 Fix Issue #212: Added DOM methods to support the creation of the <CAPTION>, <COLGROUP>, <THEAD>, and <TFOOT> elements. by gwt.team.rdayal · 18 years ago
- d475896 Fixes issue 544. Changes to avoid rebuilding the documentation. Reviewed by scottb. by gwt.team.jat · 18 years ago
- a267764 Unit Test for Issue #328: Added testSetInnerText() test. This test checks to see that no child nodes of a DOM element exist after calling element.setInnerText(null). A helper method, getDenormalizedChildCount(), is a JSNI method that allows us to get the 'true' child count for an element. DOM.getChildCount() excludes text nodes from the count, and this is not sufficient for asserting that there are no child nodes left in the DOM structure. by gwt.team.rdayal · 18 years ago
- 39240a8 This change addresses the third part of issue #610. Instead of putting each class's typename into the generated code as a full string literal, each class name is broken into package + class. All of the packages are declared at the global level with obfuscated identifiers. This yields a very nice code size reduction. by gwt.team.scottb · 18 years ago
- 7ea7298 This patch updates our checkstyle rules to accept zero or more spaces on lines 3, 7, and 9 of our standard file headers. This should address IntelliJ's removal of superfluous whitespace. by gwt.team.mmendez · 18 years ago
- ab66b5b Fixing rogue properties. by gwt.team.scottb · 18 years ago
- 4c319ac This addresses the first half of issue #610, the Obfuscation optimization part. This work is based on the idea in alex.tkachman's patch, which is to give params and locals the shortest obfuscated names possible. My implementation follows design discussions with mmendez & tobyr. by gwt.team.scottb · 18 years ago
- 27a5cce This patch addresses Issue 711. There were several problems which would result in an invalid hosted mode cache. Specifically: by gwt.team.mmendez · 18 years ago
- d6906a9 This patch addresses issue #629. Previously, wrapJSO would clobber the jso's existing toString method (if any) due to it indiscriminately copying fields in from the prototype. This patch addresses the problem by specifically saving off the jso's toString field. by gwt.team.scottb · 18 years ago
- f806738 With this change, we can now prune variables that are assigned to, but never read from. Once this occurs, we go back and fix up any assignment sites by replacing the assignment expression with the right hand side of the assignment. This change also enables pruning of local variables. (+spelling fixes) by gwt.team.scottb · 18 years ago
- 91dd49c Adding *.patch to trunk's svn:ignore. by gwt.team.scottb · 18 years ago
- 11fe7dc This patch updates our checkstyle rules to accept either 2006 or 2007 for the copyright date in our standard file header. by gwt.team.mmendez · 18 years ago
- d8276d7 This patch addresses issue #17 by getting RebindOracle out of the business of worrying about instantiability and only trying to instantiate the entry point class if onModuleLoad() is non-static. In addition to allowing uninstantiable classes to be used as entry points, it also clears up a discrepancy between hosted mode and web mode; in web mode classes with static entry points are not auto-instantiated, but in hosted mode they were being instantiated before the static onModuleLoad was called. Also resolves an issue where a superclass implementing onModuleLoad would not register if a subclass was the entry point. by gwt.team.scottb · 18 years ago
- 34838a3 This patch addresses issue #466 to enable get/setStackTrace on java.lang.Throwable. It does not add any support for GWT filling in stack traces in web mode. by gwt.team.scottb · 18 years ago
- efc9a6e Fix issue #328: To prevent 'null' from being displayed in Safari and Opera when we call setInnerText on an Element with a value of null, do not create new text node when the incoming string has a null value. Has the side-effect of no longer creating an empty text node in firefox. by gwt.team.rdayal · 18 years ago
- 57b44c4 This patch allows constructs like "woot".replace('o', '0') to be statically evaluated and replaced directly with the result of the operation at compile time. Also included is a peephole compile speed optimization in JProgram. by gwt.team.scottb · 18 years ago
- eba589c This patch is based on work Alex did to implement assertions. While I'm not implementing asserts right now, what I am doing is pruning them out of the AST early so they don't block any optimizations, which they are currently doing. by gwt.team.scottb · 18 years ago
- 5b5e634 This is a simple change to the user tests to enable a command line user to by gwt.team.scottb · 18 years ago
- 3840f14 Fixing formatting issues with r434 (whitespace corrections and 80 char wraps). by gwt.team.knorton · 18 years ago
- c03e177 Fix issue #391: Add some documentation to indicate that a default constructor must be explicitly declared in a user-defined serializable type in order for it to be serializable. by gwt.team.rdayal · 18 years ago
- 3fb3129 Adds java.util.ListIterator to the emulated JRE collection classes. by gwt.team.hcc · 18 years ago
- 4b75a77 Fix for issue #212: Fixed documentation bugs on createTBody() and by gwt.team.rdayal · 18 years ago
- c437e70 This fixes an issue where nesting a WARN underneath an ERROR will cause the ERROR log message to turn yellow (the WARN color). In the process of fixing this, I decided that Type's API needed a little bit of a face lift. No one is really using the getParent() stuff, so it made sense to me to introduce an abstract concept of priority instead, because it makes the O(n) operations O(1). by gwt.team.scottb · 18 years ago
- 6aa7b70 Added in a couple of new optimizations: by gwt.team.scottb · 18 years ago
- e36c642 This addresses issue #622. The problem is that CastOptimizer leaves the by gwt.team.scottb · 18 years ago
- 1acf9aa Fixes a History bug where urlencoded history tokens lose their by gwt.team.knorton · 18 years ago
- e5798e9 Fixed a rogue error message. by gwt.team.scottb · 18 years ago
- 3b142d4 Now that the file/line information and new visitor pattern is in, it's by gwt.team.scottb · 18 years ago
- 9840c42 This is a patch to remove catch blocks for globally uninstantiable by gwt.team.scottb · 18 years ago
- 4d650bc Replaced the HashMap implementation with a faster JSNI one. by gwt.team.hcc · 18 years ago
- 3dce664 ArrayList implemented using JavaScript sparse arrays for good insertion/deletion performance at either end. This code also makes ArrayList the primary list type, with Vector delegating to list. by gwt.team.hcc · 18 years ago
- 2925779 Getting release notes ready for next release cycle. by gwt.team.scottb · 18 years ago
- 5c0992f merge changes from releases/1.3 branch by gwt.team.jat · 18 years ago
- 2e1c78f After the last round of changes, I discovered that the new assertion in JField is actually getting by gwt.team.scottb · 18 years ago
- 15ff700 1) Incorporating a variant of a patch by sandymac in issue #599 to reduce by gwt.team.scottb · 18 years ago
- 6595125 Submitting changes/scottb/compiler_refactor into the trunk. by gwt.team.scottb · 18 years ago
- 2b7a2d6 Moving the CLA signers file out of the trunk, because it should never by gwt.team.scottb · 18 years ago
- 3df49fe Adds an explicit reference to the 10.4 Universal SDK root in the by gwt.team.knorton · 18 years ago
- d20556f Fix for issue #615: internal compiler error when conditional result type is null. by gwt.team.scottb · 18 years ago
- c144831 Fixed doc grammar. by gwt.team.scottb · 18 years ago
- de81eeb Rolling back accidental trunk mods committed in r284. by gwt.team.scottb · 18 years ago
- 6875e5f gvn sync: XXX by gwt.team.hcc · 18 years ago
- ee138fa Rolling back accidental trunk mods committed in r276. by gwt.team.scottb · 18 years ago
- 1bf2ada gvn sync: XXX by gwt.team.hcc · 18 years ago
- 6f31733 Modified DateTest to use fixed dates for some of its tests - using the current date as a base can result in setting in date roll-over behavior; Added documentation to RequestBuilderTest.testRequestBuilderStringString() regarding security settings in IE and potential test failure by gwt.team.rdayal · 18 years ago
- 6232a5c Updates our copyright from 2006 to 2007. Brand new copyright notice in DeveloperGuide per Dan Peterson. by gwt.team.scottb · 18 years ago
- e24e827 Fix Eclipse setup documentation: missing spaces, missing JDK_HOME classpath variable. Reviewed by scottb. by gwt.team.jat · 18 years ago
- 276a80f Fix for issue 561, approved by Scott by gwt.team.jat · 18 years ago
- f0a06d0 Fix issue 545 (build fails on ant 1.7) by gwt.team.jat · 18 years ago
- 4d21fa4 Fixed a String == comparison bug. Desk check by jgw, mmendez. by gwt.team.scottb · 18 years ago
- 0f8af50 Finish removing svn:mime-type properties from text files whose mime type doesn't match text/*, since svn doesn't understand they are text files and refuses to diff them. Approved by knorton by gwt.team.jat · 18 years ago
- 6fab601 Removed svn:mime-type properties from XML files, since svn doesn't understand application/xml is a text file type and refuses to diff them. Approved by knorton by gwt.team.jat · 18 years ago
- ceab1ec Fix for issue 525. Reviewed by knorton, tested by knorton, hcc, rdayal, and jat. by gwt.team.jat · 18 years ago
- de0c248 Setting svn properties (svn:eol-style, svn:mime-type). Reviewed by knorton. Batch 8 by gwt.team.jat · 18 years ago
- 5494abd Setting svn properties (svn:eol-style, svn:mime-type). Reviewed by knorton. Batch 7 by gwt.team.jat · 18 years ago
- 22c353a Setting svn properties (svn:eol-style, svn:mime-type). Reviewed by knorton. Batch 6 by gwt.team.jat · 18 years ago
- d8cecae Setting svn properties (svn:eol-style, svn:mime-type). Reviewed by knorton. Batch 5 by gwt.team.jat · 18 years ago
- 8d1030c Setting svn properties (svn:eol-style, svn:mime-type). Reviewed by knorton. Batch 4 by gwt.team.jat · 18 years ago
- 8bcb7c1 Setting svn properties (svn:eol-style, svn:mime-type). Reviewed by knorton. Batch 3 by gwt.team.jat · 18 years ago
- fc6b4e7 Setting svn properties (svn:eol-style, svn:mime-type). Reviewed by knorton. Batch 2 by gwt.team.jat · 18 years ago
- 3feb0b0 Setting svn properties (svn:eol-style, svn:mime-type). Reviewed by knorton. Batch 1 by gwt.team.jat · 18 years ago
- f5fdebe sandymac added as a contributor by gwt.team.scottb · 18 years ago
- 099f212 Setting svn:ignore to ignore directories created by GWT. by gwt.team.scottb · 18 years ago
- 66a0402 Only checkstyle source directories. by gwt.team.scottb · 18 years ago
- e18b95c Added some necessary references to the JUnit jar. Reviewed by gwt.team.jat by gwt.team.scottb · 18 years ago
- 22a4f83 Fix for issue #319. Reviewed by gwt.team.mmendez by gwt.team.scottb · 18 years ago
- 0787e5e Fix for issue #497. Reviewed by gwt.team.mmendez by gwt.team.scottb · 18 years ago
- e12edbf Reviewed in person by Scott Blum. This assertion was tripped during by gwt.team.hcc · 18 years ago
- 111f83e filters non-source directories by gwt.team.ecc · 18 years ago
- 3c8d2e2 filters non-source directories by gwt.team.ecc · 18 years ago
- 8cf9848 filters non-source directories by gwt.team.ecc · 18 years ago
- 15fb3cd filters non-source directories by gwt.team.ecc · 18 years ago
- e218cac filters non-source directories by gwt.team.ecc · 18 years ago
- 214d3a9 filters non-source directories by gwt.team.ecc · 18 years ago
- e73e11f filters non-source directories by gwt.team.ecc · 18 years ago
- 1891a10 filters non-source directories by gwt.team.ecc · 18 years ago
- b486b32 added checkstyle to lang by gwt.team.ecc · 18 years ago
- 950681a Correct line endings on files with CRLF in the repository by gwt.team.jat · 18 years ago
- 6996532 Fixed chmod issue when building on Win32. I completely redid how the distros get packaged. by gwt.team.scottb · 18 years ago
- 5a031dd Added section on filtering out .svn/ folders when building. by gwt.team.scottb · 18 years ago
- 815ac25 Fixed license header to Apache. by gwt.team.scottb · 18 years ago
- f2321cf Moved README.txt from eclipse/settings/code-style to eclipse/ and expanded it to cover workspace variables, spelling dictionary, and project importing. It is now a general-purpose "How to setup Eclipse" document instead of just focusing on code style. by gwt.team.scottb · 18 years ago
- 1416698 Removing user-specific launch configs by gwt.team.scottb · 18 years ago
- 428b263 Fixed Mac OS build by not requiring tools.jar on Mac by gwt.team.scottb · 18 years ago
- c4700b8 Optimized build; removed crazy unjar stuff. by gwt.team.scottb · 18 years ago