You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by an...@apache.org on 2007/11/16 16:12:50 UTC

svn commit: r595691 [9/28] - in /lenya/sandbox/pubs/docu: config/ content/authoring/ content/authoring/0033e320-8731-11dc-ae46-9e7b5d14892d/ content/authoring/018a9980-8731-11dc-ae46-9e7b5d14892d/ content/authoring/02f9e0f0-8731-11dc-ae46-9e7b5d14892d/...

Added: lenya/sandbox/pubs/docu/content/authoring/57adfdc0-8731-11dc-ae46-9e7b5d14892d/en.1195221904476.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/57adfdc0-8731-11dc-ae46-9e7b5d14892d/en.1195221904476.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/57adfdc0-8731-11dc-ae46-9e7b5d14892d/en.1195221904476.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/57adfdc0-8731-11dc-ae46-9e7b5d14892d/en.1195221904476.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,116 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2004 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- $Id: delete.xml 55543 2004-10-26 00:14:59Z gregor $ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+
+<document>
+	<header>
+		<title>Delete</title>
+		
+		
+		
+	</header>
+
+  <body>
+	
+    <section>
+	  <title>Introduction</title>
+      <p>The delete operation corresponds to a move operation from the authoring area to the trash</p>
+    </section>
+	  
+    <section>
+	  <title>Implementation</title>
+      <p>Similar to the operation <a href="move.html">move</a>
+</p>  
+    </section>
+	  
+    <section>
+	  <title>Parameters</title>
+      <p>Required parameters:</p>
+      <ul>
+        <li>the area for the source document</li>
+        <li>the document id for the source document</li>
+        <li>the task id</li>
+      </ul>
+    </section>
+
+    <section>
+	  <title>usecase</title>
+      <section>
+        <title>Delete screen</title>
+        <p>URL :</p>
+ 	    <source xml:space="preserve"><![CDATA[{document-URL}?lenya.usecase=delete&lenya.step=showscreen]]></source> 
+	    <p>usecase sitemap:</p>
+        <source xml:space="preserve"><![CDATA[
+          <map:match pattern="delete" type="usecase">
+            <map:match pattern="showscreen" type="step">
+              <map:generate src="content/info/delete.xsp" type="serverpages"/>
+              <map:transform src="xslt/info/delete.xsl">
+                <map:parameter name="use-request-parameters" value="true"/>
+              </map:transform>
+              <map:call resource="style-cms-page"/>
+            </map:match>
+          </map:match>
+          ]]></source>
+	    <p>The parameters for the source are get with the serverpage through the page envelope input module. 
+	    The destination area is set to trash in the stylesheet.
+	    A form (build with the xslt transformation) sends then the parameters as request parameters with the new URL.</p>
+      </section>  
+      <section>
+        <title>Delete confirmation</title>
+        <p>URL :</p>
+	    <source xml:space="preserve"><![CDATA[{document-URL}?lenya.usecase=delete&lenya.step=delete&...{source parameters}]]></source> 
+	    <p>usecase sitemap:</p>
+	    <source xml:space="preserve"><![CDATA[
+          <map:match pattern="delete" type="usecase">
+            <map:match pattern="delete" type="step">
+              <map:act type="task">
+                <map:redirect-to session="true" uri="{request-param:parenturl}"/>
+              </map:act>
+            </map:match>
+          </map:match>
+        ]]></source>
+        <p>The action org.apache.lenya.cms.cocoon.acting.TaskAction calls the execution of the ant task.</p> 
+      </section>  
+    </section>
+
+    <section>
+	  <title>Ant Task </title>
+	  <p>The ant target <code>deleteDocument</code> is in the publication :</p>
+	  <source xml:space="preserve">{publication}/config/tasks/targets.xml</source>
+      <p>and depends on the different targets </p>
+      <ul>
+        <li>
+<code>firstareaproperties</code>, to set the needed properties dependent of the source area</li>
+        <li>
+<code>secareaproperties</code>, to set the needed properties dependent of the destination area</li>
+        <li>
+<code>newarchivedocumentid</code>, to compute the unique destination id from the source document id (Same logic like for the archive)</li>
+        <li>
+<code>firstdocumentpath</code>, to compute the directory of the contents for the source (Needed for the revisions and the rcml files)</li>
+        <li>
+<code>secdocumentpath</code>, to compute the directory of the contents for the destination (Needed for the revisions and the rcml files)</li>
+        <li>
+<code>setIdentifier</code>, to save the source document id (in the dc:identifier). Necessary to be able to restore later the document</li>
+        <li>
+<code>move</code>, to execute the different move operations</li>
+      </ul>
+      <p>More about ant task, see the documentation <a href="../tasks/anttask.html">Ant Task</a> and the <a href="../../apidocs/1.2/index.html">Javadoc</a>
+</p>
+    </section>
+
+  </body>
+</document>

Added: lenya/sandbox/pubs/docu/content/authoring/57adfdc0-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221904476.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/57adfdc0-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221904476.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/57adfdc0-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221904476.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/57adfdc0-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221904476.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata xmlns="http://apache.org/lenya/metadata/1.0">
+<element-set namespace="http://purl.org/dc/elements/1.1/">
+<element key="title">
+<value>Delete</value>
+</element>
+</element-set>
+<element-set namespace="http://apache.org/lenya/metadata/document/1.0">
+<element key="extension">
+<value>xml</value>
+</element>
+<element key="mimeType">
+<value>application/xml</value>
+</element>
+<element key="resourceType">
+<value>forrestDocument20</value>
+</element>
+<element key="contentType">
+<value>xml</value>
+</element>
+</element-set>
+</metadata>

Modified: lenya/sandbox/pubs/docu/content/authoring/57adfdc0-8731-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/57adfdc0-8731-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/57adfdc0-8731-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/57adfdc0-8731-11dc-ae46-9e7b5d14892d/en.rcml Fri Nov 16 07:11:58 2007
@@ -1,5 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <XPSRevisionControl xmlns="">
+<CheckIn backup="true" identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221904476" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221883839"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910789490" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910762398"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781619844" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/58e19bc0-8731-11dc-ae46-9e7b5d14892d/en.1195221898442.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/58e19bc0-8731-11dc-ae46-9e7b5d14892d/en.1195221898442.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/58e19bc0-8731-11dc-ae46-9e7b5d14892d/en.1195221898442.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/58e19bc0-8731-11dc-ae46-9e7b5d14892d/en.1195221898442.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,97 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2004 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- $Id: deletetrash.xml 55543 2004-10-26 00:14:59Z gregor $ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+
+<document>
+	<header>
+		<title>Delete Trash</title>
+		
+		
+		
+	</header>
+
+  <body>
+	
+    <section>
+	  <title>Introduction</title>
+	  <p>We have to :</p>
+	  <ul>
+	    <li>delete all the files in the trash directory</li>
+	    <li>to reset the trash sitetree</li>
+	  </ul>
+    </section>
+	  
+    <section>
+	  <title>Parameters</title>
+      <p>Required parameters:</p>
+      <ul>
+        <li>the task id </li>
+      </ul>
+    </section>
+
+    <section>
+	  <title>Implementation</title>
+	  <p>It is implemented in a sequence of usecases to get all needed parameters, and uses the task concept to execute some ant task</p>
+    </section>
+	  
+    <section>
+	  <title>usecase</title>
+      <section>
+        <title>Delete Trash screen</title>
+        <p>URL :</p>
+ 	    <source xml:space="preserve"><![CDATA[{document-URL}?lenya.usecase=deleteTrash&lenya.step=showscreen]]></source> 
+	    <p>usecase sitemap:</p>
+	      <source xml:space="preserve"><![CDATA[
+            <map:match pattern="deleteTrash" type="usecase">
+              <map:match pattern="showscreen" type="step">
+              <map:generate src="content/admin/content/deleteTrash.xsp" type="serverpages"/>
+              <map:transform src="xslt/admin/content/deleteTrash.xsl"/>
+              <map:call resource="style-cms-page"/>
+            </map:match>
+          </map:match>
+          ]]></source>
+	    <p>The required parameters are get in the serverpage. 
+	    A form (build with the xslt transformation) sends then the parameters as request parameters with the new URL.</p>
+      </section>  
+      <section>
+        <title>Delete Trash confirmation</title>
+        <p>URL :</p>
+	    <source xml:space="preserve"><![CDATA[{document-URL}?lenya.usecase=deleteTrash&lenya.step=deleteTrash&...{source parameters}]]></source> 
+	    <p>usecase sitemap:</p>
+	    <source xml:space="preserve"><![CDATA[
+          <map:match pattern="deleteTrash" type="usecase">
+            <map:match pattern="deleteTrash" type="step">
+              <map:act type="task">
+                <map:redirect-to session="true" uri="{request:requestURI}"/>
+              </map:act>
+            </map:match>
+          </map:match>
+        ]]></source>
+        <p>The action org.apache.lenya.cms.cocoon.acting.TaskAction calls the execution of the ant task.</p> 
+      </section>  
+    </section>
+
+    <section>
+	  <title>Ant Task </title>
+	  <p>The ant target <code>deleteTrash</code> is in the publication :</p>
+	  <source xml:space="preserve">{publication}/config/tasks/targets.xml</source>
+      <p>More about ant task, see the documentation <a href="../tasks/anttask.html">Ant Task</a> and the <a href="../../../apidocs/1.2/index.html">Javadoc</a>
+</p>
+    </section>
+
+  </body>
+</document>

