1. 310759e Revert r10565 due to build break. Review by: rjrjr (TBR) by bobv@google.com · 14 years ago
  2. 4d48c9b Updated header of web.xml files to use XSD version 2.5 by rchandia@google.com · 14 years ago
  3. b69c3e7 Adding an example of creating a Cell that handles events. Also updated the existing Cell example to use SafeHtmlTemplates, which is a better alternative to manually appending HTML strings. Add a comment in the Cell interface explaining that we may modify the Cell API in the future, and users should always extend AbstractCell. by jlabanca@google.com · 14 years ago
  4. 3af358b Collapse deferred-binding property values that depend on collapsed property values. by bobv@google.com · 14 years ago
  5. d124194 Adding integration with m2e 1.0 to MobileWebApp sample by rchandia@google.com · 14 years ago
  6. 20f089a Implements * globbing for RequestFactory with(), the simpler half of by rjrjr@google.com · 14 years ago
  7. fbad1f5 Add bootstrap tests 159 of 257 (61.87%) Pass with 32 Failures and 7 Errors. by nchalko@google.com · 14 years ago
  8. 488bf0d Fix for errors in type checking of GWT LogRecord. The incorrect type by schenney@google.com · 14 years ago
  9. 6bef5d4 Revise CellTableBuilder API. In the earlier version, a Utility class is used to by pengzhuang@google.com · 14 years ago
  10. 3596051 Updates MobileWebApp to use GWT Maven Plugin 2.3.0-1 by rchandia@google.com · 14 years ago
  11. b4b0008 Pretty massive refactoring of FieldManager and HtmlTemplates to make by rjrjr@google.com · 14 years ago
  12. a7ee037 Replace RequestFactoryInterfaceValidator with an annotation-processor-based by bobv@google.com · 14 years ago
  13. dc06550 Fixes issue where UiRenderer breaks when a field is referenced more than once by rchandia@google.com · 14 years ago
  14. a1e02f6 Provides an integration test for IsRenderable by rjrjr@google.com · 14 years ago
  15. a2e6f60 Tweak to allow parent ClassLoader at design time. by scheglov@google.com · 14 years ago
  16. b519351 Don't generate bad code for bad field names by rjrjr@google.com · 14 years ago
  17. 3409cfa Fixes problem with datanucleus enhancement and Appengine deployment by rchandia@google.com · 14 years ago
  18. b6d5577 Warn that UiRenderer is subject to change. by rjrjr@google.com · 14 years ago
  19. 3097799 Adding benchmarks to measure the performance of updating existing tables. by jlabanca@google.com · 14 years ago
  20. 7084752 Fix TreeMap.Node.equals() to allow nodes to be equal to other types of Map.Entry. by cpovirk@google.com · 14 years ago
  21. 8a5c876 Autoformat of UiBinderWriter, XMLElement and XMLAttribute in by rjrjr@google.com · 14 years ago
  22. a7b8fe4 Adding configuration booleans to CellTable to refresh headers and footers only when needed. Currently, the headers and footers are refreshed every time the data is redrawn, even though headers and footers are often static or do not depend on the data. Users can now call #setAutoHeader/FooterRefreshDisabled() to disable this feature. Headers and footers will still be redrawn when a column is inserted or removed, but they will not be redrawn on every data update. Users can force the headers/footers to redraw synchronously by calling #redrawHeaders/Footers. by jlabanca@google.com · 14 years ago
  23. 0838063 CachedCompilationUnits were inadvertently writing by zundel@google.com · 14 years ago
  24. 6388c36 Added methods to ColumnSortEvent.ListHandler to set the Handler's list and to retrieve sorting comparators that have been registered to Columns. by smcgruer@google.com · 14 years ago
  25. 1055773 The logic to avoid rewriting compilation units into archived units failed in some build environments where the output of the CompileModule tool does not end up on the classpath. Each resulting .gwtar file contained all compilation units, regardless of whether a nested .gwtar file already contained the units. by zundel@google.com · 14 years ago
  26. dbad827 Adds pre-deserialization type checking for values in GWT RPC messages. by schenney@google.com · 14 years ago
  27. 0b425d4 Deferring updating column widths until the redraw loop executes in a finally command. Currently, every time the user adds or removes a column, we refresh the widths of all columns. This leads to an O(n^2) creation time for the table. Resetting the column widths in the redraw loop reduces that to O(n), and is consistent with the rendering implementation of the table itself. We use a dirty bit to indicate that the column widths need to be updated, to avoid unnecessary work in the redraw loop. When setting or clearing column widths, we update the affectected col element synchronously. by jlabanca@google.com · 14 years ago
  28. 61246d2 Fix a couple of UiBinder tests with the expected text on the wrong side of the assert. by rjrjr@google.com · 14 years ago
  29. 04bd6d1 Adding a missing addAndReplaceElement(IsWidget, Element) to HTMLPanel. by hermes@google.com · 14 years ago
  30. f42e2b0 Add constructor to GwtMessageInterpolator that accepts a by nchalko@google.com · 14 years ago
  31. e0b7695 Reverting behavior in DefaultCellTableBuilder so it renders Cells using Column#render(), if available. CellTableBuilder uses the HasCell interface to define the Cells used in the table. If the HasCell is an instance of Column, we should defer to Column#render() for legacy support instead of calling HasCell#getCell()#render(). Some users override Column#render() to add custom html to the rendered cell. by jlabanca@google.com · 14 years ago
  32. d9c2579 Removing dead code from HasDataPresenter. In the context of the removed code, newPageStart can never be 0. by jlabanca@google.com · 14 years ago
  33. 188b43f Test the German messages in the TCK. by nchalko@google.com · 14 years ago
  34. ce6012e Change AbstractHasData.getValueKey() to be visible to CellTable API users, since this is needed in creating custom CellTableBuilder. by pengzhuang@google.com · 14 years ago
  35. d0b3a62 Reduce the # of Column.getValue() getting called. Sometimes this includes localization logic which could be slow. by pengzhuang@google.com · 14 years ago
  36. 0af1bf4 Fixing a bug in HasDataPresenter where paging to a negative row index causes an IndexOutOfRange exception. We now properly trim the keyboard selected row to a non-negative value. by jlabanca@google.com · 14 years ago
  37. 129c135 Adding more JavaDoc to Cell explaining how a singleton instance of Cell will behave if used in multiple Columns or Cell Widgets. The text comes from a rather brilliant email I recently authored. Also removing some stale JavaDoc about Cell view data from the Column class. Columns were originally responsible for ViewData, but that was changed before the first release of Cell Widgets. by jlabanca@google.com · 14 years ago
  38. 2b64e12 Fixes a recently introduced bug in Cell Widgets where clicking on the first row does not update the SelectionModel when bound to selection. The DefaultKeyboardSelectionHandler has an overly optimistic optimization that ignores the click event if it occurs on the current keyboard selected row. However, the keyboard selected row is initialized to 0, and updating the keyboard selected row triggers selection, so the optimization blocks selection of the 0th row. Removing the optimization check fixes the bug. by jlabanca@google.com · 14 years ago
  39. c0e8308 Remove escaped HTML from devevelopment mode glass panel by fredsa@google.com · 14 years ago
  40. afe477d fixed build to add requestfactory jars to the gwt jar file. Philip thought that by mrrussell@google.com · 14 years ago
  41. e29ec74 Support chained requests where the returned proxy type is not reachable from the canonical RequestContext. by bobv@google.com · 14 years ago
  42. 69d353f Add Traversable Resolver and UnknownProviderBootstrapCompile tests by nchalko@google.com · 14 years ago
  43. 3e06665 Add test for Invalid Constraint Definitions. by nchalko@google.com · 14 years ago
  44. 0ccda24 Remove temporary support of deprecated ui:baseInterface attribute. by jat@google.com · 14 years ago
  45. a658648 Fix typo by fredsa@google.com · 14 years ago
  46. 4c3fde8 Remove CompilationUnit.getSource(). by scottb@google.com · 14 years ago
  47. 714e00c Make generator result caching framework api available publically. by jbrosenberg@google.com · 14 years ago
  48. 7d1f8fa Include enclosing class in generated class name by nchalko@google.com · 14 years ago
  49. 0f3e50e Remove the pre-GwtAstBuilder compile chain. by scottb@google.com · 14 years ago
  50. 79c170a Fix: http://code.google.com/p/google-web-toolkit/issues/detail?id=6367 by meder@google.com · 14 years ago
  51. ecd7407 Adding a spot for database column name in Column. Allows us to create an updated SQL statement when the sort column changes, using only the Column itself. by portersi@google.com · 14 years ago
  52. e6ce9e1 Simplify the use of TckCompileTestCase by always using the module named by nchalko@google.com · 14 years ago
  53. 6c1b948 Eliminates the code for the long deprecated urn:with feature. by rjrjr@google.com · 14 years ago
  54. 3a21a66 Remove option to turn off GwtAstBuilder. by scottb@google.com · 14 years ago
  55. 5f6cab9 Improve error message when a RequestFactory 2.3 request is received. by bobv@google.com · 14 years ago
  56. 826f6ba Prevent an AutoBean property named "property" from causing a compilation error. by bobv@google.com · 14 years ago
  57. 3cee491 Roll seed-function optimization forward again. by cromwellian@google.com · 14 years ago
  58. 63eccff Temporary rollback of seed-function change to isolate failure by cromwellian@google.com · 14 years ago
  59. 295ca34 Javadoc tweak for SafeUri. by rjrjr@google.com · 14 years ago
  60. 8fa5286 Reverting behavior in AbstractCellTable so it calls Column#onBrowserEvent() if the target Cell is in a Column. AbstractCellTable now supports any HasCell implementation, not just Columns, and a recent change modified the behavior to fire the event to the Cell directly, instead of going through Column#onBrowserEvent(). However, overriding onBrowserEvent() is common, and this behavior was a breaking change. The fix checks if the HasCell is a column and uses the legacy Column#onBrowserEvent() method. by jlabanca@google.com · 14 years ago
  61. 642e965 Introducing a new CellTableBuilder API, which allows users to customize the structure of a CellTable by building zero or more table rows per row value and adding zero or more Cells per TD. The table rows are built using the generic ElementBuilder API, which allows for colspans and rowspans. The CellTableBuilder interface defines one method #buildRow(T, int, Utility) that takes the row value and row index to build, as well as a Utility class. The Utility class defines a #startRow() method to append a DOM row and associate it with the row value. Using this API, you can define multiple rows per row value, such as an "error row" that spans all of the columns, or a set of "child rows" to simulate a tree table. The Utility also contains a method #renderCell(ElementBuilder, Context, Column, T rowValue) that renders a Cell into the row. The TableBuilder can be swapped out using setTableBuilder(), and the default tableBuilder renders a grid based on the Columns defined in the CellTable. This change only applies to the data portion of the CellTable. A subsequent change will add a similar HeaderBuilder that applies to the header and footer. by jlabanca@google.com · 14 years ago
  62. b64641e Fixes a bug in AbstractPager where clearing the display and resetting it causes an NPE. by jlabanca@google.com · 14 years ago
  63. ae2a0eb Adding API method Column#setDefaultSortOrder(boolean isAscending) to control whether the column should be sorted in ascending or descending order the first time it is clicked. Currently, the first time a column is clicked, it is sorted in ascending order. by jlabanca@google.com · 14 years ago
  64. 130c673 Ensure RequestContext is propagated to newly-added HasRequestContext Editor instances. by t.broyer@gmail.com · 14 years ago
  65. 403597e Remove "final" keyword from IsRenderable-overrides in Composite. by rdcastro@google.com · 14 years ago
  66. ea1f31d Follow up to r10350. Allow collapse-all-properties in .gwt.xml module files by fredsa@google.com · 14 years ago
  67. f59fc32 Update XML doc to make it clearer that 'compiler.emulatedStack' should no longer be used. by fredsa@google.com · 14 years ago
  68. 4b050b4 Public (fhd@ubercode.de): by rjrjr@google.com · 14 years ago
  69. c4f0c14 Avoid building SafeHtmlBuilders over and over again for no good reason. by rdcastro@google.com · 14 years ago
  70. 15ae43f Use Splitter and Joiner as suggested in review by unnurg@google.com · 14 years ago
  71. a991c1e Ensure that class literals whose classes are pruned yield class names based on hashcode to maintain existing behavior for some legacy apps. by cromwellian@google.com · 14 years ago
  72. ea2bb79 Re-roll of r10435. Changes Class.getName() to return Class$S<seedId> when by cromwellian@google.com · 14 years ago
  73. 8eea143 More robust fix, escaping all args to the glass panel display code by unnurg@google.com · 14 years ago
  74. 5fdee9a Replace SafeHtmlTemplates with ElementBuilder in RenderablePanel by rdcastro@google.com · 14 years ago
  75. 43b18c3 JsoNormalizer did not give unique names to devirtualized by zundel@google.com · 14 years ago
  76. 266f34c sanitize the bad codeserver name before outputting the error message for security by unnurg@google.com · 14 years ago
  77. 3893302 Update to the staleness check when loading the PersistentUnitCache by zundel@google.com · 14 years ago
  78. 4814ffa Add chunking to the xsiframe linker by unnurg@google.com · 14 years ago
  79. ce4c830 Notify DesignTimeUtils about all beans, not only about UIObjects. by scheglov@google.com · 14 years ago
  80. eada3ee Re-rolled: Reduces chances of deadlock when CompilingClassLoader and MultiParentClassLoader are concurrently accessed from multiple threads. by tobyr@google.com · 14 years ago
  81. 7bf7df3 Add StringKey to gwt-servlet.jar to support RequestFactory users. by bobv@google.com · 14 years ago
  82. c8a87b4 Performance improvements for ElementBuilder. Note that this change looks enormous, but most of the files contain trivial API changes. by jlabanca@google.com · 14 years ago
  83. 6fee873 A rollback of the following change (fails on some JVMs): by tobyr@google.com · 14 years ago
  84. d8f7f6f Explicitly enable external DTDs feature. by meder@google.com · 14 years ago
  85. e892c7c Reduces chances of deadlock when CompilingClassLoader and MultiParentClassLoader are concurrently accessed from multiple threads. by tobyr@google.com · 14 years ago
  86. 26df93d Updating test case to check for existence of indexOf() (<=IE8) by codefu@google.com · 14 years ago
  87. 8a1cb99 change to fix the JavaDoc error during build by mrrussell@google.com · 14 years ago
  88. f1ce865 Rollback due to breakage by cromwellian@google.com · 14 years ago
  89. 2721d50 Missing file Pruner.java from last submitted change. by cromwellian@google.com · 14 years ago
  90. 2339e43 Re-roll r10435 by cromwellian@google.com · 14 years ago
  91. 249c45e After an enum is ordinalized, any static methods generated as staticImpl's should no longer be considered as such, since there is no longer an instantated instance being passed as the first arg to the method (this instance has been transformed into an ordinal int). by jbrosenberg@google.com · 14 years ago
  92. f722fe2 Adding DoNotRunWith annotation to failing JUnit test; possible HtmlUnit bug. by codefu@google.com · 14 years ago
  93. e23fe20 Look for @UiChild methods in supertypes. by bobv@google.com · 14 years ago
  94. 38bc246 Temporarily rolling back r10435 due to issue with uninstantiable type associated with a class literal getting pruned. by cromwellian@google.com · 14 years ago
  95. 941b3b1 This patch substantially reduces the overhead of Java types in the output by minimizing vtable setup and virtual class literal fetches. Improvements are anywhere from 5% to 10% uncompressed obfuscated JS. by cromwellian@google.com · 14 years ago
  96. cbf3b82 Implements UiBinder rendering for Cells. by rchandia@google.com · 14 years ago
  97. b6482ed Adding all supported element builders to the ElementBuilder API. This is a follow-on change for r10412, which introduced the core ElementBuilder libraries. by jlabanca@google.com · 14 years ago
  98. 66815e7 Fix JsInliner, to properly handle name scope tracking after multi-level inlining. Was causing local variable name collisions after obfuscation. by jbrosenberg@google.com · 14 years ago
  99. ba701bd Bypass RfValidatorTest when no JDK is available. by bobv@google.com · 14 years ago
  100. 9db1cb3 Use erasure to handle wildcard types in RfValidator. by bobv@google.com · 14 years ago