Author: thorsten
Date: Mon Jan 21 15:11:12 2008
New Revision: 614043

URL: http://svn.apache.org/viewvc?rev=614043&view=rev
Log:
FOR-733 - wholesite.pdf did not work with the locationmap.
The problem was the order of calls. One have to place the more specific match 
expression before the general (catch all) ones. Otherwise the match will never 
called since processing ends before.

Modified:
    forrest/trunk/main/webapp/locationmap-transforms.xml

Modified: forrest/trunk/main/webapp/locationmap-transforms.xml
URL: 
http://svn.apache.org/viewvc/forrest/trunk/main/webapp/locationmap-transforms.xml?rev=614043&r1=614042&r2=614043&view=diff
==============================================================================
--- forrest/trunk/main/webapp/locationmap-transforms.xml (original)
+++ forrest/trunk/main/webapp/locationmap-transforms.xml Mon Jan 21 15:11:12 
2008
@@ -104,11 +104,11 @@
 <!-- ================================== -->
 <!-- aggregate transforms                 -->
 <!-- ================================== -->
-    <match pattern="transform-aggregate.*.*">
-      <location src="{forrest:forrest.stylesheets}/aggregates/{1}-to-{2}.xsl" 
/>
-    </match>
     <match pattern="transform-aggregate.linkmap.relativized-linkmap">
       <location 
src="{forrest:forrest.stylesheets}/aggregates/relativize-split-linkmap.xsl" />
+    </match>
+    <match pattern="transform-aggregate.*.*">
+      <location src="{forrest:forrest.stylesheets}/aggregates/{1}-to-{2}.xsl" 
/>
     </match>
     <match pattern="transform.old-skinconf.new-skinconf">
       <location src="{forrest:forrest.stylesheets}/upgrade-skinconf.xsl" />