Modified: forrest/site/docs_0_80/faq.html
URL: 
http://svn.apache.org/viewvc/forrest/site/docs_0_80/faq.html?rev=431463&r1=431462&r2=431463&view=diff
==============================================================================
--- forrest/site/docs_0_80/faq.html (original)
+++ forrest/site/docs_0_80/faq.html Mon Aug 14 16:14:23 2006
@@ -1125,11 +1125,11 @@
 <pre class="code">
 &lt;map:match pattern="old_site/**.html"&gt;
  &lt;map:select type="exists"&gt;
-  &lt;map:when test="{project:content}{0}"&gt;
-    &lt;map:read src="{project:content}/{0}" mime-type="text/html"/&gt;
+  &lt;map:when test="{properties:content}{0}"&gt;
+    &lt;map:read src="{properties:content}/{0}" mime-type="text/html"/&gt;
     &lt;!--
       Use this instead if you want JTidy to clean up your HTML
-      &lt;map:generate type="html" src="{project:content}/{0}" /&gt;
+      &lt;map:generate type="html" src="{properties:content}/{0}" /&gt;
       &lt;map:serialize type="html"/&gt;
     --&gt;
   &lt;/map:when&gt;
@@ -1597,7 +1597,7 @@
  &lt;map:pipelines&gt;
   &lt;map:pipeline&gt;
    &lt;map:match pattern="resolver-*.html"&gt;
-    &lt;map:generate src="{project:content.xdocs}resolver-{1}.xml"/&gt;
+    &lt;map:generate src="{properties:content.xdocs}resolver-{1}.xml"/&gt;
     &lt;map:transform
       
src="file:///usr/share/sgml/docbook/xsl-stylesheets/xhtml/docbook.xsl"/&gt;
     &lt;map:serialize type="xhtml"/&gt;
@@ -1643,14 +1643,14 @@
  &lt;map:pipelines&gt;
   &lt;map:pipeline&gt;
    &lt;map:match pattern="**.xml"&gt;
-    &lt;map:act type="sourcetype" src="{project:content.xdocs}{1}.xml"&gt;
+    &lt;map:act type="sourcetype" src="{properties:content.xdocs}{1}.xml"&gt;
      &lt;map:select type="parameter"&gt;
       &lt;map:parameter name="parameter-selector-test" 
value="{sourcetype}"/&gt;
       &lt;map:when test="docbook-v4.2"&gt;
-       &lt;map:generate src="{project:content.xdocs}{../1}.xml"/&gt;
+       &lt;map:generate src="{properties:content.xdocs}{../1}.xml"/&gt;
        &lt;map:transform
           
src="file:///usr/share/sgml/docbook/xsl-stylesheets/html/docbook.xsl"/&gt;
-       &lt;map:transform src="{forrest:stylesheets}/html-to-document.xsl"/&gt;
+       &lt;map:transform 
src="{forrest:forrest.stylesheets}/html-to-document.xsl"/&gt;
        &lt;map:transform type="idgen"/&gt;
        &lt;map:serialize type="xml-document"/&gt;
       &lt;/map:when&gt;

Modified: forrest/site/docs_0_80/howto/howto-buildPlugin.html
URL: 
http://svn.apache.org/viewvc/forrest/site/docs_0_80/howto/howto-buildPlugin.html?rev=431463&r1=431462&r2=431463&view=diff
==============================================================================
--- forrest/site/docs_0_80/howto/howto-buildPlugin.html (original)
+++ forrest/site/docs_0_80/howto/howto-buildPlugin.html Mon Aug 14 16:14:23 2006
@@ -623,7 +623,7 @@
 </p>
 <p>If you want to use the realpath where the sitemap.xmap of your plugin 
         resides then you need to use 
-        <span class="codefrag">{forrest:plugins}/PLUGIN_NAME</span> instead of 
<span class="codefrag">{realpath:/}</span>.
+        <span class="codefrag">{forrest:forrest.plugins}/PLUGIN_NAME</span> 
instead of <span class="codefrag">{realpath:/}</span>.
         </p>
 <p>See the examples below for more details.</p>
 <a name="N10144"></a><a name="resources"></a>
@@ -826,7 +826,7 @@
 <pre class="code">
     &lt;match pattern="resolvePluginContract.*.**"&gt;
       &lt;select type="exists"&gt;