Added: lenya/sandbox/pubs/docu/content/authoring/58e19bc0-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221898442.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/58e19bc0-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221898442.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/58e19bc0-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221898442.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/58e19bc0-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221898442.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata xmlns="http://apache.org/lenya/metadata/1.0">
+<element-set namespace="http://purl.org/dc/elements/1.1/">
+<element key="title">
+<value>Delete the trash</value>
+</element>
+</element-set>
+<element-set namespace="http://apache.org/lenya/metadata/document/1.0">
+<element key="extension">
+<value>xml</value>
+</element>
+<element key="mimeType">
+<value>application/xml</value>
+</element>
+<element key="resourceType">
+<value>forrestDocument20</value>
+</element>
+<element key="contentType">
+<value>xml</value>
+</element>
+</element-set>
+</metadata>

Modified: lenya/sandbox/pubs/docu/content/authoring/58e19bc0-8731-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/58e19bc0-8731-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/58e19bc0-8731-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/58e19bc0-8731-11dc-ae46-9e7b5d14892d/en.rcml Fri Nov 16 07:11:58 2007
@@ -1,5 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <XPSRevisionControl xmlns="">
+<CheckIn backup="true" identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221898442" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221887623"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910791057" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910764702"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781622705" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/5a2e6710-8731-11dc-ae46-9e7b5d14892d/en.1195221906444.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5a2e6710-8731-11dc-ae46-9e7b5d14892d/en.1195221906444.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5a2e6710-8731-11dc-ae46-9e7b5d14892d/en.1195221906444.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/5a2e6710-8731-11dc-ae46-9e7b5d14892d/en.1195221906444.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,180 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2004 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- $Id: move.xml 55543 2004-10-26 00:14:59Z gregor $ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+
+<document>
+	<header>
+		<title>Move a document</title>
+		
+		
+		
+	</header>
+
+  <body>
+	
+    <section>
+	  <title>Introduction</title>
+      <p>The move operation is performed on the subtree corresponding to a given document id and a given area.</p>
+	  <p>We have to :</p>
+	  <ul>
+	    <li>compute a new id (to not overwrite an already existing file)</li>
+	    <li>move the contents (xml file)</li>
+	    <li>move the resources</li>
+        <li>move the policies</li> 
+        <li>move the revisions</li> 
+        <li>move the rcml files</li> 
+	    <li>move the workflow for the new documents</li>
+	    <li>move the node (with the subtree) in the site tree</li>
+	  </ul>
+    </section>
+	  
+    <section>
+	  <title>Implementation</title>
+	  <p>It is implemented in a sequence of usecases to get all needed parameters, and uses the task concept to execute some ant task</p>
+	  <p>To perform the different operations on the desired subtree, we used the visitor pattern</p>
+    </section>
+	  
+    <section>
+	  <title>Parameters</title>
+      <p>Required parameters:</p>
+      <ul>
+        <li>the area for the source document</li>
+        <li>the document id for the source document</li>
+        <li>the area for the destination document</li>
+        <li>the document id for the destination document</li>
+        <li>the task id</li>
+      </ul>
+    </section>
+
+    <section>
+	  <title>usecase</title>
+      <p>They are implemented in the usecase sitmap (core)</p> 
+      <section>
+        <title>Cut screen</title>
+        <p>URL :</p>
+ 	    <source xml:space="preserve"><![CDATA[{document-URL}?lenya.usecase=cut&lenya.step=showscreen]]></source> 
+	    <p>usecase sitemap:</p>
+        <source xml:space="preserve"><![CDATA[
+          <map:match pattern="cut" type="usecase">
+            <map:match pattern="showscreen" type="step">
+              <map:generate src="content/info/cut.xsp" type="serverpages"/>
+              <map:transform src="xslt/info/cut.xsl"/>
+              <map:call resource="style-cms-page"/>
+            </map:match>
+          </map:match>
+        ]]></source>
+	    <p>The parameters for the source are get with the serverpage through the page envelope input module. 
+	    A form (build with the xslt transformation) sends then the parameters as request parameters with the new URL.</p>
+      </section>  
+      <section>
+        <title>Cut confirmation</title>
+        <p>URL :</p>
+	    <source xml:space="preserve"><![CDATA[{document-URL}?lenya.usecase=cut&lenya.step=cut&...{source parameters}]]></source> 
+	    <p>usecase sitemap:</p>
+	    <source xml:space="preserve"><![CDATA[
+          <map:match pattern="cut" type="usecase">
+            <map:match pattern="cut" type="step">
+              <map:act type="session-propagator">
+                <map:parameter name="org.apache.lenya.cms.info.firstdocid" value="{request-param:documentid}"/>
+                <map:parameter name="org.apache.lenya.cms.info.firstarea" value="{request-param:area}"/>
+                <map:parameter name="org.apache.lenya.cms.info.cutdocumentid" value="{request-param:documentid}"/>
+                <map:parameter name="org.apache.lenya.cms.info.action" value="{request-param:action}"/>
+                <map:redirect-to uri="{request:requestURI}"/>
+              </map:act>
+            </map:match>
+          </map:match>
+        ]]></source>
+	    <p>The source parameters are saved in the session with the org.apache.cocoon.acting.SessionPropagatorAction</p> 
+        <p>The parameter <strong>org.apache.lenya.cms.info.cutdocumentid</strong> is used to change the representation of the cutted node in the info sitetree.</p>
+      </section>  
+      <section>
+        <title>Paste screen</title>
+    	<p>URL :</p>
+	    <source xml:space="preserve"><![CDATA[{document-URL}?lenya.usecase=paste&lenya.step=showscreen]]></source> 
+	    <p>usecase sitemap (Core):</p>
+	    <source xml:space="preserve"><![CDATA[
+          <map:match pattern="paste" type="usecase">
+            <map:match pattern="showscreen" type="step">
+              <map:generate src="content/info/paste.xsp" type="serverpages"/>
+              <map:transform src="xslt/info/paste.xsl"/>
+              <map:call resource="style-cms-page"/>
+            </map:match>
+          </map:match>
+        ]]></source>
+	    <p>The parameters for the destination are get with the serverpage through the page envelope input module. 
+	    Parameters needed by the access controller are also get with this serverpage through the access control input module.
+	    The parameters for the source are get from the session with the serverpage .
+	    A form (build with the xslt transformation) sends then the parameters as request parameters with the new URL.</p>
+      </section>  
+      <section>
+        <title>Paste confirmation</title>
+  	    <p>URL :</p>
+	    <source xml:space="preserve"><![CDATA[{document-URL}?lenya.usecase=paste&lenya.step=paste&...{parameters}]]></source> 
+	    <p>usecase sitemap (Core):</p>
+	    <source xml:space="preserve"><![CDATA[
+          <map:match pattern="paste" type="usecase">
+            <map:match pattern="paste" type="step">
+              <map:select type="request-parameter">
+                <map:parameter name="parameter-name" value="task-id"/>  
+                <map:when test="moveDocument">
+                  <map:act type="session-propagator">
+                    <map:parameter name="org.apache.lenya.cms.info.firstdocid" value=""/>
+                    <map:parameter name="org.apache.lenya.cms.info.cutdocumentid" value=""/>
+                  </map:act>
+                </map:when>
+                <map:otherwise>
+                  <map:act type="session-propagator">
+                    <map:parameter name="org.apache.lenya.cms.info.cutdocumentid" value=""/>
+                  </map:act>
+                </map:otherwise>
+              </map:select>
+              <map:act type="task">
+                <map:redirect-to session="true" uri="{request:requestURI}"/>
+              </map:act>
+            </map:match>
+          </map:match>
+        ]]></source>
+	    <p>The action org.apache.lenya.cms.cocoon.acting.TaskAction calls the execution of the ant task.</p> 
+        <p>The parameter <strong>org.apache.lenya.cms.info.cutdocumentid</strong> is set to "", because the cutted node is no more present.</p>
+      </section>  
+    </section>
+
+    <section>
+	  <title>Ant Task </title>
+	  <p>The ant target <code>moveDocument</code> is in the publication :</p>
+	  <source xml:space="preserve">{publication}/config/tasks/targets.xml</source>
+      <p>and depends on the different targets </p>
+      <ul>
+        <li>
+<code>firstareaproperties</code>, to set the needed properties dependent of the source area</li>
+        <li>
+<code>secareaproperties</code>, to set the needed properties dependent of the destination area</li>
+        <li>
+<code>newcopydocumentid</code>, to compute the unique destination id</li>
+        <li>
+<code>firstdocumentpath</code>, to compute the directory of the source contents (Needed for the revisions and the rcml files)</li>
+        <li>
+<code>secdocumentpath</code>, to compute the directory of the destination contents (Needed for the revisions and the rcml files)</li>
+        <li>
+<code>move</code>, to execute the different move operations</li>
+      </ul>
+      <p>More about ant task, see the documentation <a href="../tasks/anttask.html">Ant Task</a> and the <a href="../../apidocs/1.2/index.html">Javadoc</a>
+</p>
+    </section>
+
+  </body>
+</document>

