- 3fd79fc Add more TCK tests. by nchalko@google.com · 14 years ago
- a2c5932 Fixing a bug in CellTree where pushing new data that renders to the same content results in an invalid state where child are still attached to a stale parent. For example, consider a tree contains IDs that represent objects, but renders the ID using the objects display name. If two objects with different IDs have the same display name, those two objects will be rendered the same, which CellTree would optimize out. Now, we perform the detach/reattach logic for child nodes, but we still do not reset the innerHTML. by jlabanca@google.com · 14 years ago
- af22c79 rollback of scriptInjector patch - problems found on some version of Safari by zundel@google.com · 14 years ago
- 68b0766 A general purpose script injection class for injecting a script directly by zundel@google.com · 14 years ago
- 28d0869 Support anonymous enum types in AutoBean ValueCodex. by t.broyer@gmail.com · 14 years ago
- d59523d Adding convenience methods to SafeStylesUtils and SafeStylesBuilder for style properties supported by Style. For most properies, the name is defined in SafeStylesUtils, and the value comes from an enum in Style or a primitive type, so we know that the combination of the name and value produces a string that satisfies the constraints of SafeStyles. by jlabanca@google.com · 14 years ago
- 59af809 Disabling test for null on getBrowserById for DOM elements without DTD when running on Chrome 11 and beyond by rchandia@google.com · 14 years ago
- e5cf230 Fixing a bug in CellTree where refreshing an empty list of children causes an AssertionError that is not captured by the console. CellTreeNodeView#loadChildState() accesses the first child element of the current node in preparation of a loop, but we didn't handle the case where their is no first child because the node is empty. I also added a catch block in HasDataPresenter to rethrow Errors as RuntimeExceptions so we can view them in dev mode. by jlabanca@google.com · 14 years ago
- 3d194ee Use the provided key in all decisions about whether the selections have changed. by rmcchesn@google.com · 14 years ago
- 266b208 Make Request.with() additive when used with different root objects. by bobv@google.com · 14 years ago
- 92cdbd4 Re-roll issue 1442804: SafeHtmlRenderer code gen for UiBinder by rchandia@google.com · 14 years ago
- 17b809b Add some test framework code for RequestFactory to support simple load testing. by bobv@google.com · 14 years ago
- 233ac50 Updated generator result caching to use lastModifiedTime from CompilationUnit.lastModified(). by jbrosenberg@google.com · 14 years ago
- feb3f99 Add test for builtin constraints by nchalko@google.com · 14 years ago
- f549fea Add more TCK tests by nchalko@google.com · 14 years ago
- c2dde22 Rewrite SafeUriHostedModeUtils#isValid without regexp to workaround what looks by jlabanca@google.com · 14 years ago
- d2d7941 Clean up RequestFactoryInterfaceValidator and Deobfuscator to simplify by bobv@google.com · 14 years ago
- c4ff050 Suport polymorphic return and parameter values in RequestFactory. by bobv@google.com · 14 years ago
- a2ba25e Add ServerFailure.getRequestContext(). by bobv@google.com · 14 years ago
- a740f9e ForeachStatement fix for GwtAstBuilder. by scottb@google.com · 14 years ago
- 8af231d Support RequestContext composition (issue 6234) and mix-in (issue 6035). by bobv@google.com · 14 years ago
- a75a037 Adding Column#set/getCellStyleNames() to specify style names to apply to individual cells of a CellTable/DataGrid. Users can set a general style name to apply to the column, or override getCellStyleNames() to provide style names based on the row/cell value. by jlabanca@google.com · 14 years ago
- e3ad6a8 Exercise RunAsyncCode class for prefetching fragments. by zundel@google.com · 14 years ago
- 33506d7 HTML5 Geolocation support in GWT by jasonhall@google.com · 14 years ago
- 11d7ebf Support is/has methods in Editor framework. by bobv@google.com · 14 years ago
- 3cac5f0 Add SafeUri type, similar to SafeHtml but for values in a URL attribute context. by t.broyer@gmail.com · 14 years ago
- a1251eb Unify the AST produced by GwtAstBuilder. by scottb@google.com · 14 years ago
- 43ed72b Making media events bitless, freeing up a few event bits, since modern, by fredsa@google.com · 14 years ago
- 64a673f Add armor for exceptions thrown by Activity#onCancel by rjrjr@google.com · 14 years ago
- aaeafde Re-rolling "Re-implement runAsync to improve code size." Take 3. by scottb@google.com · 14 years ago
- cbdff88 Add a way to disable image inlining on a per-image basis. by bobv@google.com · 14 years ago
- df4885b Adds ability to query the generator context whether a rebind rule exists for a given type by jbrosenberg@google.com · 14 years ago
- cf233f0 Adding additional testing for GWT RPC. Some custom serialized objects by schenney@google.com · 14 years ago
- dc31eea Adding a couple of useful methods to AbstractCellTable. getColumnWidth() can be used to access the width of a column set using setColumnWidth(). flush() will immediately flush pending changes into the view. by jlabanca@google.com · 14 years ago
- b20c496 Add a test to RequestFactoryInterfaceValidator that the findFoo() domain by bobv@google.com · 14 years ago
- 755e69e Resubmitting r9970 again (again) - updating Animation to use the native requestAnimationFrame, which generally results in optimal performance versus using timer based animations. I did away with the soft permutation in this version. Basing the impl on user agent leads to a smaller code footprint versus a soft perm because a soft perm includes all implementations, whereas we now only include the native and timer backup implementations in any permutation. by jlabanca@google.com · 14 years ago
- 73916dd Move the SimpleAppCacheLinker out to sample land, it's not quite ready. by rjrjr@google.com · 14 years ago
- 247bc69 Fix UiBinder default values for missing array-valued attributes, by jat@google.com · 14 years ago
- 39ef8ac Reverted due to failures in client code by unnurg@google.com · 14 years ago
- c3599be Add RequestContext.find() to support chained requests. by bobv@google.com · 14 years ago
- 7bf010e Add BatchedRequestScope utility class to aggregate all requests made within a single tick of the event loop. by bobv@google.com · 14 years ago
- 6df4d31 Re-rolling "Re-implement runAsync to improve code size." by scottb@google.com · 14 years ago
- eee44e0 Removes CompileModule.java, retaining the unit test that depends on it. by zundel@google.com · 14 years ago
- 64d0d60 Reformatting in advance of forthcoming patch by jbrosenberg@google.com · 14 years ago
- 5b212c4 Adding new DataGrid widget. DataGrid is a variation of CellTable that supports a fixed header and footer with a scrollable data area. Most of the CellTable implementation has been hoisted up to a shared abstract class AbstractCellTable, so switching from CellTable to DataGrid is easy. Data Grid uses HeaderPanel to position the header and footer tables above and below the data portion. By default, the tables take 100% width, so there is no horizontal scrollbar. However, DataGrid provides setTableWidth/setMinimumTableWidth so users can use horizontal scrollbars if needed. by jlabanca@google.com · 14 years ago
- 931f226 Fix several @Select issues, adding tests for them: by jat@google.com · 14 years ago
- 694e52a Fix escaping issue with SafeHtml in Safari3 by sbrubaker@google.com · 14 years ago
- 1dfc984 Rollback of r10216 "Re-implement runAsync to improve code size", caused some subtle errors. by scottb@google.com · 14 years ago
- f80e588 Adds a ui:safehtml tag to UiBinder by sbrubaker@google.com · 14 years ago
- 7b2224b Re-implement runAsync to improve code size. by scottb@google.com · 14 years ago
- ecc65de Rollback Issue 1442804. Causes build breakage. by rchandia@google.com · 14 years ago
- edd7f4b SafeHtmlRenderer code gen for UiBinder. Picking up issue 1426803 by rchandia@google.com · 14 years ago
- cb89317 Add baseInterface support to UiBinder. by jat@google.com · 14 years ago
- 0b893ad Improving the user experience and fixing some bugs. by brianpark@google.com · 14 years ago
- e31f1cc Auto code cleanup. by scottb@google.com · 14 years ago
- 248d3ab Fix checkstyle 'info' warnings by rice@google.com · 14 years ago
- 8e35cbf Rolling back submission due to test flakiness. by schenney@google.com · 14 years ago
- 600ca12 Adding additional testing for GWT RPC. Some custom serialized objects by gwt.mirrorbot@gmail.com · 14 years ago
- 6d60fbc Add styleName attribute to Grid by tfischer@google.com · 14 years ago
- 8f87da0 Disabling test for null on getBrowserById for DOM elements without DTD when running on Chrome 12 by rchandia@google.com · 14 years ago
- a10a1d7 Disabling test for null on getBrowserById for DOM elements without DTD when running on Chrome 11 by rchandia@google.com · 14 years ago
- 48d73ec Update the flute jar to accept double colon notation in css selectors, rename by unnurg@google.com · 14 years ago
- 435ef69 Normalize test for ie by rjrjr@google.com · 14 years ago
- d28579d Add runtime-locale support for Localizable subtypes. by jat@google.com · 14 years ago
- 8c789cf Adding drag and drop support to the mobile web app. The desktop TaskEditView now has a list of templates. Users can drag a template over the edit form to populate the fields. by jlabanca@google.com · 14 years ago
- 47e49e9 Adds ability to include SafeHtml objects in dom based UI's if the lazy by rjrjr@google.com · 14 years ago
- ad89924 Adds HTML5 App Cache support to MobileWebApp sample. by rchandia@google.com · 14 years ago
- f29338e Promoting LazyDomElement to be used externally. LazyDomElement can be by hermes@google.com · 14 years ago
- a9e43b9 Improve runtime locales support, so runtime locales that are under a by jat@google.com · 14 years ago
- 4e408c4 Introducing FieldTypeWriter, an enum that identifies field writers and by hermes@google.com · 14 years ago
- 26ef392 Fixing MediaTest#testAddSource to only compare the end of the src to the src that was set. Some browsers automatically prepend the host path to the src file name. by jlabanca@google.com · 14 years ago
- c2ce2f5 Adding the SourceElement for use with Audio and Video, and adding convenience methods in those widgets to use the element. Multiple SourceElements can be specified for an AudioElement/VideoElement widget, and the browser will choose and download one of the sources that it can play. This is convenient and easier than doing a runtime check in user code to figure out the best source file. by jlabanca@google.com · 14 years ago
- 3316de5 Pass the root bean class to constraint violation from validateValue by nchalko@google.com · 14 years ago
- 359489b Correctly handle graph navigation determinism. by nchalko@google.com · 14 years ago
- b385180 Rollback of r10107 due to broken ui binder templates by rjrjr@google.com · 14 years ago
- d62edba Add ability to include SafeHtml objects in dom based UI's if the lazy by rjrjr@google.com · 14 years ago
- e5bd6cd Rolling back due to test failures by unnurg@google.com · 14 years ago
- 06f3088 Add ability to include SafeHtml objects in dom based UI's if the laay widget option is being used (this is the only way that the setters will work correctly) by unnurg@google.com · 14 years ago
- f15b97d Fix inconsistent use of finishTest() in RequestFactoryTest. by bobv@google.com · 14 years ago
- b372746 Ups a timeout from the requestfactory suite from 10 seconds to 30 seconds by zundel@google.com · 14 years ago
- 75be7be Wrap low-priority log calls with an 'if' test to avoid unnecessary calls by rice@google.com · 14 years ago
- df0829a Introducing CustomScrollPanel, a subclass of ScrollPanel that lets users define their own scrollbars. By default, we use NativeVerticalScrollbar and NativeHorizontalScrollbar, but in the future we might introduce thin scrollbars for mobile devices. The scrollbars are semi-transparent until the user hovers them, at which time they transition to 100% opacity (on browsers that do not support CSS transitions, they immediately become opaque). In RTL, the vertical scrollbar appears on the left side (many browsers get this wrong natively). by jlabanca@google.com · 14 years ago
- bd61df4 Change default UiBinder template file for inner classes from by mdempsky@google.com · 14 years ago
- 75a4681 Somehow this file didn't committed with the rest. by jat@google.com · 14 years ago
- 05bf5aa Move Date-related classes to shared, so they can be used by by jat@google.com · 14 years ago
- 9f3cb7b First step of isolating a bunch of code that is used for generating by jat@google.com · 14 years ago
- df76c64 Structural changes to UiBinder to make fields accessible via getters by hermes@google.com · 14 years ago
- c9f8ea4 Create a utility class for checking assignability of types for use by jat@google.com · 14 years ago
- 0c143d0 Switch RequestFactory to use the real ConstraintViolation instead of the hacky Violation interface. by bobv@google.com · 14 years ago
- b7559a9 Add RequestContext.append() to allow actions across different domain service types to be combined in a single HTTP request. by bobv@google.com · 14 years ago
- 86f7543 Added small generator testing framework that allows developers to by schmitt@google.com · 14 years ago
- 0a2b62a Tighten sanity checks on BigDecimal(String value) so that it doesn't accept by hhchan@google.com · 14 years ago
- 172fc41 Test that references to PredefinedFormat values work with DateLabel by rjrjr@google.com · 14 years ago
- e997581 Replace HeaderPanel's custom iterator with a new package protected FiniteWidgetIterator that iterates over children in a WidgetProvider. FiniteWidgetIterator is a generic iterator over a finite set of child widgets (versus WidgetIterator, which iterators over panel of arbitrary size). I intended to use FiniteWidgetIterator in another change then ended up not needing it, but I'm sure it will come in handy for other widgets. by jlabanca@google.com · 14 years ago
- e3b5213 Finishes the job of making EventBus backward compatible, half done in r10023 by rjrjr@google.com · 14 years ago
- bdf031e Add @SkipInterfaceValidation to RequestFactory to selectively bypass matching by t.broyer@gmail.com · 14 years ago
- 6e4501d Allow ServiceLocator instantiation to be controlled via RequestFactory ServiceLocator. by daniel.r.bell@gmail.com · 14 years ago
- 7669bfd Restores r10014 (rolls back r10016), Makes EventBus available outside of the gwt by rjrjr@google.com · 14 years ago
- 2d723d0 Rollback of r10014 "Makes EventBus available outside of the gwt package" due to by gwt.mirrorbot@gmail.com · 14 years ago
- 6a37ba4 Remove error spam from RPCSuite.gwt.xml; non-existent servlet is referenced. by scottb@google.com · 14 years ago