1. 361d697 Public: First pass at generating a GWT Validator. by nchalko@google.com · 15 years ago
  2. 2d3e06f Adding the validation library to the DynaTableRf and Validation classpath to resolve missing dependencies. Also adding a marker to the classes folder in both samples so eclipse has a place to put class files. by jlabanca@google.com · 15 years ago
  3. 2ca48c7 Renamed Record to EntityProxy. Renamed classes with entity names -- for example, EmployeeRecord to EmployeeProxy. Also renamed variables in a few classes. by amitmanjhi@google.com · 15 years ago
  4. 599fd9b Factor a bean-like-object editor framework out of the RequestFactory editor work. by bobv@google.com · 15 years ago
  5. 76adc26 Missing file from SafeHtml work + whitespace fix by rice@google.com · 15 years ago
  6. 42b8d9c Use SafeHtml for Cell widgets by rice@google.com · 15 years ago
  7. d82790d Remove the unnecessary dependency of the expenses sample on AspectJ. by amitmanjhi@google.com · 15 years ago
  8. f044829 Initial add of generator for RequestFactoryEditorDriver. by bobv@google.com · 15 years ago
  9. d1e277d Added missing datanucleus-core dependency in main dependencies section. by rjrjr@google.com · 15 years ago
  10. f96465b Push back roo to a released version. by rjrjr@google.com · 15 years ago
  11. c1dfcf1 Fixes the NPE in ExpenseTree. Also fixes a bug where saving notes in the ExpenseDetails clears out the notes; we now request a new record after saving. Also fixes a bunch of checkstyle warnings and uses of deprecated calls to RecordRequest#forProperties(). by jlabanca@google.com · 15 years ago
  12. 3f7f42f Fixes the very broken Expenses sample. by rjrjr@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. 6ae2c63 Putting validation on all samples' classpath, because validation by fabbott@google.com · 15 years ago
  15. d4dd921 Samples should define ant prop $sample.path, used from by fabbott@google.com · 15 years ago
  16. d359cb6 Adding RTL support to Cell Widgets. CellBrowser opens from the right in RTL mode. CellTree open/close icons appear on the right in RTL mode. IconCell shows the image on the right. As part of this change, I had to change the location of the ruler in LayoutImpl. It used to be shifted to the top and left out of view, but this causes unintended scrollbars in RTL mode. Shifting it off to the top does not affect scrollbars, but still hides the ruler completely. by jlabanca@google.com · 15 years ago
  17. 97def99 Public: Start of a sample application showing GWT validation. by nchalko@google.com · 15 years ago
  18. 41902cd Add DynaTableRf to the distribution, and fix some checkstyle issues. by rjrjr@google.com · 15 years ago
  19. 0243b10 Fix breakage from ValueStore / RequestFactory merge. by rjrjr@google.com · 15 years ago
  20. 6bdc0f1 Not compile-building expenses sample, just collecting its files into the distro. by fabbott@google.com · 15 years ago
  21. e1139ae Adding TreeNode API to CellTree and CellBrowser, which allows users to programmatically open/close tree nodes. Similar to the way CellList works, a TreeNode primarily operates on its children, and it is only accessible if the node is open. That is important because it means that implementors do not need to create a TreeNode for every leaf, as is the case with CellBrowser. TreeNodes are destroyed when they are closed or otherwise removed from the tree. However, if new data is pushed into the tree, a TreeNode will not be destroyed unless the new data set does not contain the nodes value. CellTree and CellBrowser now implement HasOpen/CloseHandlers. TreeNodes can return the value of the node itself, allowing users to respond to open/close events appropriately. This patch also adds a bunch of unit tests, and fixes some subtle bugs. by jlabanca@google.com · 15 years ago
  22. 597c304 fix ExpenseTree for "ant -f samples/expenses/build.xml build" by kjin@google.com · 15 years ago
  23. 0e04c41 Tightened up datanucleus paths to include only **/domain/*.class by cramsdale@google.com · 15 years ago
  24. 408e75e Updated common.ant.xml to copy pom.xml (if found) to build/out by cramsdale@google.com · 15 years ago
  25. fa87f8f Added the Expenses app to the list of GWT samples, and modified each sample's build.xml file to set its source path by cramsdale@google.com · 15 years ago
  26. 29dcd29 First cut at keyboard navigation for CellTree by rice@google.com · 15 years ago
  27. 1fb2368 Makes the terminology used by AbstractListViewAdapter and AbstractPager consistent with HasData. HasData#setRowValues() is now HasData#setRowData(). Also renames ListViewAdapter to ListDataProvider so it is more obvious that the class provides data to a Cell widget. The term "View" has been replaced by "Display" (for pagers) and "DataDisplay" (for data providers). "View" insinuates an MVC design, but in our case the widgets do have some logic, so we chose the more generic term "Display" to describe them. This patch looks huge, but 95% of it is a bunch of renames. by jlabanca@google.com · 15 years ago
  28. 4689e10 Adding a BiDi page to Showcase by tomerigo@google.com · 15 years ago
  29. 35069b7 Extends DynaTableRF with a client call to Person#persist. by rjrjr@google.com · 15 years ago
  30. c77d572 ListView and PagingListView are now HasData, with a parent interface of HasRows. ListView.Delegate/Pager have been replaced by a combination of HasRows#addRangeChangeHandler() and HasRows#addRowCountChangeHandler(). Pagers (note that there is no longer a Pager interface) no longer take views in their constructors. Instead, they are passed into AbstractPager#setView(), making them more UiBinder friendly. CellList and CellTable now have a common superclass AbstractHasData, which makes it much easier for us and users to create new Cell based widgets. by jlabanca@google.com · 15 years ago
  31. ccbbcb6 Showcase: fix checkstyle errors and suppress deprecation warnings by rice@google.com · 15 years ago
  32. d39c19c Fixing the msg key in ContactInfoForm so that the two buttons use different keys. by jlabanca@google.com · 15 years ago
  33. 7f8da95 Refactor SelectionModel.SelectionEvent into its own class with associated Handler by rice@google.com · 15 years ago
  34. 9a605e9 Finish modernizing the DynaTableRF sample to use an event-based application model. by bobv@google.com · 15 years ago
  35. 8b8e7b2 Adding support for non-propagating events in Cell based widgets. In modern browsers, we make the widget's outer element the capture element, which allows us to catch and dispatch non-bubbling events from the cells. by jlabanca@google.com · 15 years ago
  36. c4cd328 Remove 1.6isms from RequestFactory, and fix DynaTableRf (id's by rjrjr@google.com · 15 years ago
  37. d123c5d DynatableRf refactoring in response to http://code.google.com/p/google-web-toolkit/source/detail?r=8436 by amitmanjhi@google.com · 15 years ago
  38. 21e1ccf Begin to convert DynaTableRF sample to using UiBinder. by bobv@google.com · 15 years ago
  39. 3b14f5d Replacing Cell#consumesEvents() with Cell#getConsumedEvents(), and using the return value to sink only the required events for each Cell Widget. by jlabanca@google.com · 15 years ago
  40. d39fe78 A new version of DynaTable that uses RequestFactory instead of GWT RPC. by rjrjr@google.com · 15 years ago
  41. 74c9f0d Moving the Cookbook examples into Showcase. Also updates a few examples in Showcase that used deprecated code. The process for including raw source code in an example is now much easier thanks to ContentWidget#registerSource(). Examples that were using custom code to include source have been fixed to use the common code in ContentWidvget. Most of the code in the Cookbook MailRecipe sample will be moved into the Mail sample, so I didn't delete it yet. I did remove all of the Cookbook infrastructure. by jlabanca@google.com · 15 years ago
  42. 230be56 Update sample to use the latest features by unnurg@google.com · 15 years ago
  43. a93bfb2 Add a simple remote log handler, and update the sample to use it by unnurg@google.com · 15 years ago
  44. 92480a8 Adding a null check to ShowcaseGenerator so that we don't try to write to a public resource that has already been created. This fixes a bug when multiple examples reference the same raw source files. by jlabanca@google.com · 15 years ago
  45. 26534f9 Remove the Remote Logger checkbox (forgotten when I removed the code to handle this box) by unnurg@google.com · 15 years ago
  46. f4192bd Intruducing AutoDirHandler, a handler for automatically adjusting the direction by tomerigo@google.com · 15 years ago
  47. a7e22e9 A sample for logging by unnurg@google.com · 15 years ago
  48. d54a4bd Mirroring got broken around the merge from branches/2.1, although I'm by gwt.mirrorbot@gmail.com · 15 years ago
  49. 320275a Rollback of AutoDirHandler changes which broke some internal tests. by tomerigo@google.com · 15 years ago
  50. f5ea1ca Intruducing AutoDirHandler, a handler for automatically adjusting the direction of an object (typically a TextBox variant) while text is being entered. This handler is then used to add BiDi support to TextBox and TextArea. by tomerigo@google.com · 15 years ago
  51. 422adf6 Updated translations for Showcase. by jlabanca@google.com · 15 years ago
  52. afbff21 Changes for crawling: client-side changes to Showcase sample by kprobst@google.com · 15 years ago
  53. 27ad99c Fixes for outstanding LayoutPanel issues by jgw@google.com · 15 years ago
  54. 5a2b45b Adding the marker to the classes directory in the Mail sample so Eclipse doesn't complain. by jlabanca@google.com · 15 years ago
  55. e035510 Introduces Microbenchmarks app in references. At the moment there by rjrjr@google.com · 15 years ago
  56. cf0bd11 Move more IE6 urls out of war and into resource space by rjrjr@google.com · 15 years ago
  57. 2869626 Fix Mail sample to use a data url for IE6, baking in the image by rjrjr@google.com · 15 years ago
  58. 577f752 Minor tweaks to Showcase. by jlabanca@google.com · 15 years ago
  59. f94a1e7 Resizing MailList to avoid unneccessary vertical scroll bar. by jlabanca@google.com · 15 years ago
  60. db14424 Fix incorrect delimiter in Chinese Showcase translation. by jat@google.com · 15 years ago
  61. b2be114 Fixes issues 2907, 4277 and 4278. by jgw@google.com · 15 years ago
  62. 26ce719 A number of tweaks to the mail sample. by jgw@google.com · 15 years ago
  63. d4d29e6 Accidentally committed too many files in r7007. Reverting the files that weren't supposed to be committed. by jlabanca@google.com · 15 years ago
  64. 322d544 Replacing "hosted mode" with "development mode" in DynaTable. by jlabanca@google.com · 15 years ago
  65. 9a4999e Adding Window.Navigator api. by jlabanca@google.com · 15 years ago
  66. aa83757 Add a prefetch queue to AsyncFragmentLoader. User code can add split points to by spoon@google.com · 15 years ago
  67. 744ab5c Fix xhtml.ent url by rjrjr@google.com · 15 years ago
  68. 02a86cb Now using CssResource's @if to provide 1-bit-alpha images on IE6. by jgw@google.com · 15 years ago
  69. 6e3409b Fixed stupid style error in Mail's stack panel headers. TBR: rjrjr by jgw@google.com · 15 years ago
  70. d6f1bd0 <g:StackLayoutPanel> is now consistent with <g:TabLayoutPanel> and by rjrjr@google.com · 15 years ago
  71. c8ed231 Various tweaks to the Mail sample: by jgw@google.com · 15 years ago
  72. 7f491a6 Cleaning up the mail sample, adding new styles, and moving most images by jgw@google.com · 15 years ago
  73. 670b065 Adds PopupPanel.setGlassEnabled(), along with related tests and sample by jgw@google.com · 15 years ago
  74. 94afcc3 Renaming LayoutComposite to ResizeComposite (name drift). This is a new by jgw@google.com · 15 years ago
  75. 55356ef Eliminates the need to call layout() explicitly on *LayoutPanel, which by jgw@google.com · 15 years ago
  76. 476624f Deprecate ImageBundle in favor of ClientBundle and ImageResources. by bobv@google.com · 15 years ago
  77. d811376 Removing I18N sample now that it has been incorporated into Showcase. by jlabanca@google.com · 15 years ago
  78. f6dc3e4 Moving the Plural Forms example from the I18N sample to Showcase. by jlabanca@google.com · 15 years ago
  79. e0fa5b1 Merge farewellSwt into trunk. by jat@google.com · 15 years ago
  80. 3c459ee Recommitting r6329 to add UrlBuilder, this time with passing tests. by jlabanca@google.com · 15 years ago
  81. 0eaf782 Revert "Adding UrlBuilder and using it in Showcase and GwtTestCase so we don't remove gwt.hosted parameter in URLs," due to web mode test failures in com.google.gwt.user.client.WindowTest.testLocationCreateUrlBuilder by rjrjr@google.com · 15 years ago
  82. b2376c4 Adding UrlBuilder and using it in Showcase and GwtTestCase so we don't remove gwt.hosted parameter in URLs. by jlabanca@google.com · 15 years ago
  83. 5a385f9 Fixes various mail issues, primarily on IE: by jgw@google.com · 15 years ago
  84. e606905 Adding a white background the to noscript warning so it shows up against all backgrounds. by jlabanca@google.com · 15 years ago
  85. 1ce4154 Removed the hard coded width from the locale selector in Showcase because the locale names can be very long. by jlabanca@google.com · 15 years ago
  86. e6c9937 Fix plurals in i18n sample (and others). There were two problems: by jat@google.com · 15 years ago
  87. 33d1639 Remove the spurious directories like Hello/linux, Hello/windows, Hello/mac in by amitmanjhi@google.com · 15 years ago
  88. 52ac42b Merge up to trunk @r6200. by jat@google.com · 15 years ago
  89. 3e0a20f Fixed checkstyle error in Mail sample. by jlabanca@google.com · 15 years ago
  90. ee29b77 - Adds UiBinder parsers for DockLayoutPanel and StackLayoutPanel. by jgw@google.com · 15 years ago
  91. 0b1619e Remove SWT, collapse dev platforms to a single one, rewrite runstyles to new by jat@google.com · 15 years ago
  92. 1d30610 Additional fix for issue 3903. Adds noscript tags to additional samples by fredsa · 16 years ago
  93. 529d349 Switched a HashMap to a LinkedHashMap in the AbsolutePanel example in Showcase so that widgets appear in the same order across browsers. by jlabanca@google.com · 16 years ago
  94. dedc0d2 Initial add of derpc code base. by bobv@google.com · 16 years ago
  95. 615a29b Fixing the checkstyle and presubmit rules. Checkstyle never reached the by fabbott@google.com · 16 years ago
  96. ebec02f Changes to make GWT i18n support "real" default locales. Introduces a .gwt.xml tag <set-property-fallback name="prop" value="chosenvalue"/>, which can be used in property providers as a template substitution for /*-FALLBACK-*/. In i18n, this is used to select a "real" locale to be returned in situations when "default" would otherwise have been used. Also modified AbstractLocalizableImplCreator so that generators running in GwtLocale.DEFAULT will run on this "real" locale, even if <set-property> has been used so that the literal "default" is not being generated. by fabbott@google.com · 16 years ago
  97. dd208e6 Ant fixes for platform independence, for dist-dev not needing tools, and by fabbott@google.com · 16 years ago
  98. f2503f3 Giving samples a -localWorkers flag. You can configure it for your hardware by defining the property gwt.samples.localworkers in ROOT/local.ant.properties. by fabbott@google.com · 16 years ago
  99. 5ead61f Issue 34812: Fix findbugs & checkstyle issues by rice@google.com · 16 years ago
  100. 53e7ebe Fixing a very dusty old typo in simplerpc's ant build file. by fabbott@google.com · 16 years ago