Added: lenya/sandbox/pubs/docu/content/authoring/5a2e6710-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221906444.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5a2e6710-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221906444.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5a2e6710-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221906444.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/5a2e6710-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221906444.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata xmlns="http://apache.org/lenya/metadata/1.0">
+<element-set namespace="http://purl.org/dc/elements/1.1/">
+<element key="title">
+<value>Move</value>
+</element>
+</element-set>
+<element-set namespace="http://apache.org/lenya/metadata/document/1.0">
+<element key="extension">
+<value>xml</value>
+</element>
+<element key="mimeType">
+<value>application/xml</value>
+</element>
+<element key="resourceType">
+<value>forrestDocument20</value>
+</element>
+<element key="contentType">
+<value>xml</value>
+</element>
+</element-set>
+</metadata>

Modified: lenya/sandbox/pubs/docu/content/authoring/5a2e6710-8731-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5a2e6710-8731-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5a2e6710-8731-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/5a2e6710-8731-11dc-ae46-9e7b5d14892d/en.rcml Fri Nov 16 07:11:58 2007
@@ -1,5 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <XPSRevisionControl xmlns="">
+<CheckIn backup="true" identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221906444" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221885664"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910782514" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910767617"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781623718" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/5b6623c0-8731-11dc-ae46-9e7b5d14892d/en.1195221896752.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5b6623c0-8731-11dc-ae46-9e7b5d14892d/en.1195221896752.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5b6623c0-8731-11dc-ae46-9e7b5d14892d/en.1195221896752.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/5b6623c0-8731-11dc-ae46-9e7b5d14892d/en.1195221896752.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,80 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2004 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- $Id: moveupdown.xml 55543 2004-10-26 00:14:59Z gregor $ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+
+<document>
+	<header>
+		<title>Move up/down</title>
+		
+		
+		
+	</header>
+
+  <body>
+	
+    <section>
+	  <title>Introduction</title>
+      <p>To move up or down a node in the sitetree</p> 
+    </section>
+	  
+    <section>
+	  <title>Implementation</title>
+	  <p>It uses the task concept to execute some ant task</p>
+    </section>
+	  
+    <section>
+	  <title>Parameters</title>
+	  <p>The parameters are string-value parameters</p>
+      <p>Required parameters:</p>
+      <ul>
+        <li>the document id</li>
+        <li>the direction (up or down)</li>
+        <li>the task id</li>
+      </ul>
+    </section>
+
+    <section>
+	  <title>usecase</title>
+      <p>URL :</p>
+      <source xml:space="preserve"><![CDATA[{document-URL}?properties.movenode.direction=up&lenya.usecase=move-node&lenya.step=move-node]]></source> 
+      <p>usecase sitemap:</p>
+        <source xml:space="preserve"><![CDATA[
+        <map:match pattern="move-node" type="usecase">
+          <map:match pattern="move-node" type="step">
+            <map:act type="task">
+              <map:parameter name="task-id" value="movenode"/>
+              <map:parameter name="properties.movenode.documentid" value="{page-envelope:document-id}"/>
+              <map:redirect-to session="true" uri="{request:requestURI}"/>
+            </map:act>
+          </map:match>
+        </map:match>
+        ]]></source>
+      <p>The parameter for the direction is a request parameter in the URL (fom the menu). The task id is set in the sitemap and
+	     the document id is get through the page envelope. </p> 
+	  <p>The action org.apache.lenya.cms.cocoon.acting.TaskAction calls the execution of the ant task.</p> 
+    </section>  
+
+    <section>
+	  <title>Ant Task </title>
+	  <p>The ant target <code>movenode</code> is in the publication :</p>
+	  <source xml:space="preserve">{publication}/config/tasks/targets.xml</source>
+      <p>More about ant task, see the documentation <a href="../tasks/anttask.html">Ant Task</a> and the <a href="../../../apidocs/1.2/index.html">Javadoc</a>
+</p>
+    </section>
+
+  </body>
+</document>

Added: lenya/sandbox/pubs/docu/content/authoring/5b6623c0-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221896752.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5b6623c0-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221896752.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5b6623c0-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221896752.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/5b6623c0-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221896752.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata xmlns="http://apache.org/lenya/metadata/1.0">
+<element-set namespace="http://purl.org/dc/elements/1.1/">
+<element key="title">
+<value>Move Up/Down</value>
+</element>
+</element-set>
+<element-set namespace="http://apache.org/lenya/metadata/document/1.0">
+<element key="extension">
+<value>xml</value>
+</element>
+<element key="mimeType">
+<value>application/xml</value>
+</element>
+<element key="resourceType">
+<value>forrestDocument20</value>
+</element>
+<element key="contentType">
+<value>xml</value>
+</element>
+</element-set>
+</metadata>

