1. 3194a93 Properly encode request parameters that use Collections when in JSON-RPC mode. by rdayal@google.com · 13 years ago
  2. a42c1ae Fix Window.Location.getHash() for Mozilla so that it returns the unescaped hash, consistent with other platforms. by andrewbachmann@google.com · 13 years ago
  3. ee95433 Adding an option to change the debug id property and prefix. Some users prefer to use a random attribute instead of the element ID, or they do not want the "gwt-debug-" prefix. I added two static methods, DebugInfo#setDebugIdAttribute() and DebugInfo#setDebugIdPrefix(), to make it easy to configure these settings. by jlabanca@google.com · 13 years ago
  4. ed17a82 Reducing the unsafe URI log warning to an info. If you use a String in a URI context, we sanitize the string, so it is not a security risk and should not generate a warning. However, we still log an info message so users know they can use SafeUri instead if they do not want the URI sanitized. by jlabanca@google.com · 13 years ago
  5. af1c736 Switch more gwt-user code to use SafeHtml. by mdempsky@google.com · 13 years ago
  6. fa1d8a0 Fix SafeHtml API misuse (calling SafeHtmlUtils.fromSafeConstant(String) by mdempsky@google.com · 13 years ago
  7. b049ad3 Fix docs for getOffsetWidth/Height. by rdayal@google.com · 13 years ago
  8. 7a30184 Fixing a bug in SafeStylesUtils where zIndex is specified in camelCase form instead of hyphenated form. by jlabanca@google.com · 13 years ago
  9. 49beb41 Introduce a new method onPreviewColumnSortEvent to Header. An AbstractCellTable checks this method before firing column sort event and will not fire the event if the method returns false. This gives users an option to disable column sort if the header cell actually consume the click event (e.g., a tooltip), and to disable column sort for header/footer sections. by pengzhuang@google.com · 13 years ago
  10. 5009f55 Don't allow SafeHtml strings to end in a <script> or <style> context. by mdempsky@google.com · 13 years ago
  11. b471132 Avoid bottlenecks by using ConcurrentHashMap instead of a synchronized IdentityHashMap. by rdayal@google.com · 13 years ago
  12. 3888f79 Add assert for null provided fields, fixes #7024 by rchandia@google.com · 13 years ago
  13. bcbce26 Change SafeHtmlHostedModeUtils.isCompleteHtml() to public. by mdempsky@google.com · 13 years ago
  14. a5b2a61 Change Timer.java to allow 0ms delay for single shot timers. by iteratee@google.com · 13 years ago
  15. 3bcfbb5 Add exception class name to serialized/deserialized throwable. by cromwellian@google.com · 13 years ago
  16. c540246 Encoding the line and column of a stack trace frame into the line number can exceed the size of 'int' and break StackTraceElement serialization. This patch changes the StackTraceCreator/Deobfuscator to instead, encode the column number of the exception in the JS filename. by cromwellian@google.com · 13 years ago
  17. c5ba924 Update ISO-8601 format to accept a timezone of a literal "Z" to mean GMT+0. by jat@google.com · 13 years ago
  18. 9e15e21 Update time zone data based on latest data provided by pytz2011n. by shanjian@google.com · 13 years ago
  19. f6713c7 Add a "FakeCssMaker" for CSS resources similar to FakeMessagesMaker. by jasonmheim@google.com · 13 years ago
  20. 318a3a1 Fix GWT emulated Logger behavior to match java.util.logging.Logger by baker@google.com · 13 years ago
  21. 7b8f95b This the 2nd try to update NumberConstantsImpl* to CLDR2.0.1. by shanjian@google.com · 13 years ago
  22. 3d7ead7 Add NoSuchMethodException for compatibility. by jat@google.com · 13 years ago
  23. 172fd90 Fix instance of javac's empty warning. by eaftan@google.com · 13 years ago
  24. 39341aa Re-rolling sourcemap support after rollback. Jar-jared sourcemap.jar dependency and reverted regression in StackTraceCollector.splice(). by cromwellian@google.com · 13 years ago
  25. b7b4d71 Roll back Source Map support for GWT due to breakages seen by various teams by unnurg@google.com · 13 years ago
  26. 2240765 Add SourceMap support to GWT by cromwellian@google.com · 13 years ago
  27. c702abf Add bytecode rewriting for the LogManager.getLoggerNames() function so this works correctly in DevMode by unnurg@google.com · 13 years ago
  28. 89047e3 Add the ability to override the number of fractional digits of a by jat@google.com · 13 years ago
  29. 6e8d9a2 Add an option to compile out all logging calls below the SEVERE or WARNING by unnurg@google.com · 13 years ago
  30. b48b525 rollback of previous change to CLDR 2.0.1 update by shanjian@google.com · 13 years ago
  31. 2948a86 Regenerate number format constants based on CLDR 2.0.1. Also added 2 new patterns, by shanjian@google.com · 13 years ago
  32. 5260c88 Upgrade GWT's htmlunit dependencies. by cromwellian@google.com · 13 years ago
  33. 3acc629 Re-roll simple/global currency pattern change after fixing internal by jat@google.com · 13 years ago
  34. e0b3c05 Fix instances of javac's divzero warning. by eaftan@google.com · 13 years ago
  35. da9008f Use EPL for GPE by scheglov@google.com · 13 years ago
  36. 2b95a05 Rollback simple/global currency pattern change because it broke some by jat@google.com · 13 years ago
  37. 2b5272f Add simple and global currency patterns. by jat@google.com · 13 years ago
  38. beebe17 Add Enumeration<String> getLoggerNames() support to gwt LogManager emulation. by baker@google.com · 13 years ago
  39. d23ad40 Fix com.google.gwt.http.client.UrlBuilder to encode the query string using URL.encodeQueryString(). by chganser@google.com · 13 years ago
  40. f64bfa2 Fixing a bug in CellBrowser where using a shared SelectionModel across all lists and using KeyboardSelectionPolicy.BOUND_TO_SELECTION causes the lists to fight for selection. The result is that items in lower index lists (to the left) end up being selected instead of items in the highest index list (rightmost). This is a fairly complicated problem that requires custom handling of selection state within CellBrowser. by jlabanca@google.com · 13 years ago
  41. 684e476 Reroll of r10726 by rchandia@google.com · 13 years ago
  42. 182e197 Fixing a bug in HasDataPresenter where it does not pass the complete list of modified rows if a pending state is detecting while we are resolving the current state. We were leaving off rows that were modified, as well as the keyboard selected rows. By passing all of these rows to the recursive call to resolvePendingState(), we ensure that all modified rows are updated. by jlabanca@google.com · 13 years ago
  43. b85fa0c Mofifying HasDataPresenter to be more resilient to state changes while it is resolving state changes. For example, if user code triggers a SelectionChangeEvent while selection is being resolved, we can handle that. by jlabanca@google.com · 13 years ago
  44. 73e33f1 Rollback of r10726. It still causes brackage by rchandia@google.com · 13 years ago
  45. 679a9fb r10697 is back! It was falsely accused last time. Fingers crossed: by rchandia@google.com · 13 years ago
  46. e0866aa Fixing a bug in Cell Widgets when using the BOUND_TO_SELECTION KeyboardSelectionPolicy in which programmatically deselecting a value makes the value unselectable until the user selects a different value. For example, in the list A, B, C, if you programmatically deselect value B, then value B cannot be selected unless the user selects value A or C first. We now correctly detect this case and update the state with a null selected value, which allows us to detect the change when the user selects value B. by jlabanca@google.com · 14 years ago
  47. 1b12886 Add ability to GWTMockUtilities to stub out Messages for better unit testing. by tfischer@google.com · 14 years ago
  48. 41e8a90 Adding Element#getPreviousSibling(). by jlabanca@google.com · 14 years ago
  49. 665890c Another rollback of r10697. Too damn many teams use binder! by rjrjr@google.com · 14 years ago
  50. bbb0991 Again restore r10697 now that LazyPanel support is more robust. by rjrjr@google.com · 14 years ago
  51. a930c79 Keeps LazyPanelParser from breaking existing templates that use by rjrjr@google.com · 14 years ago
  52. 9772f18 Another rollback of r10697, which breaks code that was already using by rjrjr@google.com · 14 years ago
  53. 95aec80 Restores r10697 now that the CellPanelParser fixes are in place by rjrjr@google.com · 14 years ago
  54. 39918a0 Small fix to CellPanelParser to make it work with lazy widget by rjrjr@google.com · 14 years ago
  55. e8e9018 Rollback of 24756130 by rdcastro@google.com · 14 years ago
  56. e39d8f4 Add the final two TCK test classes. by nchalko@google.com · 14 years ago
  57. 8a67b88 The rest of the TCK xml tests. by nchalko@google.com · 14 years ago
  58. 914b877 Makes sure the RenderablePanel inherits all attributes from the PotentialElement when realizing the Element. by rdcastro@google.com · 14 years ago
  59. 8739730 Rollback of r10697 due to broken builds by rjrjr@google.com · 14 years ago
  60. a03501a Re-submit: Iterating over all attributed when realizing PotentialElements. by rdcastro@google.com · 14 years ago
  61. 2163225 Change default of UiBinder.useLazyWidgetBuilders to true, in by rjrjr@google.com · 14 years ago
  62. 6250edd Keep track of TCK coverage. by nchalko@google.com · 14 years ago
  63. b8ee117 More TCK tests by nchalko@google.com · 14 years ago
  64. b044a41 Improves Dev Mode reporting of JavaScriptException to include method by rjrjr@google.com · 14 years ago
  65. ab6b91c Makes SuggestBox implement HasEnabled, fixing GWT issue 6530 by stephen.haberman@gmail.com · 14 years ago
  66. df46083 Reorganize validation classes and minimize visibility in preperation for by nchalko@google.com · 14 years ago
  67. abf743f Add getter for active EventBus by mruppaner@google.com · 14 years ago
  68. 079d5b0 broke tests by mruppaner@google.com · 14 years ago
  69. 9a90c76 Added a getter for the ResettableEventBus object. by maximilian.ruppaner@gmail.com · 14 years ago
  70. 0463d04 Fixed a typo in exclude NonTckTest flag, that was causing the TCK results count to be wrong. by nchalko@google.com · 14 years ago
  71. 9101e57 In UiBinder, when referring to a component that extends a base UI object, the by geoff@speicher.org · 14 years ago
  72. cbaec36 Temporary rollback of Throwable catch to diagnose problem. by cromwellian@google.com · 14 years ago
  73. ef42f9c Fix broken tests. by pengzhuang@google.com · 14 years ago
  74. 4db174c Change the superclass of the translatable version of by skybrian@google.com · 14 years ago
  75. 71e01a1 In IE, AbstractCellTable replaces a table section by first removing existing tr by pengzhuang@google.com · 14 years ago
  76. fe7c529 Make client-side JUnit 3 classes available without GWTTestCase. by skybrian@google.com · 14 years ago
  77. cb8b4e1 Segregate JRE Resource tests for more targeted testing by rjrjr@google.com · 14 years ago
  78. 81852cf This change is to update <ui:with> to support setting property values on the by justin@jhickman.com · 14 years ago
  79. fd6d446 Removing a logging message people are seeing when building with GWT locally. by mlowrie@google.com · 14 years ago
  80. 373419f Fixed issue that was causing ERROR log messages due to duplicate cssmap file names. by dhawkey@google.com · 14 years ago
  81. 613a1bd Remove entrDepthWatchdog exception reporting. by emmanuelp@google.com · 14 years ago
  82. 7722975 Gives CellTable an option to disable colgroup and/or don't attach the message by pengzhuang@google.com · 14 years ago
  83. 1de6256 Exporting a map of obfuscated CSS names to full class names into a build by mlowrie@google.com · 14 years ago
  84. b239831 Rolling back 24166710. It's broken on IE7/WinXP. by rdcastro@google.com · 14 years ago
  85. 698541f Fix name clash between RequestContext and the FindRequest impl interface. by rjrjr@google.com · 14 years ago
  86. 510a07b Makes sure all attributes from the PotentialElement can be inherited by rdcastro@google.com · 14 years ago
  87. b867dfc Allow @defs with multiple values by unnurg@google.com · 14 years ago
  88. ea7af33 Add a support for header builder to return row index for multi-row by pengzhuang@google.com · 14 years ago
  89. eec7ad2 Introduces BrowserEvents string constants by rjrjr@google.com · 14 years ago
  90. 2e5325c During row mouseout events, only consider it as row unhovering if the by pengzhuang@google.com · 14 years ago
  91. 1a1b9e3 Fix javadoc for new timezone-aware constructors of DateCell. by yby@google.com · 14 years ago
  92. 4e325ad Allow DateBox to fire events with null date values for invalid and empty input by justinfagnani@google.com · 14 years ago
  93. bbf0933 Use LinkedHashMap instead of HashMap so that the methods returned by getAllInterfaceMethods() are in their declaration order, so that the generated methods will be in their declaration order. by stephenleung@google.com · 14 years ago
  94. 28b57c5 Fixes fake even dispatch in UiRendererEventsTest for IE8 and less by rchandia@google.com · 14 years ago
  95. 36ecc0d Update the checkstule path for validation sample Fix the @NotSupported count by nchalko@google.com · 14 years ago
  96. 5082ee3 Makes the @GwtTransient mechanism work for any annotation with that simple name. by rjrjr@google.com · 14 years ago
  97. b457b24 When -XdisableClassMetadata is used, Class.getName() can return Class$S<seedNumber> as a class name. However, there are other modes where it can return Class$<obfuscated function name>. In some rare cases, these two could collide of if an obfuscated name of a class ended up as something like 'S123'. This patch changes the WebModeClientOracle to treat Class$S123 differently than 'S123' when deobfuscating class names. by cromwellian@google.com · 14 years ago
  98. 0aaa0d5 Converts the validation sample to build with maven. Also delete an by rjrjr@google.com · 14 years ago
  99. 2d82d37 Fix http://code.google.com/p/google-web-toolkit/issues/detail?id=6161 by rjrjr@google.com · 14 years ago
  100. 482091f Add ability to control time zone in DateCell. by yby@google.com · 14 years ago