1. 1dc4d2e Quick patch, in follow up to r9344, which replaces remaining uses of the legacy 'compiler.emulatedStack' property, by fredsa@google.com · 14 years ago
  2. 8174cf0 Sort the top level validator class to handle most specific classes first. by nchalko@google.com · 14 years ago
  3. b0f54d3 Fix a NullPointerException in Editor framework when a null sub-Editor is encountered during traversal. by bobv@google.com · 14 years ago
  4. c99fbc0 Generator Result Caching implementation for ClientBundle by jbrosenberg@google.com · 14 years ago
  5. b1a9571 AutoBeans improvements. by bobv@google.com · 14 years ago
  6. a5778cf Provide mechanism to suppress warning dialog when runtime and compile time user.agent propert values disagree, i.e. via by fredsa@google.com · 14 years ago
  7. 5cd36cf Missing 's' for '%s' specifier in log message. by askumar@google.com · 14 years ago
  8. fae6937 Relaxing the requirement that users specify a loading indicator image resource. If the image resource is null, the table will not create a default loading indicator. by jlabanca@google.com · 14 years ago
  9. 136fd8d Make FieldSerializers use reflection directly instead of round-tripping through JSNI. Speeds up DevMode. by tobyr@google.com · 14 years ago
  10. 311d70a Adding a new DeckLayoutPanel that displays one of many widgets and transitions between them using a horizontal or vertical sliding animation. This is useful for mobile web apps that want to create a slide effect between pages. Integrated DeckLayoutPanel into TabLayoutPanel so both widgets can share the animated transitions. I also replaced the TabPanel Showcase sample with a TabLayoutPanel sample to show off the new feature. by jlabanca@google.com · 14 years ago
  11. 067ec68 Reduce logging work in STOB. Wrap logging calls with isLoggable and only create .rpc.log during web-compiles or DevMode with DEBUG logging. by tobyr@google.com · 14 years ago
  12. 486c201 Adding a LoadingStateEvent to CellList and CellTable so users can receive an event when the data is loaded. Previously, LoadingState was a package protected enum used to show the loading indicator in CellTable and empty list message in CellList. Now, LoadingState is a first class citizen (an interface so users can define their own loading state). Both CellList and CellTable now support setting a custom loading indicator Widget and a custom Widget to display when the table is empty. by jlabanca@google.com · 14 years ago
  13. 4eea3c3 Undeprecating DockPanel because it is still useful and fulfills a purpose that DockLayoutPanel cannot. DockPanel will naturally resize to fit its content, whereas DockLayoutPanel requires the user to specify the dimensions of the content. by jlabanca@google.com · 14 years ago
  14. 92df54a Update getGeckoVersion() to support beta versions of Firefox. by pdr@google.com · 14 years ago
  15. d08baa7 Removes @Override annotation from implemented interface methods. by zundel@google.com · 14 years ago
  16. 1342167 Handle Validation of Cascaded Generic properties. Make GwtValidators Singletons. by nchalko@google.com · 14 years ago
  17. d816d76 This change adds couple of things: by meder@google.com · 14 years ago
  18. 8e2812b Add GeneratorContextExt.isProdMode. Allows generators to specialize output for dev or prod mode. Updates RPC to take advantage of it. by tobyr@google.com · 14 years ago
  19. 6727aa8 Remove list of JavaScriptException object properties: by fredsa@google.com · 14 years ago
  20. 3afa071 Overhaul Editor framework traversal logic to use a visitor pattern. by bobv@google.com · 14 years ago
  21. 0a1d088 Speed up DevMode by getting rid of excessive JS to Java calls. by tobyr@google.com · 14 years ago
  22. 9ae6661 Update plural rules for Gaelic and Welsh. by jat@google.com · 14 years ago
  23. bffd8d6 Handling errors more from user code more gracefully in HasDataPresenter. If Cells, Cell Widgets, or the SelectionModel throw exceptions during the rendering loop, we no longer lock the presenter's rendering loop indefinitely. by jlabanca@google.com · 14 years ago
  24. 5a449bc Rolling back, need to figure out why XsrfToken is excluded by type filter. by meder@google.com · 14 years ago
  25. c967804 This change adds couple of things: by meder@google.com · 14 years ago
  26. ccfbab9 Update YEAR_MONTH_WEEKDAY_DAY formats, which were affected by an ICU/CLDR bug. by jat@google.com · 14 years ago
  27. cc15ce3 Initial version of HTML5 Audio and Video Original patch by rice, updated by pdr. by gwt.mirrorbot@gmail.com · 14 years ago
  28. 420f661 Setting the line-height of the splitter in Vertical/HorizontalSplitPanel to 0px so the font size does not affect the splitter height, which causes odd rendering effects. by jlabanca@google.com · 14 years ago
  29. 97457ab Use 'boolean' instead of 'Z' for JSNI primitive type qualifiers. by scottb@google.com · 14 years ago
  30. 9213945 Snipping JRE 1.5 hostile Override annotations from UserAgentAsserter by rjrjr@google.com · 14 years ago
  31. 647d4c5 Fixes a javadoc typo in the app generated by WebAppCreator. by rjrjr@google.com · 14 years ago
  32. eeeca17 At application startup, assert that the specified user.agent selection property value indeed matches the expected value for the executing browser / user agent, thus avoid long hours debugging strange error messages when a single user agent compile, typically created for testing purposes, ends up being executed in the wrong browser. In other words, this patches saves you from pulling your hair out. by fredsa@google.com · 14 years ago
  33. 0c4c311 Public (by t.broyer@gmail.com): by rjrjr@google.com · 14 years ago
  34. 5e81c15 Change GWT History to work when multiple applications are loaded within the same page. by jhollenbach@google.com · 14 years ago
  35. 9119d21 In r8817, we landed a patch that allows @Prefix(""), i.e. a by t.broyer@gmail.com · 14 years ago
  36. 31ea105 Add option to use JSONP in ExternalTextResource by unnurg@google.com · 14 years ago
  37. 0c8ad8e Fixing a bug in CellBrowser where the user must click on an element twice to focus on it and enable keyboard support. The problem is that Element.getTabIndex() returns 0 for non-focusable divs, which causes us to assume that the div is focusable. Other browsers return -1 for non-focusable divs. Unfortunately, there is no good way to fix the bug in Element.getTabIndex() because the only way to determine if an element is natively focusable, such as a text box, is to compare the element tagName to a list of known natively focusable element, which isn't scalable. For now, I worked around it in CellBasedWidgetImpl. by jlabanca@google.com · 14 years ago
  38. f10e60e Allows isBoolean() properties to be handled correctly by AutoBeanCodex and RequestFactory. by bobv@google.com · 14 years ago
  39. 560bbeb Fix missing line in Javadoc. by jat@google.com · 14 years ago
  40. 169462a If some unrecoverable failure happens during validation, a ValidationException is raised. by nchalko@google.com · 14 years ago
  41. c58e808 Fixing a bug in DynaTableRf where multiple stale responses can push data into the CellTable, creating an infinite loop where each stale response changes the table range, triggering another request. Also abstracting the ImageButtons used in SimplePager, and fixing a bug where disabled buttons were still clickable. by jlabanca@google.com · 14 years ago
  42. d838f3c Remove experimental warning from Canvas and clean up javadoc. by pdr@google.com · 14 years ago
  43. 34ed857 Throw an IllegalErgumentException if the property name is invalid. by nchalko@google.com · 14 years ago
  44. 33a7a7f Allow Editor framework to handle primitive types. by bobv@google.com · 14 years ago
  45. 54814ec Handle deferred layout updates gracefully in SplitLayoutPanel resize logic. by fmalita@google.com · 14 years ago
  46. e35204f Updated StackTraceDeobfuscator javadoc in follow up to r9162. by fredsa@google.com · 14 years ago
  47. e21df1a Public (t.broyer@gmail.com): by rjrjr@google.com · 14 years ago
  48. 8b507fa Improve canvas for browsers (and permutations) with partial canvas support. by pdr@google.com · 14 years ago
  49. bb7075b Include class level constraints in the BeanDescriptor. by nchalko@google.com · 14 years ago
  50. 5e2a76a Optimizations for server-side invocations of CustomFieldSerializers. by mchaston@google.com · 14 years ago
  51. f6557f3 Fixing the overflow-x and overflow-y properties in Style to use camelCase instead of hyphenated notation. by jlabanca@google.com · 14 years ago
  52. ced4cde Fixing a bug in ResizeLayoutPanel where moving the scroll bars triggers a scroll event on older versions of Safari, which causes an infinite loop. by jlabanca@google.com · 14 years ago
  53. 95e3bb8 Public (larsenje@gmail.com): Adds the ability to set a DialogBox caption widget. by rjrjr@google.com · 14 years ago
  54. cafd96f Adding a new widget ResizeLayoutPanel that can trigger a resize event when it changes size. The widget uses hidden scrollable divs to detect resize on non-IE browsers. This allow users to embed widgets that RequireResize in their app without having an unbroken chain of ProvidesResize up to the RootLayoutPanel. by jlabanca@google.com · 14 years ago
  55. 154c48a Implement an isDirty() method for Editor framework drivers. by bobv@google.com · 14 years ago
  56. 3674b30 Implement spec section 2.2. Applying multiple constraints of the same type. by nchalko@google.com · 14 years ago
  57. 92242e6 Rolling back IE bugfix for IFrames due to failed ImageTest by pdr@google.com · 14 years ago
  58. 8a38343 Make production mode stack traces match JRE spec more closely by fredsa@google.com · 14 years ago
  59. 7edc5d7 Fix bug on IE where onload events don't fire for IFrames. by pdr@google.com · 14 years ago
  60. 5b7a2bf Add support for mapping ConstraintViolation objects into SimpleBeanEditor. by bobv@google.com · 14 years ago
  61. 09cfc1d Match Classes to validate in the order specified in the GwtValidaiton by nchalko@google.com · 14 years ago
  62. b74dff4 Re-roll r9549 with a fix that ensures that sub-editors of a LeafValueEditor will be ignored. by bobv@google.com · 14 years ago
  63. 27c024a Rolling back r9549 due to downstream build breaks. by bobv@google.com · 14 years ago
  64. 219c9d8 Public (by t.broyer): by robertvawter@google.com · 14 years ago
  65. 455f5bc Adding new SimpleLayoutPanel widget, which is a subclass of SimplePanel that ProvidesResize to its child. This is useful when an application needs a content container to hold a Widget that RequiresResize. by jlabanca@google.com · 14 years ago
  66. 43c7d8a Public (by t.broyer): by robertvawter@google.com · 14 years ago
  67. 5dfac3f Public (by t.broyer): by robertvawter@google.com · 14 years ago
  68. c57faee Public (t.broyer@gmail.com): by rjrjr@google.com · 14 years ago
  69. 31a10fe Tone down the experimental api warning. by pdr@google.com · 14 years ago
  70. 7771b37 Handle validation of cascaded Arrays, Iterables and Maps. by nchalko@google.com · 14 years ago
  71. 60e05a1 ColumnSortEvent#isAscending was misspelled. Fixes by rjrjr@google.com · 14 years ago
  72. c58105f Give more explanation in the script tag failure and also provide a way to override it for projects that do not control by unnurg@google.com · 14 years ago
  73. dc0a38b Adding support for setting column widths in CellTable, and for allowing CellTable to use fixed table-layout for more precise control over column widths. I also updated the CellTable example in Showcase and the DynaTableRf sample with the new feature so that columns do not resize when paging. by jlabanca@google.com · 14 years ago
  74. d643115 Make the logging framework provide a default uncaught exception by rjrjr@google.com · 14 years ago
  75. d1c2112 Public (Konstantin.Scheglov@gmail.com): by rjrjr@google.com · 14 years ago
  76. 94601de Rolling back r9505 due to CellViewSuite test breakages. by fmalita@google.com · 14 years ago
  77. 2937577 Handle deferred layout updates gracefully in SplitLayoutPanel resize logic. by fmalita@google.com · 14 years ago
  78. 6424351 Test the type of a value before casting it. by nchalko@google.com · 14 years ago
  79. 04144a6 Adding an Async SortHandler that can be used with AsyncDataProvider. When a table is sorted, it called the setVisibleRangeAndClear() method to clear the current data and send an event to the AsyncDataProvider to provide new information. by jlabanca@google.com · 14 years ago
  80. b3cd320 Expose the locale.queryparam and locale.cookie config params to client by jat@google.com · 14 years ago
  81. 253a8b0 Limit SplitLayoutPanel dragging by available container space. by fmalita@google.com · 14 years ago
  82. 84ac23f Issue 5582 by zhuyi@google.com · 14 years ago
  83. 0fb02d1 Adding column sorting support to CellTable. Clicking on a header of a sortable Column in CellTable adds a sort icon to the Header and fires a ColumnSortEvent, which user can catch to handle sorting. By default and for backward compatibility, Columns are not sortable. We provide ColumnSortEvent.ListHandler as a default implementation to sort java.util.Lists by mapping Columns to Comparators. by jlabanca@google.com · 14 years ago
  84. e789689 Fix swapped javadoc for weekendStart() & weekendEnd() in DateTimeFormatInfo. by fmalita@google.com · 14 years ago
  85. f57b46e Use instanceof to find the right top level GwtSpecificValidator. by nchalko@google.com · 14 years ago
  86. d0ce5ed Add support for selecting messages based on arbitrary values, such by jat@google.com · 14 years ago
  87. 8a45b1b Ensure that enum types reachable through AutoBean method parameterizations are included in the EnumMap. by bobv@google.com · 14 years ago
  88. 54e2ed8 Generator Result Caching for RPC, with some refinements to the underlying framework by jbrosenberg@google.com · 14 years ago
  89. f67445d Fix an NPE in SimpleRequestProcessor when a client request has no invocations. by gwt.mirrorbot@gmail.com · 14 years ago
  90. 451979b Rolling back Generator Result Caching for RPC (issues have been identified) by gwt.mirrorbot@gmail.com · 14 years ago
  91. 4cc5112 Select the correct ConstraintValidator for the bean type. by nchalko@google.com · 14 years ago
  92. aeb06b9 Fix use of length() in generated JS code. by jat@google.com · 14 years ago
  93. 5b747a7 Generator Result Caching implementation for RPC by jbrosenberg@google.com · 14 years ago
  94. 7e11857 Add property provider generators, take 2. by jat@google.com · 14 years ago
  95. a648abd Basic MessageIntrpolation. by nchalko@google.com · 14 years ago
  96. 6c207a4 Base Framework for Generator Result Caching by jbrosenberg@google.com · 14 years ago
  97. dda4b61 beanType is a Class, no need to call getClass to compare it to a class. by nchalko@google.com · 14 years ago
  98. 3031072 Add the property name to the path. by nchalko@google.com · 14 years ago
  99. 41511a8 A new wrapper to BidiFormatter whose methods return SafeHtml instead of String by tomerigo@google.com · 14 years ago
  100. f2e431c Handle composite constraints. by nchalko@google.com · 14 years ago