|
From: <rv...@us...> - 2010-03-11 14:05:40
|
Revision: 538
http://treebase.svn.sourceforge.net/treebase/?rev=538&view=rev
Author: rvos
Date: 2010-03-11 14:05:33 +0000 (Thu, 11 Mar 2010)
Log Message:
-----------
Now applies the sidebarLeft menu to the urlAPI and the about page, and locates them using the filenameController, so that they have the .html extension as opposed to the .jsp extension.
Modified Paths:
--------------
trunk/treebase-web/src/main/webapp/WEB-INF/decorators.xml
trunk/treebase-web/src/main/webapp/WEB-INF/treebase-servlet.xml
Modified: trunk/treebase-web/src/main/webapp/WEB-INF/decorators.xml
===================================================================
--- trunk/treebase-web/src/main/webapp/WEB-INF/decorators.xml 2010-03-11 14:04:30 UTC (rev 537)
+++ trunk/treebase-web/src/main/webapp/WEB-INF/decorators.xml 2010-03-11 14:05:33 UTC (rev 538)
@@ -7,6 +7,8 @@
<!-- decoration page for the main opening page -->
<decorator name="main" page="mainTemplate.jsp">
<pattern>/home.html</pattern>
+ <pattern>/about.html</pattern>
+ <pattern>/urlAPI.html</pattern>
</decorator>
<!-- decoration page for search pages -->
Modified: trunk/treebase-web/src/main/webapp/WEB-INF/treebase-servlet.xml
===================================================================
--- trunk/treebase-web/src/main/webapp/WEB-INF/treebase-servlet.xml 2010-03-11 14:04:30 UTC (rev 537)
+++ trunk/treebase-web/src/main/webapp/WEB-INF/treebase-servlet.xml 2010-03-11 14:05:33 UTC (rev 538)
@@ -853,9 +853,11 @@
<property name="alwaysUseFullPath" value="true"/>
<property name="mappings">
<props>
- <prop key="/phylows/**">phyloWSController</prop>
+ <prop key="/phylows/**">phyloWSController</prop>
+ <prop key="/about.html">filenameController</prop>
<prop key="/home.html">filenameController</prop>
<prop key="/login.html">filenameController</prop>
+ <prop key="/urlAPI.html">filenameController</prop>
<prop key="/user/viewXML.html">filenameController</prop>
<prop key="/test/phylowidget.html">filenameController</prop>
<prop key="/test/newPhylowidget.html">filenameController</prop>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|