-        &lt;location 
src="{forrest:plugins}/PLUGIN_NAME/resources/themes/{project:theme}/{1}/{2}.ft" 
/&gt;
+        &lt;location 
src="{forrest:forrest.plugins}/PLUGIN_NAME/resources/themes/{properties:theme}/{1}/{2}.ft"
 /&gt;
       &lt;/select&gt;
     &lt;/match&gt;
         </pre>

Modified: forrest/site/docs_0_80/howto/howto-custom-html-source.html
URL: 
http://svn.apache.org/viewvc/forrest/site/docs_0_80/howto/howto-custom-html-source.html?rev=431463&r1=431462&r2=431463&view=diff
==============================================================================
--- forrest/site/docs_0_80/howto/howto-custom-html-source.html (original)
+++ forrest/site/docs_0_80/howto/howto-custom-html-source.html Mon Aug 14 
16:14:23 2006
@@ -705,12 +705,12 @@
        </p>
 <pre class="code">
 &lt;map:select type="exists"&gt;
-   &lt;map:when test="{project:content.xdocs}mytests/mybad.ehtml"&gt;</pre>
+   &lt;map:when test="{properties:content.xdocs}mytests/mybad.ehtml"&gt;</pre>
 <p>
          we quickly discover that there can't be a file of
          that name in the project-directory.
          <br>