Modified: lenya/sandbox/pubs/docu/content/authoring/5b6623c0-8731-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5b6623c0-8731-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5b6623c0-8731-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/5b6623c0-8731-11dc-ae46-9e7b5d14892d/en.rcml Fri Nov 16 07:11:58 2007
@@ -1,5 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <XPSRevisionControl xmlns="">
+<CheckIn backup="true" identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221896752" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221884347"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910790925" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910764238"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781616535" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/5c9b9680-8731-11dc-ae46-9e7b5d14892d/en.1195221911352.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5c9b9680-8731-11dc-ae46-9e7b5d14892d/en.1195221911352.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5c9b9680-8731-11dc-ae46-9e7b5d14892d/en.1195221911352.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/5c9b9680-8731-11dc-ae46-9e7b5d14892d/en.1195221911352.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,115 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2004 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- $Id: rename.xml 55543 2004-10-26 00:14:59Z gregor $ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+
+<document>
+	<header>
+		<title>Rename</title>
+		
+		
+		
+	</header>
+
+  <body>
+	
+    <section>
+	  <title>Introduction</title>
+      <p>The rename operation corresponds to a move operation</p>
+    </section>
+	  
+    <section>
+	  <title>Implementation</title>
+      <p>Similar to the operation <a href="move.html">move</a>
+</p>  
+    </section>
+	  
+    <section>
+	  <title>Parameters</title>
+	  <p>The parameters are string-value parameters</p>
+      <p>Required parameters:</p>
+      <ul>
+        <li>the area for the source document</li>
+        <li>the document id for the source document</li>
+        <li>the area for the destination document</li>
+        <li>the name for the destination document</li>
+        <li>the task id</li>
+      </ul>
+    </section>
+
+    <section>
+	  <title>usecase</title>
+      <p>They are implemented in the usecase sitmap (core)</p> 
+      <section>
+        <title>Rename screen</title>
+        <p>URL :</p>
+ 	    <source xml:space="preserve"><![CDATA[{document-URL}?lenya.usecase=rename&lenya.step=showscreen]]></source> 
+	    <p>usecase sitemap:</p>
+	      <source xml:space="preserve"><![CDATA[
+            <map:match pattern="rename" type="usecase">
+              <map:match pattern="showscreen" type="step">
+                <map:generate src="content/info/rename.xsp" type="serverpages"/>
+                <map:transform src="xslt/info/rename.xsl"/>
+                <map:call resource="style-cms-page"/>
+              </map:match>
+           </map:match>
+          ]]></source>
+	    <p>The parameters for the source are get with the serverpage through the page envelope input module. 
+	    A form (build with the xslt transformation) sends then the parameters as request parameters with the new URL.</p>
+      </section>  
+      <section>
+        <title>Rename confirmation</title>
+        <p>URL :</p>
+	    <source xml:space="preserve"><![CDATA[{document-URL}?lenya.usecase=rename&lenya.step=rename&...{source parameters}]]></source> 
+	    <p>usecase sitemap:</p>
+	    <source xml:space="preserve"><![CDATA[
+          <map:match pattern="rename" type="usecase">
+            <map:match pattern="rename" type="step">
+              <map:act type="task">
+                <map:redirect-to session="true" uri="{request:contextPath}/{../../../1}/{../../../2}/"/>
+              </map:act>
+            </map:match>
+          </map:match>
+        ]]></source>
+        <p>The action org.apache.lenya.cms.cocoon.acting.TaskAction calls the execution of the ant task.</p> 
+      </section>  
+    </section>
+
+    <section>
+	  <title>Ant Task </title>
+	  <p>The ant target <code>renameDocument</code> is in the publication :</p>
+	  <source xml:space="preserve">{publication}/config/tasks/targets.xml</source>
+      <p>and depends on the different targets </p>
+      <ul>
+        <li>
+<code>firstareaproperties</code>, to set the needed properties dependent of the source area</li>
+        <li>
+<code>secareaproperties</code>, to set the needed properties dependent of the destination area</li>
+        <li>
+<code>newnamdocumentid</code>, to compute the unique destination id with the new name</li>
+        <li>
+<code>firstdocumentpath</code>, to compute the directory of the source contents (Needed for the revisions and the rcml files)</li>
+        <li>
+<code>secdocumentpath</code>, to compute the directory where are the destination contents (Needed for the revisions and the rcml files)</li>
+        <li>
+<code>move</code>, to execute the different move operations</li>
+      </ul>
+      <p>More about ant task, see the documentation <a href="../tasks/anttask.html">Ant Task</a> and the <a href="../../apidocs/1.2/index.html">Javadoc</a>
+</p>
+    </section>
+
+  </body>
+</document>

Added: lenya/sandbox/pubs/docu/content/authoring/5c9b9680-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221911352.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5c9b9680-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221911352.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5c9b9680-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221911352.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/5c9b9680-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221911352.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata xmlns="http://apache.org/lenya/metadata/1.0">
+<element-set namespace="http://purl.org/dc/elements/1.1/">
+<element key="title">
+<value>Rename</value>
+</element>
+</element-set>
+<element-set namespace="http://apache.org/lenya/metadata/document/1.0">
+<element key="extension">
+<value>xml</value>
+</element>
+<element key="mimeType">
+<value>application/xml</value>
+</element>
+<element key="resourceType">
+<value>forrestDocument20</value>
+</element>
+<element key="contentType">
+<value>xml</value>
+</element>
+</element-set>
+</metadata>

Modified: lenya/sandbox/pubs/docu/content/authoring/5c9b9680-8731-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5c9b9680-8731-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5c9b9680-8731-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/5c9b9680-8731-11dc-ae46-9e7b5d14892d/en.rcml Fri Nov 16 07:11:58 2007
@@ -1,5 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <XPSRevisionControl xmlns="">
+<CheckIn backup="true" identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221911352" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221891145"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910776349" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910762262"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781619505" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/5db9b0b0-8731-11dc-ae46-9e7b5d14892d/en.1195221898783.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5db9b0b0-8731-11dc-ae46-9e7b5d14892d/en.1195221898783.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5db9b0b0-8731-11dc-ae46-9e7b5d14892d/en.1195221898783.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/5db9b0b0-8731-11dc-ae46-9e7b5d14892d/en.1195221898783.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,114 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2004 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- $Id: restore.xml 55543 2004-10-26 00:14:59Z gregor $ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+
+<document>
+	<header>
+		<title>Restore</title>
+		
+		
+		
+	</header>
+
+  <body>
+	
+    <section>
+	  <title>Introduction</title>
+      <p>The restore operation corresponds to a move operation from an area, trash or archive, to the authoring</p>
+    </section>
+	  
+    <section>
+	  <title>Implementation</title>
+      <p>Similar to the operation <a href="move.html">move</a>
+</p>  
+    </section>
+	  
+    <section>
+	  <title>Parameters</title>
+      <p>Required parameters:</p>
+      <ul>
+        <li>the area for the source document</li>
+        <li>the document id for the source document</li>
+        <li>the task id</li>
+      </ul>
+    </section>
+
+    <section>
+	  <title>usecase</title>
+      <section>
+        <title>Delete screen</title>
+        <p>URL :</p>
+ 	    <source xml:space="preserve"><![CDATA[{document-URL}?lenya.usecase=restore&lenya.step=showscreen]]></source> 
+	    <p>usecase sitemap:</p>
+	    <source xml:space="preserve"><![CDATA[
+          <map:match pattern="restore" type="usecase">
+            <map:match pattern="showscreen" type="step">
+              <map:generate src="content/info/restore.xsp" type="serverpages"/>
+              <map:transform src="xslt/info/restore.xsl">
+                <map:parameter name="use-request-parameters" value="true"/>
+              </map:transform>
+              <map:call resource="style-cms-page"/>
+            </map:match>
+          </map:match>
+          ]]></source>
+	    <p>The parameters for the source are get with the serverpage through the page envelope input module. 
+        The destination document id is computed in the serverpage from the identifier. The destination source is set to area in the stylesheet.
+	    A form (build with the xslt transformation) sends then the parameters as request parameters with the new URL.</p>
+      </section>  
+      <section>
+        <title>Restore confirmation</title>
+        <p>URL :</p>
+	    <source xml:space="preserve"><![CDATA[{document-URL}?lenya.usecase=restore&lenya.step=restore&...{source parameters}]]></source> 
+	    <p>usecase sitemap:</p>
+	    <source xml:space="preserve"><![CDATA[
+          <map:match pattern="restore" type="usecase">
+            <map:match pattern="restore" type="step">
+              <map:act type="task">
+                <map:redirect-to session="true" uri="{request:contextPath}/{../../../1}/{../../../2}/"/>
+              </map:act>
+            </map:match>
+          </map:match>
+        ]]></source>
+        <p>The action org.apache.lenya.cms.cocoon.acting.TaskAction calls the execution of the ant task.</p> 
+      </section>  
+    </section>
+
+    <section>
+	  <title>Ant Task </title>
+	  <p>The ant target <code>restoreDocument</code> is in the publication :</p>
+	  <source xml:space="preserve">{publication}/config/tasks/targets.xml</source>
+      <p>The target for the restore operation depends on the different targets </p>
+      <ul>
+        <li>
+<code>firstareaproperties</code>, to set the needed properties dependent of the area of the source</li>
+        <li>
+<code>secareaproperties</code>, to set the needed properties dependent of the area of the destination</li>
+        <li>
+<code>newcopydocumentid</code>, to compute the unique destination id (Same logic like for the copy operation).</li>
+        <li>
+<code>firstdocumentpath</code>, to compute the directory of the contents for the source (Needed for the revisions and the rcml files)</li>
+        <li>
+<code>secdocumentpath</code>, to compute the directory where are the contents for the destination (Needed for the revisions and the rcml files)</li>
+        <li>
+<code>move</code>, to execute the different move operations</li>
+      </ul>
+      <p>More about ant task, see the documentation <a href="../tasks/anttask.html">Ant Task</a> and the <a href="../../apidocs/1.2/index.html">Javadoc</a>
+</p>
+    </section>
+
+  </body>
+</document>

