1. 7dca364 Change formatter to use 100 col. comments and add a checkstyle check for it by pdr@google.com · 14 years ago
  2. 1479ce6 Rollback 100 column format changes (issue 1450808 and issue 1447822) by pdr@google.com · 14 years ago
  3. 5b85840 Format comments to 100 columns to match code format by pdr@google.com · 14 years ago
  4. a2c03d5 Autoformats user/super and user/test-super by zundel@google.com · 14 years ago
  5. fdeb1d0 Changes the eclipse formatter to put a space between [] and { in an by zundel@google.com · 14 years ago
  6. 9160bea More autoformatter tweaks. Allow wrapping on assignments, do not by rjrjr@google.com · 14 years ago
  7. d7742d7 Follow on to svn r8671, which made the GWT code style allow whitespace by rjrjr@google.com · 14 years ago
  8. e4970b2 Sorting the gwt-format.xml rules for easy diffing in subequent by rjrjr@google.com · 14 years ago
  9. 0867340 Update checkstyle rules to allow for copyright years up to 2029 by pdr@google.com · 14 years ago
  10. d0de7e3 Fix bad gwt-checkstyle.xml. by scottb@google.com · 15 years ago
  11. 406502b This should have been in r8671 by fabbott@google.com · 15 years ago
  12. 03c7687 Public: Modify checkstyle config to allow formating of Fluent style builders by nchalko@google.com · 15 years ago
  13. 097506c Initial support for round-trip edits in the DynaTableRF sample. by bobv@google.com · 15 years ago
  14. d54a4bd Mirroring got broken around the merge from branches/2.1, although I'm by gwt.mirrorbot@gmail.com · 15 years ago
  15. 2f10cc2 Specify a default eclipse import order for unknown packages. by scottb@google.com · 15 years ago
  16. d463e2a Eclipse code formatter, do not insert space before array initializer. by scottb@google.com · 15 years ago
  17. 7b46b55 Updating checkstyle to allow 2010 as a Copyright year. by jlabanca@google.com · 15 years ago
  18. c972d9b Merge branch 'fix-testsetfactory' by rjrjr@google.com · 16 years ago
  19. cbae25e Merging releases/1.6@4366 :4385 into trunk. by jat@google.com · 16 years ago
  20. 566806a Merging releases/1.5 into trunk by scottb@google.com · 17 years ago
  21. d5e21a5 Tightened checkstyle rules; fixed existing violations. by scottb@google.com · 17 years ago
  22. faaedba Updated Eclipse format settings to Eclipse 3.3. by gwt.team.scottb · 17 years ago
  23. 21585d5 Updates the checkstyle copyright notice to allow 2008 as a valid year. by gwt.team.ecc · 17 years ago
  24. 8b36785 Added some dictionary words. by gwt.team.scottb · 17 years ago
  25. a471f34 Removed style requirement for whitespace around wildcard types. by gwt.team.knorton · 18 years ago
  26. 444169c Fixes issue #1297 by implementing a whitelist approach to types the server may serialize. The whitelist is generated by the compile process and must be included on the server. RemoteServiceServlet will attempt to load this file through ServletContext.getResource(). A failure to load the whilelist will result in 1.3.3 compatible behavior where java.io.Serializable is not considered a valid marker interface. This is to prevent a malicious client from causing a server to instantiable artibtrary types extending java.io.Serializable. by gwt.team.scottb · 18 years ago
  27. 2710418 Fixed formatting in a way that makes 3.3 work correctly. by gwt.team.scottb · 18 years ago
  28. d66e92e More dictionary entries. by gwt.team.scottb · 18 years ago
  29. b928157 Fixes issue 1081. The RPC proxy generator was rebuilding the serializable type oracle needlessly. It appears to have always done this. In this fix, I moved the building of the SerializableTypeOracle into the ProxyCreator after we determine that we actually need to regenerate the proxy code. We could refactor the code further but rather than add more risk, we chose to keep it to the minimal change. by gwt.team.mmendez · 18 years ago
  30. 0c90ed4 Fixes issues 242, 540, 933. by gwt.team.mmendez · 18 years ago
  31. 1844843 Received CLA from Mat Gessel; normalized header on ClassCastTestCase.java and therefore the checkstyle rules for test code. by gwt.team.scottb · 18 years ago
  32. fa5e56c The recent Benchmark changes broke TestSuites. The JUnitHostImpl has to be able to deal with "old" clients whose outstanding RPC requests are trying to get the next method for a test class which is no longer being run by JUnit. The servlet is required to send a "null" back to these clients to inform them they are done, and save the information about which method to execute next for the "new" clients which will be making their own RPC requests. by gwt.team.scottb · 18 years ago
  33. ec74d6b This fixes issue #785 and re-enables a disabled test in HostedTest related to hosted mode wrapped Java Objects answering "toString()" in JSNI code. by gwt.team.scottb · 18 years ago
  34. 0a92ede This is working towards issue #699. Historically, we have always hung static fields directly on the window object, which works fine in the iframe environment. Now that we need to run in the outer page, that won't work so well. by gwt.team.scottb · 18 years ago
  35. e4f0a42 Fix for issue #800. Adds getOverridableMethods() to JClassType. See the unit tests as well for the cases that are included/excluded. Also added some dictionary entries to allow JClassType to pass the spellchecker. by gwt.team.bruce · 18 years ago
  36. 3545451 1) Adds a new checkstyle config intended to be used with unit tests. by gwt.team.bruce · 18 years ago
  37. 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
  38. 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
  39. 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
  40. 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
  41. 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
  42. ee138fa Rolling back accidental trunk mods committed in r276. by gwt.team.scottb · 18 years ago
  43. 1bf2ada gvn sync: XXX by gwt.team.hcc · 18 years ago
  44. 950681a Correct line endings on files with CRLF in the repository by gwt.team.jat · 18 years ago
  45. 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
  46. a684795 Adding a prebuild gwt-customchecks.jar to make it simpler for by gwt.team.knorton · 18 years ago
  47. 7696a32 Patched up README, fixed doctool build by gwt.team.scottb · 18 years ago
  48. 5f79b80 by gwt.team.ecc · 18 years ago
  49. 44ba326 Renamed checkstyle rule CHECKSTYLE_NAME_CHECKS_ON|OFF to by gwt.team.knorton · 18 years ago
  50. 70cb722 cleaning up code-style to normalize naming by gwt.team.ecc · 18 years ago
  51. 36f322f Refactored buildsystem for consistency and generality. by gwt.team.scottb · 18 years ago
  52. ab0aa68 Initial subversion import. by gwt.team.scottb · 18 years ago