Repository: wicket Updated Branches: refs/heads/WICKET-6105-java.time aff679fe3 -> 37ddd4d1f
Stub for date-time examples is added Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/37ddd4d1 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/37ddd4d1 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/37ddd4d1 Branch: refs/heads/WICKET-6105-java.time Commit: 37ddd4d1f2d5c8af699e9424b608558d31bfc450 Parents: aff679f Author: Maxim Solodovnik <[email protected]> Authored: Mon Oct 2 18:10:08 2017 +0700 Committer: Maxim Solodovnik <[email protected]> Committed: Mon Oct 2 18:10:08 2017 +0700 ---------------------------------------------------------------------- wicket-examples/src/main/webapp/WEB-INF/web.xml | 29 +++++++++----------- 1 file changed, 13 insertions(+), 16 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/37ddd4d1/wicket-examples/src/main/webapp/WEB-INF/web.xml ---------------------------------------------------------------------- diff --git a/wicket-examples/src/main/webapp/WEB-INF/web.xml b/wicket-examples/src/main/webapp/WEB-INF/web.xml index 67f11f4..e530a05 100644 --- a/wicket-examples/src/main/webapp/WEB-INF/web.xml +++ b/wicket-examples/src/main/webapp/WEB-INF/web.xml @@ -409,15 +409,6 @@ </init-param> </filter> - <filter> - <filter-name>DatesApplication</filter-name> - <filter-class>org.apache.wicket.protocol.http.WicketFilter</filter-class> - <init-param> - <param-name>applicationClassName</param-name> - <param-value>org.apache.wicket.examples.dates.DatesApplication</param-value> - </init-param> - </filter> - <!-- The WicketSesionFilter can be used to provide thread local access to servlets/ JSPs/ etc --> <filter> <filter-name>WicketSessionFilter</filter-name> @@ -750,13 +741,6 @@ </filter-mapping> <filter-mapping> - <filter-name>DatesApplication</filter-name> - <url-pattern>/dates/*</url-pattern> - <dispatcher>REQUEST</dispatcher> - <dispatcher>INCLUDE</dispatcher> - </filter-mapping> - - <filter-mapping> <filter-name>RequestMapperApplication</filter-name> <url-pattern>/mappers/*</url-pattern> <dispatcher>REQUEST</dispatcher> @@ -831,6 +815,19 @@ <url-pattern>/bean-validation/*</url-pattern> </filter-mapping> + <filter> + <filter-name>DateTimeApplication</filter-name> + <filter-class>org.apache.wicket.protocol.http.WicketFilter</filter-class> + <init-param> + <param-name>applicationClassName</param-name> + <param-value>org.apache.wicket.examples.datetime.DateTimeApplication</param-value> + </init-param> + </filter> + <filter-mapping> + <filter-name>DateTimeApplication</filter-name> + <url-pattern>/datetime/*</url-pattern> + </filter-mapping> + <!-- Parameter used by Spring to locate its context configuration used for creating a WebApplicationContext.