Added: lenya/sandbox/pubs/docu/content/authoring/5db9b0b0-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221898783.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5db9b0b0-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221898783.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5db9b0b0-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221898783.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/5db9b0b0-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221898783.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata xmlns="http://apache.org/lenya/metadata/1.0">
+<element-set namespace="http://purl.org/dc/elements/1.1/">
+<element key="title">
+<value>Restore</value>
+</element>
+</element-set>
+<element-set namespace="http://apache.org/lenya/metadata/document/1.0">
+<element key="extension">
+<value>xml</value>
+</element>
+<element key="mimeType">
+<value>application/xml</value>
+</element>
+<element key="resourceType">
+<value>forrestDocument20</value>
+</element>
+<element key="contentType">
+<value>xml</value>
+</element>
+</element-set>
+</metadata>

Modified: lenya/sandbox/pubs/docu/content/authoring/5db9b0b0-8731-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5db9b0b0-8731-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5db9b0b0-8731-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/5db9b0b0-8731-11dc-ae46-9e7b5d14892d/en.rcml Fri Nov 16 07:11:58 2007
@@ -1,5 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <XPSRevisionControl xmlns="">
+<CheckIn backup="true" identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221898783" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221888064"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910776078" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910761688"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781622397" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/5ef230b0-8731-11dc-ae46-9e7b5d14892d/en.1195221898406.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5ef230b0-8731-11dc-ae46-9e7b5d14892d/en.1195221898406.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5ef230b0-8731-11dc-ae46-9e7b5d14892d/en.1195221898406.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/5ef230b0-8731-11dc-ae46-9e7b5d14892d/en.1195221898406.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,226 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2004 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- $Id: namespaces.xml 55543 2004-10-26 00:14:59Z gregor $ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+
+<document>
+  <header>
+    <title>Namespaces Used in Apache Lenya</title>
+  </header>
+  <body>
+<p>
+The following namespaces are defined in Lenya. The base namespace is <a href="http://apache.org/cocoon/lenya/">http://apache.org/cocoon/lenya/</a>, followed by the Name/Version entries from the list below.</p> 
+<table>
+<tr>
+<td colspan="1" rowspan="1">
+ <strong>Name/Version</strong> 
+
+</td>
+<td colspan="1" rowspan="1">
+ <strong>Purpose</strong> 
+</td>
+</tr>
+<tr>
+<td colspan="1" rowspan="1">
+ ac/1.0
+</td>
+<td colspan="1" rowspan="1">
+Access Control 
+
+</td>
+</tr>
+<tr>
+<td colspan="1" rowspan="1">
+ doctype/1.0
+</td>
+<td colspan="1" rowspan="1">
+Doctype configuration 
+</td>
+</tr>
+<tr>
+<td colspan="1" rowspan="1">
+ cms-page/1.0
+
+</td>
+<td colspan="1" rowspan="1">
+CMS Page 
+</td>
+</tr>
+<tr>
+<td colspan="1" rowspan="1">
+ document/1.0
+</td>
+<td colspan="1" rowspan="1">
+Lenya-specific data in documents 
+</td>
+</tr>
+
+<tr>
+<td colspan="1" rowspan="1">
+ info/1.0
+</td>
+<td colspan="1" rowspan="1">
+Lenya Info Area 
+</td>
+</tr>
+<tr>
+<td colspan="1" rowspan="1">
+ lucene/1.0
+</td>
+
+<td colspan="1" rowspan="1">
+Lucene Search Configuration 
+</td>
+</tr>
+<tr>
+<td colspan="1" rowspan="1">
+ mail/1.0
+</td>
+<td colspan="1" rowspan="1">
+Mail 
+</td>
+</tr>
+<tr>
+
+<td colspan="1" rowspan="1">
+ menubar/1.0
+</td>
+<td colspan="1" rowspan="1">
+Lenya Menubar 
+</td>
+</tr>
+<tr>
+<td colspan="1" rowspan="1">
+ navigation/1.0
+</td>
+<td colspan="1" rowspan="1">
+
+Breadcrumb navigation 
+</td>
+</tr>
+<tr>
+<td colspan="1" rowspan="1">
+ notification/1.0
+</td>
+<td colspan="1" rowspan="1">
+Notification 
+</td>
+</tr>
+<tr>
+<td colspan="1" rowspan="1">
+
+ page-envelope/1.0
+</td>
+<td colspan="1" rowspan="1">
+Page envelope 
+</td>
+</tr>
+<tr>
+<td colspan="1" rowspan="1">
+ proxygenerator/1.0
+</td>
+<td colspan="1" rowspan="1">
+ProxyGenerator 
+</td>
+</tr>
+<tr>
+<td colspan="1" rowspan="1">
+ publication/1.0
+</td>
+<td colspan="1" rowspan="1">
+Publication 
+</td>
+</tr>
+<tr>
+<td colspan="1" rowspan="1">
+ rc/1.0
+
+</td>
+<td colspan="1" rowspan="1">
+Revision Control 
+</td>
+</tr>
+<tr>
+<td colspan="1" rowspan="1">
+ scheduler/1.0
+</td>
+<td colspan="1" rowspan="1">
+Scheduler 
+</td>
+</tr>
+
+<tr>
+<td colspan="1" rowspan="1">
+ simple-document
+</td>
+<td colspan="1" rowspan="1">
+Simple Document Doctype 
+</td>
+</tr>
+<tr>
+<td colspan="1" rowspan="1">
+ sitetree/1.0
+</td>
+
+<td colspan="1" rowspan="1">
+Sitetree 
+</td>
+</tr>
+<tr>
+<td colspan="1" rowspan="1">
+ uri-parameters/1.0
+</td>
+<td colspan="1" rowspan="1">
+URI Parameters 
+</td>
+</tr>
+<tr>
+
+<td colspan="1" rowspan="1">
+ usecase/1.0
+</td>
+<td colspan="1" rowspan="1">
+Usecases 
+</td>
+</tr>
+<tr>
+<td colspan="1" rowspan="1">
+ workflow/1.0
+</td>
+<td colspan="1" rowspan="1">
+
+Workflow 
+</td>
+</tr>
+<tr>
+<td colspan="1" rowspan="1">
+ xslt/1.0
+</td>
+<td colspan="1" rowspan="1">
+XSLT namespace alias for meta stylesheets 
+</td>
+</tr>
+<tr>
+<td colspan="1" rowspan="1">
+
+ xsp/1.0
+</td>
+<td colspan="1" rowspan="1">
+Lenya XSP
+</td>
+</tr>
+</table>  </body>
+</document>

