You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by ka...@apache.org on 2012/04/13 17:44:27 UTC

svn commit: r1325812 - /tapestry/tapestry5/trunk/quickstart/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml

Author: kaosko
Date: Fri Apr 13 15:44:26 2012
New Revision: 1325812

URL: http://svn.apache.org/viewvc?rev=1325812&view=rev
Log:
Configure welcome-file-list to use index page as discussed on the user list thread http://markmail.org/thread/eigftzzlguyylorb

Modified:
    tapestry/tapestry5/trunk/quickstart/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml

Modified: tapestry/tapestry5/trunk/quickstart/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/quickstart/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml?rev=1325812&r1=1325811&r2=1325812&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/quickstart/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml (original)
+++ tapestry/tapestry5/trunk/quickstart/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml Fri Apr 13 15:44:26 2012
@@ -35,5 +35,10 @@ of where to look for pages, components a
         <filter-name>app</filter-name>
         <url-pattern>/*</url-pattern>
     </filter-mapping>
+    
+    <welcome-file-list>
+        <welcome-file>index</welcome-file>
+    </welcome-file-list>
+    
 </web-app>