1. a1baba3 Reverts r8387 "Adds UiBinder support for Grid" by rjrjr@google.com · 15 years ago
  2. e216d8f Fixing CFG handling of labelled breaks inside the switch. by aizatsky@google.com · 15 years ago
  3. 82fbe30 Adds UiBinder support for Grid by rjrjr@google.com · 15 years ago
  4. 09ecdc8 Puts PlaceController in the business of showing the user by rjrjr@google.com · 15 years ago
  5. f3fb5bb CellTable#onBrowserEvent finds the TD element in which an event occurred, and then assumes that the TD has a parent TR and TBODY. This is normally a safe assumption because browsers only fire native events on elements that are attached to the page, which means a TR and TBODY is present. However, if a the user selects a new value in a select element inside the table, a change and mouseup event both fire, even if the table is refreshed on the change event. In practice, if a user changes a value onchange and refreshes the table, the mouseup event will fire on the old TD, which is no longer connected to the table. As a result... this patch checks that both the TR and TBODY are not null. by jlabanca@google.com · 15 years ago
  6. bb3faab Adds design time hooks to UiBinder for GWT Designer, or any other tool by rjrjr@google.com · 15 years ago
  7. 0d7cca8 Passing a ViewDataUpdater into Cell#onBrowserEvent so that cells can update view data after the event has passed. Some editable cells did not fully use view data, but now they use it to store their current state. Also adding view data support to all cell widgets. by jlabanca@google.com · 15 years ago
  8. c9ef5e1 Attributes required by @UiConstructor are no longer enforced when a by rjrjr@google.com · 15 years ago
  9. aa1f76b Do some cleanup on BuildTypeMap. by tobyr@google.com · 15 years ago
  10. 2d25998 Implement GWT.isProdMode() by scottb@google.com · 15 years ago
  11. 1027cb2 Minor changes to the codelab, and making it so that the remote logging is disabled by default by unnurg@google.com · 15 years ago
  12. 973b58f Speed up UiBinderTest by having all tests share one instance of the by rjrjr@google.com · 15 years ago
  13. af5d767 Fix some bugs in symbol dumping. by scottb@google.com · 15 years ago
  14. e80a1ee SafeASTVisitor unilaterally avoids visiting error/unreachable local types by scottb@google.com · 15 years ago
  15. 080b643 Allows Linkers to mark themselves as shardable by including a by spoon@google.com · 15 years ago
  16. 1badded Add numeric types required for autoboxing support to INDEX_TYPES_SET. by tobyr@google.com · 15 years ago
  17. c71073d TempLocalVisitorTest now uses non-destructive code transforms (improves clarity). by scottb@google.com · 15 years ago
  18. c6b9d18 Fixes a bug where temp local declarations could sometimes end up in a for statement's increments list. by scottb@google.com · 15 years ago
  19. cb89065 Updated the target in maven repo to M2. by amitmanjhi@google.com · 15 years ago
  20. f28d77a JSNI ::new() now targets constructors directly. by scottb@google.com · 15 years ago
  21. 5ed7c38 Reorder outer 'this' constructor arguments to come before user arguments. by scottb@google.com · 15 years ago
  22. 7705289 Add numeric wrappers to JavaResourceBase. by tobyr@google.com · 15 years ago
  23. 1579cbe Restore rolled-back change r8329, now with a much faster test case that runs in IE by rice@google.com · 15 years ago
  24. 22e031b Fix external issue 4711 - java.sql.Timestamp#compareTo(java.util.Date) silently crashes in Firefox and Chrome by rice@google.com · 15 years ago
  25. b7216ca Fix for http://code.google.com/p/google-web-toolkit/issues/detail?id=4814 by tms@google.com · 15 years ago
  26. 62ba391 Adding NoSelectionModel, which allows selection without saving the selection state. by jlabanca@google.com · 15 years ago
  27. e1fe963 Revert the ListBoxCell changes that slipped into MailRecipe from another change that hasn't been submitted yet. by jlabanca@google.com · 15 years ago
  28. 47a3531 Replacing PagingListView.setPageStart/Size with PagingListView.setRange. Replacing CellListImpl with PagingListViewPresenter, which makes the implementation easier to test and reuse. Adding lots of tests. by jlabanca@google.com · 15 years ago
  29. bda90c2 UiBinderWriter#escapeTextForJavaStringLiteral correctly escapes \n and by rjrjr@google.com · 15 years ago
  30. ea9a0b8 Inserting TreeItems into the logical list in the same spot that they are inserted into the physical DOM. This fixes a bug where keyboard navigation occurs out of order, and generally makes the logical and physical structures consistent. by jlabanca@google.com · 15 years ago
  31. 33efbb5 Adds parser for TextAlignConstant, which accepts both "friendly" names by rjrjr@google.com · 15 years ago
  32. 230be56 Update sample to use the latest features by unnurg@google.com · 15 years ago
  33. 87c6b32 Update the codelab to trigger exceptions and make the section on triggering server by unnurg@google.com · 15 years ago
  34. bd2afb6 Fix checkstyle problems by rice@google.com · 15 years ago
  35. c702bd3 Remove a JDK-1.6ism by rice@google.com · 15 years ago
  36. d6d6b19 Second attempted fix for issue 4532. This time, we revert the IE7 layout by jgw@google.com · 15 years ago
  37. 3059d8f Rolling back r8329 because it hands in IE8. by jlabanca@google.com · 15 years ago
  38. c2f8468 Increase heap size used for building javadoc. by avassalotti@google.com · 15 years ago
  39. efa7a10 Patch by T. Broyer - Fix issue 5065: Float.parseFloat and Double.parseDouble are too strict validating input (issue647802) by rice@google.com · 15 years ago
  40. 0a158bf Fix external issue 5052 - JSONParser.parse exceptions with some unicode characters by rice@google.com · 15 years ago
  41. a93bfb2 Add a simple remote log handler, and update the sample to use it by unnurg@google.com · 15 years ago
  42. aa8b632 Column should not use a singleton FieldUpdater because the Cell may hang on to the FieldUpdater. We now create a new instance each time. by jlabanca@google.com · 15 years ago
  43. d113918 Setting the default selection model in DefaultNodeInfo to null. Having a selection model per node is almost always incorrect. Users should supply a single Selectionmodel for the entire tree in most cases. by jlabanca@google.com · 15 years ago
  44. c278ce8 Make GWT depend on json-1.5.jar that contains 1.5 compatible bytecode instead by amitmanjhi@google.com · 15 years ago
  45. 2cf1dd4 Making StackLayoutPanel#showWidget(Widget) call showWidget(int) for legacy support. Ditto to TabLayoutPanel. by jlabanca@google.com · 15 years ago
  46. 10477b7 DefaultSelectionModel#setSelected currently adds an exception even if the default selection state equals the specified state. Also adds test cases for all selection models. by jlabanca@google.com · 15 years ago
  47. 62e51a6 Fix abs breakage, the compiler was rewriting 0.0-x with -x, which by jat@google.com · 15 years ago
  48. b3fcf46 Removed the dependency of SampleDataPopulator on gwt-dev by "inlining" the dependency. by amitmanjhi@google.com · 15 years ago
  49. 98b5297 Moved the maven_script.sh from bikeshed/scripts to tools/scripts by amitmanjhi@google.com · 15 years ago
  50. 27c58dc Improve error reporting in the case of an error by chaining the exception. by jat@google.com · 15 years ago
  51. 61847e0 Drop the bikeshed jar from the GWT distribution. by amitmanjhi@google.com · 15 years ago
  52. 79091c2 Fix DateTimeFormat problem where the 'z' format couldn't parse what it by jat@google.com · 15 years ago
  53. 14e8c21 Normalize Array.getClass() by scottb@google.com · 15 years ago
  54. a2d7312 Wholesale move of the app, requestfactory, and valuestore packages from the bikeshed dir to user dir. by amitmanjhi@google.com · 15 years ago
  55. edfd992 Update to Jetty 7.0.2. by jat@google.com · 15 years ago
  56. be17522 Added the api warning for newly added classes. by amitmanjhi@google.com · 15 years ago
  57. 3b61907 Bye Bye Boilerplate patch. No static configuration required for servlet by amitmanjhi@google.com · 15 years ago
  58. 05dafb0 Fixes List.subList problems. by jat@google.com · 15 years ago
  59. caf9ff2 Finishing implementation of ListViewAdapter. An extensive test class will be submitted in a later change because the rest relies on API changes that haven't been submitted yet. by jlabanca@google.com · 15 years ago
  60. 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
  61. 91815ba Added a guard against IndexOutOfBoundsException by amitmanjhi@google.com · 15 years ago
  62. 4f3e817 Work around Safari 5 failures where right-shift of a non-integer is not by jat@google.com · 15 years ago
  63. 52f720f Better implementation for getHandlers (the old one threw an exception in Web mode) by unnurg@google.com · 15 years ago
  64. 7c394a5 The DevMode JSO changes are too complex to integrate as a single change. Need to find a better strategy. by bobv@google.com · 15 years ago
  65. 2928a18 Reintroduces DevMode JSO rewrite after correcting VerificationErrors. by bobv@google.com · 15 years ago
  66. 5807b49 Reduce Eclipse warnings to a dull roar by rice@google.com · 15 years ago
  67. 8ef5dca Escaping HTML strings from the client as a good practice to avoid XSS vulnerabilities in apps the build off of the default app. by jlabanca@google.com · 15 years ago
  68. 4f8cd67 Adding AbstractListViewAdapter#getViews() to get the views associated with an adapter. Also adding some tests for com.google.gwt.view.client. by jlabanca@google.com · 15 years ago
  69. 26534f9 Remove the Remote Logger checkbox (forgotten when I removed the code to handle this box) by unnurg@google.com · 15 years ago
  70. 6d25399 Adds a simple JJS test to verify that enums compile. by scottb@google.com · 15 years ago
  71. a29160f Removes redundant width/height parsing in DockLayoutPanel. by jgw@google.com · 15 years ago
  72. 5d51f8e Roll back JSO changes due to reports of NPEs in MethodWriter. by bobv@google.com · 15 years ago
  73. 50dca76 Reintroduces DevMode JSO rewrite after correcting VerificationErrors. by bobv@google.com · 15 years ago
  74. f4192bd Intruducing AutoDirHandler, a handler for automatically adjusting the direction by tomerigo@google.com · 15 years ago
  75. a61c202 Introduces com.google.gwt.text from bikeshed, along with changes in by rjrjr@google.com · 15 years ago
  76. a7e22e9 A sample for logging by unnurg@google.com · 15 years ago
  77. b4931f3 Adds more logging to JUnitShell. The redundant logging will be removed later. by amitmanjhi@google.com · 15 years ago
  78. 0dad6ab Add the parse method to the Level class by unnurg@google.com · 15 years ago
  79. eac2ea0 UiBinder tests contributed by external user (Konstantin Scheglov). by jgw@google.com · 15 years ago
  80. 7d73777 Update HtmlUnit logging. by amitmanjhi@google.com · 15 years ago
  81. 38b3eca Removes the -XshardPrecompile option. by spoon@google.com · 15 years ago
  82. 598c31a Moved benchmarks to separate benchmarks packages. This prevents spam errors on unit test execution. by rchandia@google.com · 15 years ago
  83. d9f13ab Add Firefox 3.7alpha support (still need Windows changes). by jat@google.com · 15 years ago
  84. 81891c8 Copy long<->base64 code to Base64Utils for server RPC code by rice@google.com · 15 years ago
  85. ad33b8c Add useful hooks into GWT to allow other tools to parse and analyze Java code. by bowdidge@google.com · 15 years ago
  86. 9d21a21 manual repatch of IO merge by gwt.mirrorbot@gmail.com · 15 years ago
  87. 265f7f6 Removed the appengine tools-api.jar, no longer needed with appEngine 1.3.4 by amitmanjhi@google.com · 15 years ago
  88. 714917d Improve wire format for primitive long values. Keep support for the previous format in server-side code. by rice@google.com · 15 years ago
  89. e3320f3 earlier mirror fix only got the additive changes; here are the subtractives. by gwt.mirrorbot@gmail.com · 15 years ago
  90. d72b6bc Removed PrintWriterManager from bikeshed and "inlined" its use in bikeshed. by amitmanjhi@google.com · 15 years ago
  91. 9c58c5d Moving this chang over from the IO branch (the other logging change had to be moved first) by unnurg@google.com · 15 years ago
  92. 3fad8e1 Deleted HasPages, HasValueMap, and ValueListBox since they are not being used. by amitmanjhi@google.com · 15 years ago
  93. 2b2aa43 Added a warning to the javadoc of each src file and to package.html in the app, requestfactory, and valuestore modules. by amitmanjhi@google.com · 15 years ago
  94. d04a133 Add missing properties files (required by 'ant test' of I18NSuite) by rice@google.com · 15 years ago
  95. ee7a4d8 Added tests to ValueStore, specifically DeltaValueStoreJsonImpl and RecordJsoImpl by amitmanjhi@google.com · 15 years ago
  96. ccef588 Moving gwt logging over from the IO branch. Changed the gwt.logging by unnurg@google.com · 15 years ago
  97. 4e4b77f Do not infer startup URLs in JUnitShell by kjin@google.com · 15 years ago
  98. 8db0725 Optimize CfgBuilder.BuilderVisitor.addNode(). by avassalotti@google.com · 15 years ago
  99. e2d1e82 Tweak JavaAstConstructor's copy of Class to match emulation API. by scottb@google.com · 15 years ago
  100. e8ac334 A new model for external types by scottb@google.com · 15 years ago