You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by cr...@apache.org on 2005/02/01 02:33:03 UTC

svn commit: r149355 - forrest/branches/forrest_06_branch/src/core/context/sitemap.xmap

Author: crossley
Date: Mon Jan 31 17:33:02 2005
New Revision: 149355

URL: http://svn.apache.org/viewcvs?view=rev&rev=149355
Log:
Move the match for **.lucene to higher in the sitemap. Requests for some filenames
were being intercepted by another match.
Submitted by: Florian G. Haas
Issue: FOR-246

Modified:
    forrest/branches/forrest_06_branch/src/core/context/sitemap.xmap

Modified: forrest/branches/forrest_06_branch/src/core/context/sitemap.xmap
URL: http://svn.apache.org/viewcvs/forrest/branches/forrest_06_branch/src/core/context/sitemap.xmap?view=diff&r1=149354&r2=149355
==============================================================================
--- forrest/branches/forrest_06_branch/src/core/context/sitemap.xmap (original)
+++ forrest/branches/forrest_06_branch/src/core/context/sitemap.xmap Mon Jan 31 17:33:02 2005
@@ -688,6 +688,9 @@
       <map:match pattern="profiler">
         <map:mount uri-prefix="" src="profiler.xmap" check-reload="yes" />
       </map:match>
+      <map:match pattern="**.lucene">
+        <map:mount uri-prefix="" src="search.xmap" check-reload="yes" />
+      </map:match> 
       <map:match pattern="**.js">
         <map:mount uri-prefix="" src="resources.xmap" check-reload="yes" />
       </map:match>
@@ -702,9 +705,6 @@
       </map:match>
      <map:match pattern="**.ico">
         <map:mount uri-prefix="" src="resources.xmap" check-reload="yes" />
-      </map:match> 
-      <map:match pattern="**.lucene">
-        <map:mount uri-prefix="" src="search.xmap" check-reload="yes" />
       </map:match> 
     </map:pipeline>