Author: rgardler
Date: Tue Dec 20 15:33:05 2005
New Revision: 358143
URL: http://svn.apache.org/viewcvs?rev=358143&view=rev
Log:
since the raw.xmap can match any request it should be the last pipeline
Modified:
forrest/trunk/main/webapp/sitemap.xmap
Modified: forrest/trunk/main/webapp/sitemap.xmap
URL:
http://svn.apache.org/viewcvs/forrest/trunk/main/webapp/sitemap.xmap?rev=358143&r1=358142&r2=358143&view=diff
==============================================================================
--- forrest/trunk/main/webapp/sitemap.xmap (original)
+++ forrest/trunk/main/webapp/sitemap.xmap Tue Dec 20 15:33:05 2005
@@ -627,14 +627,6 @@
</map:call>
</map:match>
- <map:match type="regexp" pattern="^.+$">
- <map:select type="exists">
- <map:when test="{lm:project.{0}}">
- <map:mount uri-prefix="" src="raw.xmap" check-reload="yes" />
- </map:when>
- </map:select>
- </map:match>
-
<!-- generate faq.fo specially -->
<map:match pattern="**faq.fo">
<map:mount uri-prefix="" src="faq.xmap" check-reload="yes" />
@@ -691,7 +683,16 @@
</map:match>
<map:match pattern="**.ico">
<map:mount uri-prefix="" src="resources.xmap" check-reload="yes" />
- </map:match>
+ </map:match>
+
+ <map:match type="regexp" pattern="^.+$">
+ <map:select type="exists">
+ <map:when test="{lm:project.{0}}">
+ <map:mount uri-prefix="" src="raw.xmap" check-reload="yes" />
+ </map:when>
+ </map:select>
+ </map:match>
+
</map:pipeline>