-         (The variable '{project:content.xdocs}' is always replaced with
+         (The variable '{properties:content.xdocs}' is always replaced with
          the name of your project directory that you can change
          in the 'forrest.properties'-file.)
        </p>
@@ -843,7 +843,7 @@
         
 <li>
           
-<span class="codefrag">&lt;map:generate 
src="{project:content.xdocs}{uri}.html" type="html"/&gt;</span>
+<span class="codefrag">&lt;map:generate 
src="{properties:content.xdocs}{uri}.html" type="html"/&gt;</span>
 <br>
             Using the html-generator, Forrest reads the html-document
             from file and uses JTidy to clean up and convert it to xml
@@ -856,7 +856,7 @@
         
 <li>
             
-<span class="codefrag">&lt;map:transform 
src="{forrest:stylesheets}/html2document.xsl"/&gt;</span>
+<span class="codefrag">&lt;map:transform 
src="{forrest:forrest.stylesheets}/html2document.xsl"/&gt;</span>
 <br>
           Using the standard stylesheet 'html2document.xsl', this XHTML is 
           transformed into Forrest standard document format.
@@ -1057,8 +1057,8 @@
 &lt;!--Custom Pipeline for my bad html-pages--&gt;        
 &lt;map:pipeline&gt;
     &lt;map:match pattern="mytest/*.xml"&gt;
-      &lt;map:generate src="{project:content.xdocs}{uri}.html" type="html"/&gt;
-      &lt;map:transform src="{forrest:stylesheets}/html2document.xsl"/&gt;
+      &lt;map:generate src="{properties:content.xdocs}{uri}.html" 
type="html"/&gt;
+      &lt;map:transform 
src="{forrest:forrest.stylesheets}/html2document.xsl"/&gt;
       &lt;map:transform type="idgen"/&gt;
       &lt;map:serialize type="xml-document"/&gt;
     &lt;/map:match&gt;
@@ -1083,11 +1083,11 @@
 &lt;!--Custom Pipeline for my bad html-pages--&gt;        
 &lt;map:pipeline&gt;
     &lt;map:match pattern="mytest/*.xml"&gt;
-      &lt;map:generate src="{project:content.xdocs}{uri}.html" type="html" 
/&gt;
+      &lt;map:generate src="{properties:content.xdocs}{uri}.html" type="html" 
/&gt;
   <strong>
-      &lt;map:transform 
src="{project:resources.stylesheets}/fixMyBadHTML.xsl"/&gt;
+      &lt;map:transform 
src="{properties:resources.stylesheets}/fixMyBadHTML.xsl"/&gt;
   </strong>
-      &lt;map:transform src="{forrest:stylesheets}/html2document.xsl" /&gt;
+      &lt;map:transform src="{forrest:forrest.stylesheets}/html2document.xsl" 
/&gt;
       &lt;map:transform type="idgen" /&gt;
       &lt;map:serialize type="xml-document"/&gt;
     &lt;/map:match&gt;

Modified: forrest/site/docs_0_80/locationmap.html
URL: 
http://svn.apache.org/viewvc/forrest/site/docs_0_80/locationmap.html?rev=431463&r1=431462&r2=431463&view=diff
==============================================================================
--- forrest/site/docs_0_80/locationmap.html (original)
+++ forrest/site/docs_0_80/locationmap.html Mon Aug 14 16:14:23 2006
@@ -445,8 +445,8 @@
 <pre class="code">
 &lt;match pattern="tabs.xml"&gt;
   &lt;select type="exists"&gt;      
-    &lt;location src="{project:content.xdocs}tabs1.xml"/&gt;
-    &lt;location src="{project:content.xdocs}tabs2.xml"/&gt;
+    &lt;location src="{properties:content.xdocs}tabs1.xml"/&gt;
+    &lt;location src="{properties:content.xdocs}tabs2.xml"/&gt;
   &lt;/select&gt;   
 &lt;/match&gt;
     </pre>
@@ -460,7 +460,7 @@
 <div class="section">
 <a name="N1008A"></a><a name="source-via-http"></a>
 <h3 class="underlined_5">Retrieving an XDoc via HTTP</h3>
-<p>Normally files are generated from <span 
class="codefrag">{project:content.xdocs}</span>.
+<p>Normally files are generated from <span 
class="codefrag">{properties:content.xdocs}</span>.
         Using the Locationmap it is possible to make these files come from 
elsewhere.
         This is useful if you want to pull files from different directory 
structures,
         or even remote repositories. For example, the following location match 
@@ -509,7 +509,7 @@
 <pre class="code">
 &lt;map:match pattern="lenya/**.xml"&gt;
   &lt;map:generate type="html" src="{lm:{0}}" /&gt;
-  &lt;map:transform src="{forrest:stylesheets}/html2document.xsl" /&gt;
+  &lt;map:transform src="{forrest:forrest.stylesheets}/html2document.xsl" /&gt;
   &lt;map:serialize type="xml"/&gt;
 &lt;/map:match&gt;
         </pre>

Modified: forrest/site/docs_0_80/sitemap-ref.html
URL: 
http://svn.apache.org/viewvc/forrest/site/docs_0_80/sitemap-ref.html?rev=431463&r1=431462&r2=431463&view=diff
==============================================================================
--- forrest/site/docs_0_80/sitemap-ref.html (original)
+++ forrest/site/docs_0_80/sitemap-ref.html Mon Aug 14 16:14:23 2006
@@ -650,7 +650,7 @@
           to document-v13:</p>
 <pre class="code">
           &lt;map:when test="howto-v13"&gt;
-            &lt;map:transform src="{forrest:stylesheets}/howto2document.xsl" 
/&gt;
+            &lt;map:transform 
src="{forrest:forrest.stylesheets}/howto2document.xsl" /&gt;
           &lt;/map:when&gt;
           </pre>
 <a name="N10175"></a><a name="other_source"></a>
@@ -735,7 +735,7 @@
 2     &lt;map:generate src="cocoon:/{1}{2}.xml"/&gt;
 3     &lt;map:transform type="xinclude"/&gt;
 4     &lt;map:transform type="<a href="#linkrewriting_impl">linkrewriter</a>" 
src="cocoon://{1}linkmap-{2}.pdf"/&gt;
-5     &lt;map:transform src="skins/{forrest:skin}/xslt/fo/document2fo.xsl"&gt;
+5     &lt;map:transform 
src="skins/{forrest:forrest.skin}/xslt/fo/document2fo.xsl"&gt;
 6       &lt;map:parameter name="ctxbasedir" value="{realpath:.}/"/&gt;
 7       &lt;map:parameter name="xmlbasedir" value="content/xdocs/{1}"/&gt;
 8     &lt;/map:transform&gt;

Modified: forrest/site/docs_0_80/upgrading_08.html
URL: 
http://svn.apache.org/viewvc/forrest/site/docs_0_80/upgrading_08.html?rev=431463&r1=431462&r2=431463&view=diff
==============================================================================
--- forrest/site/docs_0_80/upgrading_08.html (original)
+++ forrest/site/docs_0_80/upgrading_08.html Mon Aug 14 16:14:23 2006
@@ -329,6 +329,9 @@
 <a href="#config">Compare configuration</a>
 </li>
 <li>
+<a href="#modules">Forrest configuration simplification</a>
+</li>
+<li>
 <a href="#clean">Run a clean target after upgrade</a>
 </li>
 <li>
@@ -401,9 +404,42 @@
         forrest.properties and skinconf.xml with that of your project.
       </p>
 </div>
+    
+    
+<a name="N1005C"></a><a name="modules"></a>
+<h2 class="underlined_10">Forrest configuration simplification</h2>
+<div class="section">
+<p>
+        
+<strong>FOR-920</strong> Merging the
+        <span class="codefrag">defaults</span> and
+        <span class="codefrag">project</span> modules to the new
+        <span class="codefrag">properties</span> module. You can use it like 
{properties:forrest.home}
+        </p>
+<p> In all custom code you have, </p>
+<ul>
+        
+<li>find:
+          <span class="codefrag">{defaults:</span> and replace with
+          <span class="codefrag">{properties:forrest.</span>
+</li>
+        
+<li>find:
+          <span class="codefrag">{forrest:</span> and replace with
+          <span class="codefrag">{forrest:forrest.</span> or
+          <span class="codefrag">{properties:forrest.</span> (if you do not 
need the
+          ChainMetaModule)</li>
+        
+<li>find:
+          <span class="codefrag">{project:</span> and replace with
+          <span class="codefrag">{properties:</span>
+</li>
+      
+</ul>
+</div>
 
     
-<a name="N1005C"></a><a name="clean"></a>
+<a name="N10094"></a><a name="clean"></a>
 <h2 class="underlined_10">Run a clean target after upgrade</h2>
 <div class="section">
 <p>
@@ -413,7 +449,7 @@
 </div>
 
     
-<a name="N10066"></a><a name="to2to"></a>
+<a name="N1009E"></a><a name="to2to"></a>
 <h2 class="underlined_10">New filename convention for stylesheets</h2>
 <div class="section">
 <p>
@@ -430,7 +466,7 @@
 </div>
 
     
-<a name="N1007A"></a><a name="tips"></a>
+<a name="N100B2"></a><a name="tips"></a>
 <h2 class="underlined_10">General upgrade tips</h2>
 <div class="section">
 <p>
@@ -449,7 +485,7 @@
 </div>
 
     
-<a name="N1008A"></a><a name="To+be+continued..."></a>
+<a name="N100C2"></a><a name="To+be+continued..."></a>
 <h2 class="underlined_10">To be continued...</h2>
 <div class="section">
 <p>...as more issues are discovered/remembered :)  Please send feedback

Modified: forrest/site/docs_0_80/your-project.html
URL: 
http://svn.apache.org/viewvc/forrest/site/docs_0_80/your-project.html?rev=431463&r1=431462&r2=431463&view=diff
==============================================================================
--- forrest/site/docs_0_80/your-project.html (original)
+++ forrest/site/docs_0_80/your-project.html Mon Aug 14 16:14:23 2006
@@ -1256,8 +1256,8 @@
   ...
   <strong>
    &lt;map:match pattern="**download.xml"&gt;
-    &lt;map:generate src="{project:content.xdocs}{1}download.xml" /&gt;
-    &lt;map:transform 
src="{project:resources.stylesheets}/download2document.xsl" /&gt;
+    &lt;map:generate src="{properties:content.xdocs}{1}download.xml" /&gt;
+    &lt;map:transform 
src="{properties:resources.stylesheets}/download2document.xsl" /&gt;
     &lt;map:serialize type="xml"/&gt;
    &lt;/map:match&gt;
 </strong>
@@ -1350,17 +1350,17 @@
  &lt;map:pipelines&gt;
   &lt;map:pipeline&gt;
    &lt;map:match pattern="**download.xml"&gt;
-    &lt;map:generate src="{project:content.xdocs}{1}download.xml" /&gt;
-    &lt;map:act type="sourcetype" 
src="{project:content.xdocs}{1}download.xml"&gt;
+    &lt;map:generate src="{properties:content.xdocs}{1}download.xml" /&gt;
+    &lt;map:act type="sourcetype" 
src="{properties:content.xdocs}{1}download.xml"&gt;
      &lt;map:select type="parameter"&gt;
       &lt;map:parameter name="parameter-selector-test" value="{sourcetype}" 
/&gt;
       &lt;map:when test="download-v1.0"&gt;
        &lt;map:transform
-          src="{project:resources.stylesheets}/download2document.xsl" /&gt;
+          src="{properties:resources.stylesheets}/download2document.xsl" /&gt;
       &lt;/map:when&gt;
       &lt;map:when test="download-v1.1"&gt;
        &lt;map:transform
-          src="{project:resources.stylesheets}/download-v11-2document.xsl" 
/&gt;
+          src="{properties:resources.stylesheets}/download-v11-2document.xsl" 
/&gt;
       &lt;/map:when&gt;
      &lt;/map:select&gt;
     &lt;/map:act&gt;
@@ -1396,7 +1396,7 @@
   <strong>
    &lt;map:match pattern="**weblog.xml"&gt;
     &lt;map:generate src="http://blogs.cocoondev.org/stevenn/index.rss"/&gt;
-    &lt;map:transform src="{forrest:stylesheets}/rss2document.xsl"/&gt;
+    &lt;map:transform src="{forrest:forrest.stylesheets}/rss2document.xsl"/&gt;
     &lt;map:serialize type="xml"/&gt;
    &lt;/map:match&gt;
 </strong>
@@ -1410,7 +1410,7 @@
 <p>You will probably want to copy the core Forrest 
               <span class="codefrag">rss2document.xsl</span> to your project,
               customise it to your needs, and refer to it with
-              <span 
class="codefrag">src="{project:resources.stylesheets}/rss2document.xsl"</span>.
+              <span 
class="codefrag">src="{properties:resources.stylesheets}/rss2document.xsl"</span>.
               Then of course you would add an entry to site.xml to link
               to weblog.html
             </p>

Modified: forrest/site/howto-dev.html
URL: 
http://svn.apache.org/viewvc/forrest/site/howto-dev.html?rev=431463&r1=431462&r2=431463&view=diff
==============================================================================
--- forrest/site/howto-dev.html (original)
+++ forrest/site/howto-dev.html Mon Aug 14 16:14:23 2006
@@ -842,7 +842,7 @@
 <pre class="code">
 ...
 &lt;map:transform type="validation-report"
-  src="{forrest:context}/resources/schema/relaxng/unstable/any.rng"/&gt;
+  
src="{forrest:forrest.context}/resources/schema/relaxng/unstable/any.rng"/&gt;
 ...
 </pre>
 <p>See

Modified: forrest/site/pluginDocs/plugins_0_70/pluginInfrastructure.html
URL: 
http://svn.apache.org/viewvc/forrest/site/pluginDocs/plugins_0_70/pluginInfrastructure.html?rev=431463&r1=431462&r2=431463&view=diff
==============================================================================
--- forrest/site/pluginDocs/plugins_0_70/pluginInfrastructure.html (original)
+++ forrest/site/pluginDocs/plugins_0_70/pluginInfrastructure.html Mon Aug 14 
16:14:23 2006
@@ -372,18 +372,18 @@
 <pre class="code">
 &lt;map:match pattern="abs-menulinks"&gt;
   &lt;map:select type="exists"&gt;
-    &lt;map:when test="{project:content.xdocs}imsmanifest.xml"&gt;
-       &lt;map:generate src="{project:content.xdocs}imsmanifest.xml" /&gt;
+    &lt;map:when test="{properties:content.xdocs}imsmanifest.xml"&gt;
+       &lt;map:generate src="{properties:content.xdocs}imsmanifest.xml" /&gt;
        &lt;map:transform src="resources/stylesheets/imsmanifest2site.xsl"/&gt;
-       &lt;map:transform src="{forrest:stylesheets}/absolutize-linkmap.xsl" 
/&gt;
-       &lt;map:transform 
src="{forrest:stylesheets}/site2site-normalizetabs.xsl" /&gt;
+       &lt;map:transform 
src="{forrest:forrest.stylesheets}/absolutize-linkmap.xsl" /&gt;
+       &lt;map:transform 
src="{forrest:forrest.stylesheets}/site2site-normalizetabs.xsl" /&gt;
      &lt;map:serialize type="xml"/&gt;
    &lt;/map:when&gt;
-   &lt;map:when test="{project:content.xdocs}site.xml"&gt;
-      &lt;map:generate src="{project:content.xdocs}site.xml" /&gt;
-      &lt;map:transform src="{forrest:stylesheets}/absolutize-linkmap.xsl" 
/&gt;
-      &lt;map:transform 
src="{forrest:stylesheets}/site2site-normalizetabs.xsl" /&gt;
-      &lt;map:transform src="{forrest:stylesheets}/normalizehrefs.xsl"/&gt;
+   &lt;map:when test="{properties:content.xdocs}site.xml"&gt;
+      &lt;map:generate src="{properties:content.xdocs}site.xml" /&gt;
+      &lt;map:transform 
src="{forrest:forrest.stylesheets}/absolutize-linkmap.xsl" /&gt;
+      &lt;map:transform 
src="{forrest:forrest.stylesheets}/site2site-normalizetabs.xsl" /&gt;
+      &lt;map:transform 
src="{forrest:forrest.stylesheets}/normalizehrefs.xsl"/&gt;
     &lt;map:serialize type="xml"/&gt;
   &lt;/map:when&gt;
   &lt;/map:select&gt;
@@ -424,7 +424,7 @@
 <pre class="code">
         &lt;map:pipeline internal-only="false"&gt;
            &lt;map:mount uri-prefix=""
-                      src="{forrest:plugins}/sitemap.xmap"
+                      src="{forrest:forrest.plugins}/sitemap.xmap"
                       check-reload="yes"
                       pass-through="true"/&gt;
         &lt;/map:pipeline&gt;

Modified: forrest/site/pluginDocs/plugins_0_80/pluginInfrastructure.html
URL: 
http://svn.apache.org/viewvc/forrest/site/pluginDocs/plugins_0_80/pluginInfrastructure.html?rev=431463&r1=431462&r2=431463&view=diff
==============================================================================
--- forrest/site/pluginDocs/plugins_0_80/pluginInfrastructure.html (original)
+++ forrest/site/pluginDocs/plugins_0_80/pluginInfrastructure.html Mon Aug 14 
16:14:23 2006
@@ -371,18 +371,18 @@
 <pre class="code">
 &lt;map:match pattern="abs-menulinks"&gt;
   &lt;map:select type="exists"&gt;
-    &lt;map:when test="{project:content.xdocs}imsmanifest.xml"&gt;
-       &lt;map:generate src="{project:content.xdocs}imsmanifest.xml" /&gt;
+    &lt;map:when test="{properties:content.xdocs}imsmanifest.xml"&gt;
+       &lt;map:generate src="{properties:content.xdocs}imsmanifest.xml" /&gt;
        &lt;map:transform src="resources/stylesheets/imsmanifest2site.xsl"/&gt;
-       &lt;map:transform src="{forrest:stylesheets}/absolutize-linkmap.xsl" 
/&gt;
-       &lt;map:transform 
src="{forrest:stylesheets}/site2site-normalizetabs.xsl" /&gt;
+       &lt;map:transform 
src="{forrest:forrest.stylesheets}/absolutize-linkmap.xsl" /&gt;
+       &lt;map:transform 
src="{forrest:forrest.stylesheets}/site2site-normalizetabs.xsl" /&gt;
      &lt;map:serialize type="xml"/&gt;
    &lt;/map:when&gt;
-   &lt;map:when test="{project:content.xdocs}site.xml"&gt;
-      &lt;map:generate src="{project:content.xdocs}site.xml" /&gt;
-      &lt;map:transform src="{forrest:stylesheets}/absolutize-linkmap.xsl" 
/&gt;
-      &lt;map:transform 
src="{forrest:stylesheets}/site2site-normalizetabs.xsl" /&gt;
-      &lt;map:transform src="{forrest:stylesheets}/normalizehrefs.xsl"/&gt;
+   &lt;map:when test="{properties:content.xdocs}site.xml"&gt;
+      &lt;map:generate src="{properties:content.xdocs}site.xml" /&gt;
+      &lt;map:transform 
src="{forrest:forrest.stylesheets}/absolutize-linkmap.xsl" /&gt;
+      &lt;map:transform 
src="{forrest:forrest.stylesheets}/site2site-normalizetabs.xsl" /&gt;
+      &lt;map:transform 
src="{forrest:forrest.stylesheets}/normalizehrefs.xsl"/&gt;
     &lt;map:serialize type="xml"/&gt;
   &lt;/map:when&gt;
   &lt;/map:select&gt;
@@ -422,7 +422,7 @@
 <pre class="code">
         &lt;map:pipeline internal-only="false"&gt;
            &lt;map:mount uri-prefix=""
-                      src="{forrest:plugins}/sitemap.xmap"
+                      src="{forrest:forrest.plugins}/sitemap.xmap"
                       check-reload="yes"
                       pass-through="true"/&gt;
         &lt;/map:pipeline&gt;

Modified: forrest/site/skin/images/rc-b-l-15-1body-2menu-3menu.png
URL: 
http://svn.apache.org/viewvc/forrest/site/skin/images/rc-b-l-15-1body-2menu-3menu.png?rev=431463&r1=431462&r2=431463&view=diff
==============================================================================
Binary files - no diff available.

Modified: forrest/site/skin/images/rc-b-r-15-1body-2menu-3menu.png
URL: 
http://svn.apache.org/viewvc/forrest/site/skin/images/rc-b-r-15-1body-2menu-3menu.png?rev=431463&r1=431462&r2=431463&view=diff
==============================================================================
Binary files - no diff available.

Modified: 
forrest/site/skin/images/rc-b-r-5-1header-2tab-selected-3tab-selected.png
URL: 
http://svn.apache.org/viewvc/forrest/site/skin/images/rc-b-r-5-1header-2tab-selected-3tab-selected.png?rev=431463&r1=431462&r2=431463&view=diff
==============================================================================
Binary files - no diff available.

Modified: forrest/site/skin/images/rc-t-l-5-1header-2searchbox-3searchbox.png
URL: 
http://svn.apache.org/viewvc/forrest/site/skin/images/rc-t-l-5-1header-2searchbox-3searchbox.png?rev=431463&r1=431462&r2=431463&view=diff
==============================================================================
Binary files - no diff available.

Modified: 
forrest/site/skin/images/rc-t-l-5-1header-2tab-selected-3tab-selected.png
URL: 
http://svn.apache.org/viewvc/forrest/site/skin/images/rc-t-l-5-1header-2tab-selected-3tab-selected.png?rev=431463&r1=431462&r2=431463&view=diff
==============================================================================
Binary files - no diff available.

Modified: 
forrest/site/skin/images/rc-t-l-5-1header-2tab-unselected-3tab-unselected.png
URL: 
http://svn.apache.org/viewvc/forrest/site/skin/images/rc-t-l-5-1header-2tab-unselected-3tab-unselected.png?rev=431463&r1=431462&r2=431463&view=diff
==============================================================================
Binary files - no diff available.

Modified: forrest/site/skin/images/rc-t-r-15-1body-2menu-3menu.png
URL: 
http://svn.apache.org/viewvc/forrest/site/skin/images/rc-t-r-15-1body-2menu-3menu.png?rev=431463&r1=431462&r2=431463&view=diff
==============================================================================
Binary files - no diff available.

Modified: forrest/site/skin/images/rc-t-r-5-1header-2searchbox-3searchbox.png
URL: 
http://svn.apache.org/viewvc/forrest/site/skin/images/rc-t-r-5-1header-2searchbox-3searchbox.png?rev=431463&r1=431462&r2=431463&view=diff
==============================================================================
Binary files - no diff available.

Modified: 
forrest/site/skin/images/rc-t-r-5-1header-2tab-selected-3tab-selected.png
URL: 
http://svn.apache.org/viewvc/forrest/site/skin/images/rc-t-r-5-1header-2tab-selected-3tab-selected.png?rev=431463&r1=431462&r2=431463&view=diff
==============================================================================
Binary files - no diff available.

Modified: 
forrest/site/skin/images/rc-t-r-5-1header-2tab-unselected-3tab-unselected.png
URL: 
http://svn.apache.org/viewvc/forrest/site/skin/images/rc-t-r-5-1header-2tab-unselected-3tab-unselected.png?rev=431463&r1=431462&r2=431463&view=diff
==============================================================================
Binary files - no diff available.

Modified: forrest/site/skin/images/rc-t-r-50-1body-2menu-3menu.png
URL: 
http://svn.apache.org/viewvc/forrest/site/skin/images/rc-t-r-50-1body-2menu-3menu.png?rev=431463&r1=431462&r2=431463&view=diff
==============================================================================
Binary files - no diff available.

Modified: forrest/site/skin/images/rc-t-r-50-1body-2menu-3menu.test.png
URL: 
http://svn.apache.org/viewvc/forrest/site/skin/images/rc-t-r-50-1body-2menu-3menu.test.png?rev=431463&r1=431462&r2=431463&view=diff
==============================================================================
Binary files - no diff available.