Author: almaw Date: Sun Jun 10 14:11:41 2007 New Revision: 545942 URL: http://svn.apache.org/viewvc?view=rev&rev=545942 Log: WICKET-586 - ditch filterPath.
Modified: incubator/wicket/trunk/jdk-1.4/wicket-quickstart/src/main/webapp/WEB-INF/web.xml Modified: incubator/wicket/trunk/jdk-1.4/wicket-quickstart/src/main/webapp/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.4/wicket-quickstart/src/main/webapp/WEB-INF/web.xml?view=diff&rev=545942&r1=545941&r2=545942 ============================================================================== --- incubator/wicket/trunk/jdk-1.4/wicket-quickstart/src/main/webapp/WEB-INF/web.xml (original) +++ incubator/wicket/trunk/jdk-1.4/wicket-quickstart/src/main/webapp/WEB-INF/web.xml Sun Jun 10 14:11:41 2007 @@ -20,7 +20,7 @@ "http://java.sun.com/dtd/web-app_2_3.dtd"> <web-app> - <display-name>Wicket QuickStart</display-name> + <display-name>Wicket QuickStart</display-name> <!-- There are three means to configure Wickets configuration mode and they are @@ -32,20 +32,16 @@ or "deployment". If no configuration is found, "deployment" is the default. --> <context-param> - <param-name>configuration</param-name> - <param-value>development</param-value> + <param-name>configuration</param-name> + <param-value>development</param-value> </context-param> <filter> <filter-name>quickstart</filter-name> <filter-class>org.apache.wicket.protocol.http.WicketFilter</filter-class> <init-param> - <param-name>applicationClassName</param-name> - <param-value>org.apache.wicket.quickstart.QuickStartApplication</param-value> - </init-param> - <init-param> - <param-name>filterPath</param-name> - <param-value>app</param-value> + <param-name>applicationClassName</param-name> + <param-value>org.apache.wicket.quickstart.QuickStartApplication</param-value> </init-param> </filter>