Repository: tapestry-5 Updated Branches: refs/heads/master 29f38edba -> 9977826cf
TAP5-2225 Create client-side API to call a component's event handler methods Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/9977826c Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/9977826c Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/9977826c Branch: refs/heads/master Commit: 9977826cfd66b624129f8405ec18ecd9b68dc33d Parents: 29f38ed Author: Thiago H. de Paula Figueiredo <[email protected]> Authored: Sun Mar 19 16:13:17 2017 -0300 Committer: Thiago H. de Paula Figueiredo <[email protected]> Committed: Sun Mar 19 16:13:17 2017 -0300 ---------------------------------------------------------------------- .../tapestry5/integration/app1/pages/Index.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/9977826c/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/pages/Index.java ---------------------------------------------------------------------- diff --git a/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/pages/Index.java b/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/pages/Index.java index e78a874..d483a2a 100644 --- a/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/pages/Index.java +++ b/tapestry-core/src/test/java/org/apache/tapestry5/integration/app1/pages/Index.java @@ -62,30 +62,30 @@ public class Index // new Item("ZoneFormDemo", "Zone Form Decoration", "Fields inside an Ajax-updatd Form are still decorated properly."), -// new Item("AjaxValidationDemo", "Ajax Validation", "Demonstrated proper integration of server-side validation and client-side field decoration."), + new Item("AjaxValidationDemo", "Ajax Validation", "Demonstrated proper integration of server-side validation and client-side field decoration."), new Item("OverrideEventHandlerDemo", "Event Handler Override Demo", "Event Handler methods overridden by sub-classes invoke base-class correctly."), -// new Item("LogoSubclass", "Base class Assets in sub-classes", "Assets are resolved for the parent class if that's where the annotations are."), + new Item("LogoSubclass", "Base class Assets in sub-classes", "Assets are resolved for the parent class if that's where the annotations are."), new Item("MissingRequiredARP", "Missing Query Parameter for @ActivationRequestParameter", "Activating a page with a required @ActivationRequestParameter, but no matching query parameter, is an error."), -// new Item("DateFieldValidationDemo", "DateField Validation Demo", -// "Use of DateField component when client validation is disabled."), + new Item("DateFieldValidationDemo", "DateField Validation Demo", + "Use of DateField component when client validation is disabled."), new Item("MixinParameters54", "Strict Mixin Parameters", "In the 5.4 DTD, Parameter Mixins must be qualified with the mixin id."), -// new Item("AsyncDemo", "Async Links and Forms Demo", "Async (XHR) Updates without a containing Zone."), + new Item("AsyncDemo", "Async Links and Forms Demo", "Async (XHR) Updates without a containing Zone."), new Item("FormCancelActionDemo", "Form Cancel Action Demo", "FormSupport.addCancel() support"), new Item("AjaxRadioDemo", "Ajax Radio Demo", "Radio components inside an Ajax form"), -// new Item("TimeIntervalDemo", "TimeInterval Demo", "Interval component, based on Moment.js"), + new Item("TimeIntervalDemo", "TimeInterval Demo", "Interval component, based on Moment.js"), -// new Item("LocalDateDemo", "LocalDate Demo", "LocalDate component, based on Moment.js"), + new Item("LocalDateDemo", "LocalDate Demo", "LocalDate component, based on Moment.js"), -// new Item("EmptyIfDemo", "Empty If Demo", "Ensure an empty If can still render."), + new Item("EmptyIfDemo", "Empty If Demo", "Ensure an empty If can still render."), new Item("MissingAssetDemo", "Missing Asset Demo", "Error when injecting an asset that does not exist."),
