You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jspwiki.apache.org by aj...@apache.org on 2010/02/12 06:06:35 UTC

svn commit: r909236 - in /incubator/jspwiki/trunk/src/WebContent: WEB-INF/web.xml index.jsp

Author: ajaquith
Date: Fri Feb 12 05:06:35 2010
New Revision: 909236

URL: http://svn.apache.org/viewvc?rev=909236&view=rev
Log:
Fixed some minor bugs and a few failing unit tests.

Added:
    incubator/jspwiki/trunk/src/WebContent/index.jsp
Modified:
    incubator/jspwiki/trunk/src/WebContent/WEB-INF/web.xml

Modified: incubator/jspwiki/trunk/src/WebContent/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/WebContent/WEB-INF/web.xml?rev=909236&r1=909235&r2=909236&view=diff
==============================================================================
--- incubator/jspwiki/trunk/src/WebContent/WEB-INF/web.xml (original)
+++ incubator/jspwiki/trunk/src/WebContent/WEB-INF/web.xml Fri Feb 12 05:06:35 2010
@@ -204,10 +204,9 @@
        <url-pattern>/JSON-RPC</url-pattern>
    </servlet-mapping>
 
-   <!-- This means that we don't have to use redirection
-        from index.html anymore.  Yay! -->
+   <!-- Welcome file forwards to Wiki.jsp -->
    <welcome-file-list>
-       <welcome-file>Wiki.jsp</welcome-file>
+       <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
    
    <!-- Error pages -->

Added: incubator/jspwiki/trunk/src/WebContent/index.jsp
URL: http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/WebContent/index.jsp?rev=909236&view=auto
==============================================================================
--- incubator/jspwiki/trunk/src/WebContent/index.jsp (added)
+++ incubator/jspwiki/trunk/src/WebContent/index.jsp Fri Feb 12 05:06:35 2010
@@ -0,0 +1 @@
+<jsp:forward page="Wiki.jsp" />
\ No newline at end of file