Added: lenya/sandbox/pubs/docu/content/authoring/5ef230b0-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221898406.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5ef230b0-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221898406.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5ef230b0-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221898406.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/5ef230b0-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221898406.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata xmlns="http://apache.org/lenya/metadata/1.0">
+<element-set namespace="http://purl.org/dc/elements/1.1/">
+<element key="title">
+<value>Namespaces</value>
+</element>
+</element-set>
+<element-set namespace="http://apache.org/lenya/metadata/document/1.0">
+<element key="extension">
+<value>xml</value>
+</element>
+<element key="mimeType">
+<value>application/xml</value>
+</element>
+<element key="resourceType">
+<value>forrestDocument20</value>
+</element>
+<element key="contentType">
+<value>xml</value>
+</element>
+</element-set>
+</metadata>

Modified: lenya/sandbox/pubs/docu/content/authoring/5ef230b0-8731-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5ef230b0-8731-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5ef230b0-8731-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/5ef230b0-8731-11dc-ae46-9e7b5d14892d/en.rcml Fri Nov 16 07:11:58 2007
@@ -1,5 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <XPSRevisionControl xmlns="">
+<CheckIn backup="true" identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221898406" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221887527"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910782196" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910767504"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781616393" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/601d4330-8731-11dc-ae46-9e7b5d14892d/en.1195221910079.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/601d4330-8731-11dc-ae46-9e7b5d14892d/en.1195221910079.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/601d4330-8731-11dc-ae46-9e7b5d14892d/en.1195221910079.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/601d4330-8731-11dc-ae46-9e7b5d14892d/en.1195221910079.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,71 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 2002-2004 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+--><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+
+<document> 
+  <header> 
+    <title>Reserved Names</title> 
+  </header> 
+  <body> 
+<p>List of Names that are reserved by Lenya for various subsystems </p>
+<ul>
+<li>
+<p>  CSS Classes </p>
+</li>
+<li>
+<p>  Sitemap variables </p>
+</li>
+<li>
+<p>  Session variables </p>
+</li>
+</ul>
+
+<section>
+<title id="head-5faa770e6cb1c1a84de450ecc036541d72568af8">Session variables</title>
+
+<ul>
+<li>
+<p>  org.apache.lenya.cms.cocoon.acting.Authenticator.id </p>
+</li>
+<li>
+<p>  org.apache.lenya.cms.cocoon.acting.Authenticator.name </p>
+</li>
+<li>
+<p>  org.apache.lenya.cms.cocoon.acting.History </p>
+</li>
+<li>
+<p>  protected_destination </p>
+</li>
+<li>
+<p>  org.apache.lenya.cms.editor.HTMLForm.tempFile </p>
+</li>
+<li>
+<p>  org.apache.lenya.cms.editor.HTMLForm.editFile </p>
+</li>
+<li>
+<p>  org.apache.lenya.cms.ac.Identity </p>
+</li>
+<li>
+<p>  org.apache.lenya.cms.cocoon.acting.TaskAction.parent_uri </p>
+</li>
+<li>
+<p>  org.apache.lenya.cms.info.target </p>
+</li>
+</ul>
+<p>it seems that the convention is to use a proper class hierarchy for the session var name cookie variables should follow the same convention </p>    
+</section>
+  </body>
+</document>

Added: lenya/sandbox/pubs/docu/content/authoring/601d4330-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221910079.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/601d4330-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221910079.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/601d4330-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221910079.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/601d4330-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221910079.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata xmlns="http://apache.org/lenya/metadata/1.0">
+<element-set namespace="http://purl.org/dc/elements/1.1/">
+<element key="title">
+<value>Reserved Names</value>
+</element>
+</element-set>
+<element-set namespace="http://apache.org/lenya/metadata/document/1.0">
+<element key="extension">
+<value>xml</value>
+</element>
+<element key="mimeType">
+<value>application/xml</value>
+</element>
+<element key="resourceType">
+<value>forrestDocument20</value>
+</element>
+<element key="contentType">
+<value>xml</value>
+</element>
+</element-set>
+</metadata>

Modified: lenya/sandbox/pubs/docu/content/authoring/601d4330-8731-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/601d4330-8731-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/601d4330-8731-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/601d4330-8731-11dc-ae46-9e7b5d14892d/en.rcml Fri Nov 16 07:11:58 2007
@@ -1,5 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <XPSRevisionControl xmlns="">
+<CheckIn backup="true" identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221910079" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221889500"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910796571" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910768034"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781621980" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/614659e0-8731-11dc-ae46-9e7b5d14892d/en.1195221901588.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/614659e0-8731-11dc-ae46-9e7b5d14892d/en.1195221901588.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/614659e0-8731-11dc-ae46-9e7b5d14892d/en.1195221901588.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/614659e0-8731-11dc-ae46-9e7b5d14892d/en.1195221901588.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,63 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2004 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- $Id: xinclude-processor.xml 55543 2004-10-26 00:14:59Z gregor $ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+
+<document> 
+
+<header> 
+    <title>XInclude Processor</title>
+     
+     
+     
+</header> 
+<body> 
+
+<section>
+<title>Hello World</title>
+<source xml:space="preserve">
+<![CDATA[
+<hello>
+<levi xlink:href="world.xml" xlink:show="embed" xmlns:xlink="http://www.w3.org/1999/xlink"/>
+</hello>
+]]>
+</source>
+</section>
+
+<section>
+<title>Hello World with XPointer</title>
+<source xml:space="preserve">
+<![CDATA[
+<hello>
+<levi xlink:href="world.xml#xpointer(/world/countries/country[@id='japan'])xpointer(/world/countries/country[@id='china'])" xlink:show="embed" xmlns:xlink="http://www.w3.org/1999/xlink"/>
+</hello>
+]]>
+</source>
+</section>
+
+<section>
+<title>Hello World with XPointer and Namespace</title>
+<source xml:space="preserve">
+<![CDATA[
+<hello>
+<levi xlink:href="world.xml#xmlns(solar=http://www.foo.bar/0/solar)xpointer(/solar:world/solar:countries)" xlink:show="embed" xmlns:xlink="http://www.w3.org/1999/xlink"/>
+</hello>
+]]>
+</source>
+</section>
+
+</body>
+</document>

Added: lenya/sandbox/pubs/docu/content/authoring/614659e0-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221901588.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/614659e0-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221901588.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/614659e0-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221901588.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/614659e0-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221901588.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata xmlns="http://apache.org/lenya/metadata/1.0">
+<element-set namespace="http://purl.org/dc/elements/1.1/">
+<element key="title">
+<value>XInclude Processor</value>
+</element>
+</element-set>
+<element-set namespace="http://apache.org/lenya/metadata/document/1.0">
+<element key="extension">
+<value>xml</value>
+</element>
+<element key="mimeType">
+<value>application/xml</value>
+</element>
+<element key="resourceType">
+<value>forrestDocument20</value>
+</element>
+<element key="contentType">
+<value>xml</value>
+</element>
+</element-set>
+</metadata>

