1. f89735f Update JUnit from DeferredCommand to Scheduler. by scottb@google.com · 14 years ago
  2. 2ff684d Add 2nd constructor for backwards compatibility. by meder@google.com · 14 years ago
  3. 196ef69 Add support for RpcTokens, which, if set, are sent with each RPCRequest to by meder@google.com · 14 years ago
  4. fdf1b08 Add support for touch and gesture events for supported mobile webkit platforms. by fredsa@google.com · 14 years ago
  5. 6c494a8 Rolling back "Add property provider generators" due to broken internal builds. by jat@google.com · 14 years ago
  6. 495bbbe Fixing JavaDoc warnings in Cell Widgets. by jlabanca@google.com · 14 years ago
  7. 8806978 Add a permissions model to the Chrome NPAPI plugin. by conroy@google.com · 14 years ago
  8. 3172139 Add property provider generators. by jat@google.com · 14 years ago
  9. 9bf8088 Fixes two DevMode issues: by knorton@google.com · 14 years ago
  10. e945414 Reduces the size of the soyc report by combining many s by zundel@google.com · 14 years ago
  11. ff9f13a Fixing a few bugs in Cell widgets. by jlabanca@google.com · 14 years ago
  12. 4315331 Adding CellPreviewEvents to Cell Widgets to preview all events that are fired to Cells. This allows us to add DefaultSelectionEventManager, which adds shift/ctrl selection support to the Cell Widgets. by jlabanca@google.com · 14 years ago
  13. 646f786 Enum Ordinalization Optimization (revised) by jbrosenberg@google.com · 14 years ago
  14. ea5166f Add a test for issue 5134 to ensure that RequestFactory interfaces can be extended. by bobv@google.com · 14 years ago
  15. 3b60587 Rework the way OperationMessages are processed to allow all domain objects to be loaded at once. by bobv@google.com · 14 years ago
  16. 0be4df6 Fix covariant return types for methods declared in domain objects. by bobv@google.com · 14 years ago
  17. 7dbefdc Making Column implement HasAlignment so users can specify the default alignment of cells in a column. In the future, we may add a way to specify the alignment of specific Cells. by jlabanca@google.com · 14 years ago
  18. a485e53 Public: Only process requested groups. by nchalko@google.com · 14 years ago
  19. 5479a90 Add Locator API to allow arbitrary domain types to be used with RequestFactory. by bobv@google.com · 14 years ago
  20. 6c4ba2d Makes part of the Compiler Report (SOYC) smaller by by zundel@google.com · 14 years ago
  21. 23d3091 Add SafeHtml support to DirectionEstimator by tomerigo@google.com · 14 years ago
  22. 11aeecd Public: Improve reporting of TCK failures by nchalko@google.com · 14 years ago
  23. 55f021e Allow EntityProxy, ValueProxy, or any simple value type to be used as an entity's id and version values. by bobv@google.com · 14 years ago
  24. c1b3dbe Rolling back Enum Ordinalization Optimization (latent issues have been identified) by jbrosenberg@google.com · 14 years ago
  25. b99182f Issue 5518 Fix: Panel Alignment Attributes Have No Effect by sbrubaker@google.com · 14 years ago
  26. bc8f020 Fixes issue http://code.google.com/p/google-web-toolkit/issues/detail?id=5578 by rjrjr@google.com · 14 years ago
  27. 39d351f First pass at implementing ValueProxy support. by bobv@google.com · 14 years ago
  28. 924da19 Expenses sample pom.xml. Fixes Issues: by rchandia@google.com · 14 years ago
  29. a527349 Minor little fix in DefaultSuggestionDisplay by portersi@google.com · 14 years ago
  30. a611770 Fix up the plugin initialization code in devmode.js. Also, attach the plugin by conroy@google.com · 14 years ago
  31. 5b377ce *** Reason for rollback *** by tomerigo@google.com · 14 years ago
  32. e2c9c4b Checkstyle fixes for Issue 1110801 by rchandia@google.com · 14 years ago
  33. 0981776 Roll back HasAlignmentParser change due to test failures. by bobv@google.com · 14 years ago
  34. 56ecc2c In a previous patch, I fixed the doc.findElements... function to be document.findElements, which uncovered by unnurg@google.com · 14 years ago
  35. f8abf2e Code cleanup. by scottb@google.com · 14 years ago
  36. 3578dec Public: Handle constraints on Primitive fields. by nchalko@google.com · 14 years ago
  37. b8edd5f Issue 5518 Fix: Panel Alignment Attributes Have No Effect by sbrubaker@google.com · 14 years ago
  38. 1a20140 Close the readers by unnurg@google.com · 14 years ago
  39. 7c42f27 Check for null as well as undefined in isBodyLoaded() by unnurg@google.com · 14 years ago
  40. d1effa0 Update some references to document to be $doc by unnurg@google.com · 14 years ago
  41. 45cc063 Fixing a bug in SingleSelectionModel where deselecting a random value causes the selected value to be deselected, even if the deselected value wasn't selected to begin with. by jlabanca@google.com · 14 years ago
  42. 411ac16 Adds some StringInterner references to reduce overall memory usage by zundel@google.com · 14 years ago
  43. 8851e1f Enum Ordinalization Optimization (revisited) by jbrosenberg@google.com · 14 years ago
  44. 133cfef Adds overflow-x and overflow-y to Style since they have at least partial support on all browsers. by knorton@google.com · 14 years ago
  45. 9321953 Public: GWT version of the JSR 303 Bean Validation TCK by nchalko@google.com · 14 years ago
  46. 4cdc725 Adding a new widget CellWidget that can wrap any Cell and turn it into a Widget. CellWidget can be used on its own (it isn't abstract) to wrap a widget. It can also be used inside a Composite to create a formal version of an existing Cell, such as creating EditText from EditTextCell. This feature will not be included in GWT 2.1.1. by jlabanca@google.com · 14 years ago
  47. cd7f2b5 Adding a new CommonResources class that provides access to commonly used styles in GWT. For now, the only style defined is a cross browser implementation of inline block, but we can expand to include more common styles later. by jlabanca@google.com · 14 years ago
  48. 750db0f A few small changes to BidiFormatter. Mainly, it now uses DirectionEstimator that can be modified instead of the constant estimating function of BidiUtils. by tomerigo@google.com · 14 years ago
  49. 8938a50 Switching CellList to trigger selection on click instead of mousedown. Selection causes the cell to be redrawn, which interrupts the click event sequence and prevents click from ever firing to the Cell. This is particularly annoying for Cells that contain Buttons. The same change needs to be made for keyboard selection, which can be bound to selection and cause the cell to be redrawn. CellTable already triggers selection on click, and now triggers keyboard selection on click. by jlabanca@google.com · 14 years ago
  50. 3019d1f Add README step to use the Google Web Toolkit SDK in the gwt-user project so that users can run GWT tests. by pdr@google.com · 14 years ago
  51. 64d6a13 Fix a devmode.js reference to doc, which does not exist by unnurg@google.com · 14 years ago
  52. 7d63105 Removing references to gecko user agent in favor of gecko1_8. gecko refers to very old versions of Mozilla, while gecko1_8 refers to all modern versions, including all versions of Firefox 2.0 and later. gecko was used to support the old version of hosted mode on Linux, which has long since been replaced by the dev mode plugin for Firefox. by jlabanca@google.com · 14 years ago
  53. 5557a33 Improve support for using AutoBeans as a general-purpose JSON payload consumer. by bobv@google.com · 14 years ago
  54. 8cc4c51 Fix permgen exhaustion due to classloader memory leak across server refresh. by conroy@google.com · 14 years ago
  55. 1430c8e Adds the compiler metrics output to the compiler report (soyc) by zundel@google.com · 14 years ago
  56. 0735827 Modify the SSSS Direct install linker to install code in the main window rather than just by unnurg@google.com · 14 years ago
  57. 6cccf2b Make supportsDevMode configurable and give it a more appropriate name. Set it to false by unnurg@google.com · 14 years ago
  58. f7a0c58 Updates the reference api for Api Checker to 2.1. Fixes 2 small bugs in Api Checker. by amitmanjhi@google.com · 14 years ago
  59. 5c6d6d7 public (konstantin.scheglov@gmail.com): by rjrjr@google.com · 14 years ago
  60. c7e0ba6 This patch makes three changes: by amitmanjhi@google.com · 14 years ago
  61. ccb7fc5 Modifies the GWT compiler sharded entry points to support an alternative by zundel@google.com · 14 years ago
  62. d62da35 Fixing MultiSelectionModelTest to ensure that we are checking that the correct value is not selected. by jlabanca@google.com · 14 years ago
  63. c5a7988 Public (konstantin.scheglov@gmail.com): by rjrjr@google.com · 14 years ago
  64. 055788d Refactoring HasDataPresenter to save pending changes in a PendingState, pushing them to the view in a finally command at the end of the event loop. This change reduces the number of times that the view is updated in the same event loop and eliminates some special case logic designed to deal with concurrent updates to the view. The pattern is fairly straightforward. When we receive new data, a new row count, a change in selection, or a change in the keyboard selected row, we update the pending state. In a finally command, we resolve the pending state by comparing it to the current state. If none of the rows changed, we just update the keyboard selected row using DOM manipulation. If less than 30% of the rows changed, we replace the changed rows. If more than 30% of the rows changed, we redraw the entire table. by jlabanca@google.com · 14 years ago
  65. 43442ae Adding MultiSelectionModel#clear() to clear all selected values. This is slightly more complicated because we resolveChanges() in a finally command, but the JavaDoc explains how we handle this. by jlabanca@google.com · 14 years ago
  66. 5376cee Fixes ICE involving JDT-unreachable local types. by scottb@google.com · 14 years ago
  67. fed6c84 Add a protected method CellTable#doSelection() as a hook that allows users to customize how the table selects rows. We will later expand this to use a SelectionManager, but the protected method is a good stopgap for now. by jlabanca@google.com · 14 years ago
  68. 39f94b8 Fix SSSS so that devmode.js is returned when devmode is running by unnurg@google.com · 14 years ago
  69. f97ef05 Fix issue with FF3.5 and below not having readyState by unnurg@google.com · 14 years ago
  70. 33f90a5 Fix checkstyle violation in SplitLayoutPanel. by jlabanca@google.com · 14 years ago
  71. 94de7ad Add a glass panel to the root when moving the splitter in a by nikhilsinghal@google.com · 14 years ago
  72. c247f41 Adding a new method AbstractHasData#setRowData(List) to make CellList and CellTable easier to use without a data provider. Currently, users must call setRowCount() any time the row count changes in order to hide truncated rows. That makes sense in a DataProvider world where the CellTable is showing a small subset of the total data. However, some users want to use CellTable as a standalone widget, without worrying about setting the total row count. by jlabanca@google.com · 14 years ago
  73. c21149e Overhaul the RequestFactory server code. by bobv@google.com · 14 years ago
  74. 7b3194f Introducing DirectionalTextHelper, a new helper class for text and direction manipulations in widgets, and using it to enhance Anchor and Hyperlink with bidi support. by tomerigo@google.com · 14 years ago
  75. 47da2e1 Remove stray javadoc character. by fredsa@google.com · 14 years ago
  76. 4ae5f49 Rollback of support for touch/gesture events due to test failures. by fredsa@google.com · 14 years ago
  77. b927b29 Add support for touch and gesture events for supported mobile webkit platforms. by fredsa@google.com · 14 years ago
  78. cba79cd Loosens up JSO restrictions in the TypeOracle to allow multiple JSO by jgw@google.com · 14 years ago
  79. e88c8f6 Remove deprecated classextension from gwt by yaxin@google.com · 14 years ago
  80. ff610ee The proposed fix will disambiguate setter overloads by ranking them according by fabiomfv@google.com · 14 years ago
  81. 4e5aa88 Ensure that all base URL's are absolut-ify-ed, no matter where we get them from. by unnurg@google.com · 14 years ago
  82. 0a74394 Fixing a bug in CellTree where we always pass null as the key for the rendered object instead of passing the key. by jlabanca@google.com · 14 years ago
  83. d171e55 Adding a public method AbstractHasData#getRowContainer() to give users access to the element that contains all rendered row values. The new public methods delegates to the abstract method getChildContainer(). Making the protected method public would be a breaking change for subclasses because you cannot reduce the visibility of a method in a subclass. by jlabanca@google.com · 14 years ago
  84. 77680b6 Updated the script to install the artifacts to the correct maven location by amitmanjhi@google.com · 14 years ago
  85. 2f075a0 Rolling back Enum Ordinalization Optimization, some issues have been identified. by jbrosenberg@google.com · 14 years ago
  86. 065aa60 Cleanup for EnumsTest and EnumsWithNameObfuscationTest suites, make sure they always run with correct configuration property by jbrosenberg@google.com · 14 years ago
  87. 3353484 Public: Create seperate top level interfaces for GwtSpecificValidators. by nchalko@google.com · 14 years ago
  88. 4791bd7 Enum Ordinalization Optimization by jbrosenberg@google.com · 14 years ago
  89. 2f45801 Adds a new artifact visibility "Deploy" (in addition to existing by jat@google.com · 14 years ago
  90. de992dd Fix issue with SSSS not getting stylesheets by unnurg@google.com · 14 years ago
  91. e7a1360 Switch GWT svn to use easymock 3.0 by yaxin@google.com · 14 years ago
  92. 28fe15c Fix some issues in the xsiframe linker by unnurg@google.com · 14 years ago
  93. f33eb07 DefaultSuggestionDisplay: Allowing custom position object by portersi@google.com · 14 years ago
  94. 56104a9 Adds an -XcompilerMetrics flag to the compiler. This will by zundel@google.com · 14 years ago
  95. c1ac60a Fix RequestFactoryInterfaceValidator when analyzing interfaces with static initializers. by bobv@google.com · 14 years ago
  96. c7721a5 Fix handling of search order where particular regions have different by jat@google.com · 14 years ago
  97. 8d6d290 Adds an entry point for a sharded compile that runs in front of by zundel@google.com · 14 years ago
  98. dd81444 Reformulate RPC generated TypeHandlers to create fewer classes. by scottb@google.com · 14 years ago
  99. 5e17389 Public: Add the hibernate validator jar to the dev build. by nchalko@google.com · 14 years ago
  100. c4c58e3 Lock down the public api of com.google.gwt.requestfactory.server, in by rjrjr@google.com · 14 years ago