Modified: lenya/sandbox/pubs/docu/content/authoring/614659e0-8731-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/614659e0-8731-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/614659e0-8731-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/614659e0-8731-11dc-ae46-9e7b5d14892d/en.rcml Fri Nov 16 07:11:58 2007
@@ -1,5 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <XPSRevisionControl xmlns="">
+<CheckIn backup="true" identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221901588" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221891536"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910781187" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910766645"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781628316" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/614d5ec0-8731-11dc-ae46-9e7b5d14892d/en.1195221906390.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/614d5ec0-8731-11dc-ae46-9e7b5d14892d/en.1195221906390.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/614d5ec0-8731-11dc-ae46-9e7b5d14892d/en.1195221906390.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/614d5ec0-8731-11dc-ae46-9e7b5d14892d/en.1195221906390.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2004 The Apache Software Foundation
+  
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+  
+  http://www.apache.org/licenses/LICENSE-2.0
+  
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- $Id: index.xml 55543 2004-10-26 00:14:59Z gregor $ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+
+<document>
+  <header>
+    <title>Apache Lenya Documentation</title>
+  </header>
+  <body>
+    <p>
+      This is a Forrest Document 2.0 sample.
+    </p>
+  </body>
+</document>

Added: lenya/sandbox/pubs/docu/content/authoring/614d5ec0-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221906390.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/614d5ec0-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221906390.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/614d5ec0-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221906390.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/614d5ec0-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221906390.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata xmlns="http://apache.org/lenya/metadata/1.0">
+<element-set namespace="http://purl.org/dc/elements/1.1/">
+<element key="title">
+<value>1.2 API (Javadoc)</value>
+</element>
+</element-set>
+<element-set namespace="http://apache.org/lenya/metadata/document/1.0">
+<element key="extension">
+<value>xml</value>
+</element>
+<element key="mimeType">
+<value>application/xml</value>
+</element>
+<element key="resourceType">
+<value>forrestDocument20</value>
+</element>
+<element key="contentType">
+<value>xml</value>
+</element>
+</element-set>
+</metadata>

Modified: lenya/sandbox/pubs/docu/content/authoring/614d5ec0-8731-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/614d5ec0-8731-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/614d5ec0-8731-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/614d5ec0-8731-11dc-ae46-9e7b5d14892d/en.rcml Fri Nov 16 07:11:58 2007
@@ -1,5 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <XPSRevisionControl xmlns="">
+<CheckIn backup="true" identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221906390" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221885600"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910786107" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910770551"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781619004" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/62a72260-8731-11dc-ae46-9e7b5d14892d/en.1195221895378.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/62a72260-8731-11dc-ae46-9e7b5d14892d/en.1195221895378.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/62a72260-8731-11dc-ae46-9e7b5d14892d/en.1195221895378.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/62a72260-8731-11dc-ae46-9e7b5d14892d/en.1195221895378.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,77 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2004 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- $Id: index.xml 43150 2004-07-27 19:41:17Z thorsten $ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+
+<document>
+  <header>
+    <title>The Apache Lenya Community</title>
+  </header>
+  <body>
+	<p>
+		Here you will find information on how to interact with and become a member 
+		of the Apache Lenya community. Please read <a href="ext:forrest.contrib">Contributing to Apache Forrest</a> 
+    as well because it contains some more information about the process.
+	</p>
+
+  <section>
+    <title>Contribute to the Wiki</title>
+    <p>The <a href="ext:wiki/lenya">Lenya Wiki</a> is the scratchpad for the
+    Lenya documentation as well as a whiteboard that is used by the community
+    to sketch out proposals about the further direction of the project.</p>
+  </section>
+
+  <section>
+	<title>Contribute code</title>
+  <note>Please use our <a href="lenya-document:691085b0-8731-11dc-ae46-9e7b5d14892d">Bug tracker</a> to submit patches instead of sending them to the mailing list. 
+    All our committers started in creating an account there ;-)<br/>
+    </note>
+	<p>
+		You can contribute code as patch via our <a href="lenya-document:691085b0-8731-11dc-ae46-9e7b5d14892d">Bug tracker</a>. 
+		For this, you file a bug entry in Bugzilla, using the links provided below. 
+		The bug entries in Bugzilla should provide a description of what the patch does, 
+		and how to apply it. Any further discussion should occur on the Lenya Developer list (see <a href="lenya-document:653c2520-8731-11dc-ae46-9e7b5d14892d">mailing lists</a>)
+	</p>
+	<section>
+		<title>Preparing a Patch</title>
+			<ul>
+				<li>For general procedures please see the Cocoon documentation <a href="lenya-document:68cd6230-8731-11dc-ae46-9e7b5d14892d">How to Prepare a Patch</a> and 
+          <a href="lenya-document:68d24430-8731-11dc-ae46-9e7b5d14892d">How to Contribute a Patch via Bugzilla</a>. 
+          Note that the actual command to create the patch is <code>svn diff</code> (instead of <code>cvs diff -u</code> as 
+          suggested in said documents).</li>
+				<li>Make sure you follow the <a href="lenya-document:72b00330-8730-11dc-ae46-9e7b5d14892d">coding guidelines</a>.</li>
+				<li>Test your patch by applying it to a fresh checkout of Lenya. In Eclipse for instance, this is done by choosing "apply patch" in the team perspective.</li>
+				<li>Follow this link to enter your patch in Bugzilla: <a href="lenya-document:691085b0-8731-11dc-ae46-9e7b5d14892d">add a new patch</a>.</li>
+			</ul>
+	</section>
+	<section>
+		<title>Apply open patches</title>
+		<p>
+			If you as committer feel that you have some spare time, here is a list of open issues.
+			Just go ahead fix them ;-).
+		</p>
+		<ul>
+			<li>
+<a href="ext:issues.open.bugs.enhancement">list of all provided enhancement bugs</a>
+</li>
+			<li>
+<a href="ext:issues.open.patches">list of all provided patches</a>
+</li>
+		</ul>
+	</section>
+</section>
+  </body>
+</document>

Added: lenya/sandbox/pubs/docu/content/authoring/62a72260-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221895378.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/62a72260-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221895378.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/62a72260-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221895378.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/62a72260-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221895378.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata xmlns="http://apache.org/lenya/metadata/1.0">
+<element-set namespace="http://purl.org/dc/elements/1.1/">
+<element key="title">
+<value>Contributing</value>
+</element>
+</element-set>
+<element-set namespace="http://apache.org/lenya/metadata/document/1.0">
+<element key="extension">
+<value>xml</value>
+</element>
+<element key="mimeType">
+<value>application/xml</value>
+</element>
+<element key="resourceType">
+<value>forrestDocument20</value>
+</element>
+<element key="contentType">
+<value>xml</value>
+</element>
+</element-set>
+</metadata>

Modified: lenya/sandbox/pubs/docu/content/authoring/62a72260-8731-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/62a72260-8731-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/62a72260-8731-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/62a72260-8731-11dc-ae46-9e7b5d14892d/en.rcml Fri Nov 16 07:11:58 2007
@@ -1,5 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <XPSRevisionControl xmlns="">
+<CheckIn backup="true" identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221895378" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221882531"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910779475" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910765463"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781618347" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/62affc00-8731-11dc-ae46-9e7b5d14892d/en.1195221897189.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/62affc00-8731-11dc-ae46-9e7b5d14892d/en.1195221897189.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/62affc00-8731-11dc-ae46-9e7b5d14892d/en.1195221897189.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/62affc00-8731-11dc-ae46-9e7b5d14892d/en.1195221897189.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2004 The Apache Software Foundation
+  
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+  
+  http://www.apache.org/licenses/LICENSE-2.0
+  
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- $Id: index.xml 55543 2004-10-26 00:14:59Z gregor $ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+
+<document>
+  <header>
+    <title>Apache Lenya Documentation</title>
+  </header>
+  <body>
+    <p>
+      This is a Forrest Document 2.0 sample.
+    </p>
+  </body>
+</document>

Added: lenya/sandbox/pubs/docu/content/authoring/62affc00-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221897189.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/62affc00-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221897189.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/62affc00-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221897189.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/62affc00-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221897189.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata xmlns="http://apache.org/lenya/metadata/1.0">
+<element-set namespace="http://purl.org/dc/elements/1.1/">
+<element key="title">
+<value>Lenya Wiki</value>
+</element>
+</element-set>
+<element-set namespace="http://apache.org/lenya/metadata/document/1.0">
+<element key="extension">
+<value>xml</value>
+</element>
+<element key="mimeType">
+<value>application/xml</value>
+</element>
+<element key="resourceType">
+<value>forrestDocument20</value>
+</element>
+<element key="contentType">
+<value>xml</value>
+</element>
+</element-set>
+</metadata>

Modified: lenya/sandbox/pubs/docu/content/authoring/62affc00-8731-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/62affc00-8731-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/62affc00-8731-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/62affc00-8731-11dc-ae46-9e7b5d14892d/en.rcml Fri Nov 16 07:11:58 2007
@@ -1,5 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <XPSRevisionControl xmlns="">
+<CheckIn backup="true" identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221897189" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221885023"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910796222" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910767823"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781618475" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/64157f70-8731-11dc-ae46-9e7b5d14892d/en.1195221908411.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/64157f70-8731-11dc-ae46-9e7b5d14892d/en.1195221908411.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/64157f70-8731-11dc-ae46-9e7b5d14892d/en.1195221908411.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/64157f70-8731-11dc-ae46-9e7b5d14892d/en.1195221908411.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,124 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2004 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- $Id: website-update.xml 47579 2004-09-30 12:25:51Z thorsten $ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+
+<document>
+	<header>
+		<title>Translating Lenya</title>
+	</header>
+	<body>
+<p>If you want to contribute translations to Lenya, you need to know about dictionary files only. If you are a developer, read the key naming conventions too. </p>
+
+<section>
+<title id="head-2e0b803ec8bb1aeca6151343d92c6736e12621a8">Dictionary Files</title>
+
+<p>Dictionary files are loacted at </p>
+<ul>
+<li>
+<p> lenya/resources/i18n/*(_)?*.xml </p>
+</li>
+<li>
+<p> lenya/pubs/@@pubname@@/lenya/resources/i18n/*(_)?*.xml </p>
+</li>
+</ul>
+<p>The latter one is a publication specific translation file which gets merged with the global one. The publication specific translations will override the global ones. 
+ 
+
+ An example name for a dictionary file is <em>cmsui_de.xml</em> or <em>cmsui_fr.xml</em> where <em>_de</em> and <em>_fr</em> are the official locale extensions. If you want to contribute a translation, make a copy of <em>cmsui.xml</em> , add your locale extension to the file name, and translate the text as shown below </p>
+
+<p>Change </p>
+
+<source xml:space="preserve">
+&lt;message key="lenya.news.main.title"&gt;Maintain News&lt;/message&gt;
+</source>
+<p>to </p>
+
+<source xml:space="preserve">
+&lt;message key="lenya.news.main.title"&gt;News verwalten&lt;/message&gt;
+
+</source>
+<p>When you are done, submit a bug report to Bugzilla and attach your new dictionary file. That way, it gets noticed and can be added to Lenya. </p>
+
+</section>
+<section>
+<title id="head-3dccef277d6eba19c1ecd022ab2023c746c4de85">Message Key Naming Conventions</title>
+
+<p>In general we can differ between  </p>
+<ul>
+<li>
+<p>  global messages </p>
+</li>
+<li>
+<p>  context specific messages </p>
+
+</li>
+</ul>
+<p>It is considered a good practice to encode the context within the message key. This will avoid key collisions if message catalogies of different contexts are merged. The context should be the key's prefix and MUST always start with "lenya.". </p>
+<p>We propose here to use the following naming scheme of i18n message keys. </p>
+
+</section>
+<section>
+<title id="head-a95e9b852ff1f985e7b7c2c1cabaa430129dcc04">Global Message Keys</title>
+
+
+<source xml:space="preserve">
+&lt;message key="lenya.common.delete.label"&gt;Delete&lt;/message&gt;
+&lt;message key="lenya.common.delete.hint"&gt;Delete object&lt;/message&gt;
+
+&lt;message key="lenya.common.delete.label"&gt;Cancel&lt;/message&gt;
+&lt;message key="lenya.common.delete.hint"&gt;Cancel current action.&lt;/message&gt;
+</source>
+
+<p> 
+ In the above examples the context is lenya.common which indicates the global context. </p>
+
+</section>
+<section>
+<title id="head-72f923ab0c18f9c75ebdec73ae50097813e5c0fe">Context Specific Message Keys</title>
+
+
+<source xml:space="preserve">
+&lt;message key="lenya.news.main.title"&gt;Maintain News&lt;/message&gt;
+&lt;message key="lenya.news.delete.hint"&gt;Delete all selected news items.&lt;/message&gt;
+</source>
+
+<p> 
+ It is up to the message author how long(detailed) the context prefix is. </p>
+
+</section>
+<section>
+<title id="head-c573c67e7eded7f63f9c54594da2992d11fbc4cb">I18N Survival Resources</title>
+
+<ul>
+<li>
+<p>  <a href="http://intertwingly.net/stories/2004/04/14/i18n.html"> http://intertwingly.net/stories/2004/04/14/i18n.html</a> </p>
+</li>
+<li>
+<p>  <a href="http://www.joelonsoftware.com/articles/Unicode.html"> http://www.joelonsoftware.com/articles/Unicode.html</a> </p>
+</li>
+
+<li>
+<p>  <a href="http://www.tbray.org/ongoing/When/200x/2003/04/06/Unicode"> http://www.tbray.org/ongoing/When/200x/2003/04/06/Unicode</a>  </p>
+</li>
+<li>
+<p>  <a href="http://www.tbray.org/ongoing/When/200x/2003/04/26/UTF"> http://www.tbray.org/ongoing/When/200x/2003/04/26/UTF</a> </p>
+</li>
+</ul>		</section>
+
+		
+	</body>
+</document>

Added: lenya/sandbox/pubs/docu/content/authoring/64157f70-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221908411.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/64157f70-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221908411.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/64157f70-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221908411.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/64157f70-8731-11dc-ae46-9e7b5d14892d/en.meta.1195221908411.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata xmlns="http://apache.org/lenya/metadata/1.0">
+<element-set namespace="http://purl.org/dc/elements/1.1/">
+<element key="title">
+<value>Translations</value>
+</element>
+</element-set>
+<element-set namespace="http://apache.org/lenya/metadata/document/1.0">
+<element key="extension">
+<value>xml</value>
+</element>
+<element key="mimeType">
+<value>application/xml</value>
+</element>
+<element key="resourceType">
+<value>forrestDocument20</value>
+</element>
+<element key="contentType">
+<value>xml</value>
+</element>
+</element-set>
+</metadata>

Modified: lenya/sandbox/pubs/docu/content/authoring/64157f70-8731-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/64157f70-8731-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/64157f70-8731-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/64157f70-8731-11dc-ae46-9e7b5d14892d/en.rcml Fri Nov 16 07:11:58 2007
@@ -1,5 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <XPSRevisionControl xmlns="">
+<CheckIn backup="true" identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221908411" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221888004"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910782747" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910768086"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781618885" version="1"/>



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@lenya.apache.org
For additional commands, e-mail: commits-help@lenya.apache.org