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/02 12:00:40 UTC

svn commit: r591298 [11/37] - in /lenya/sandbox/pubs/docu/content/authoring: 0033e320-8731-11dc-ae46-9e7b5d14892d/ 003a4bc0-8731-11dc-ae46-9e7b5d14892d/ 018a9980-8731-11dc-ae46-9e7b5d14892d/ 02f9e0f0-8731-11dc-ae46-9e7b5d14892d/ 043dd2a0-8731-11dc-ae46...

Added: lenya/sandbox/pubs/docu/content/authoring/5631be00-8731-11dc-ae46-9e7b5d14892d/en.1193910799259.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5631be00-8731-11dc-ae46-9e7b5d14892d/en.1193910799259.bak?rev=591298&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5631be00-8731-11dc-ae46-9e7b5d14892d/en.1193910799259.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/5631be00-8731-11dc-ae46-9e7b5d14892d/en.1193910799259.bak Fri Nov  2 03:57:25 2007
@@ -0,0 +1,110 @@
+<?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: deactivate.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>Deactivate a document</title>
+		
+		
+		
+	</header>
+
+  <body>
+	
+    <section>
+	  <title>Introduction</title>
+	  <p>We have to :</p>
+	  <ul>
+        <li>look if there are some live children, if no other language version is live</li> 
+	    <li>delete the live contents (xml file) for the given document id and the given language</li>
+	    <li>delete the live resources for the given document id only if no other language version is live</li>
+	    <li>delete the language from the node corresponding to given the document id or 
+	    all the node, if no other language version is live.</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>Parameters</title>
+	  <p>The parameters are string-value parameters</p>
+      <p>Required parameters:</p>
+      <ul>
+        <li>the document id</li>
+        <li>the language</li>
+        <li>the task id</li>
+      </ul>
+    </section>
+
+    <section>
+	  <title>usecase</title>
+      <p>They are implemented in the usecase sitmap (core)</p> 
+      <section>
+        <title>Deactivate screen</title>
+        <p>URL :</p>
+ 	    <source xml:space="preserve"><![CDATA[{document-URL}?lenya.usecase=deactivate&lenya.step=showscreen]]></source> 
+	    <p>usecase sitemap:</p>
+        <source xml:space="preserve"><![CDATA[
+          <map:match pattern="deactivate" type="usecase">
+            <map:match pattern="showscreen" type="step">
+              <map:generate src="content/info/deactivate.xsp" type="serverpages"/>
+              <map:transform src="xslt/info/deactivate.xsl">
+                <map:parameter name="use-request-parameters" value="true"/>
+              </map:transform>
+              <map:transform src="cocoon:/notification/{../../1}/deactivate.xsl"/>
+              <map:transform src="cocoon://scheduler/{../../1}/{../../2}/{../../3}.xsl"/>
+              <map:call resource="style-cms-page"/>
+            </map:match>
+          </map:match>
+        ]]></source>
+	    <p>
+        In the serverpage, we get the required parameters and if no other language version is live, we look for the live children.
+	    The stylesheet <code>xslt/info/deactivate.xsl</code> builds a form, if the requirement are achieved, else shows a message.</p>
+      </section>  
+      <section>
+        <title>Deactivate confirmation</title>
+        <p>URL :</p>
+	    <source xml:space="preserve"><![CDATA[{document-URL}?lenya.usecase=deactivate&lenya.step=deactivate&...{source parameters}]]></source> 
+	    <p>usecase sitemap:</p>
+	    <source xml:space="preserve"><![CDATA[
+          <map:match pattern="deactivate" type="usecase">
+            <map:match pattern="deactivate" 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>deactivateDocument</code>is in the publication :</p>
+	  <source xml:space="preserve">{publication}/config/tasks/targets.xml</source>
+      <p>and depends on the target <code>livedocumentpath</code>, to compute the live directory of the contents</p>
+      <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>

Modified: lenya/sandbox/pubs/docu/content/authoring/5631be00-8731-11dc-ae46-9e7b5d14892d/en.meta
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5631be00-8731-11dc-ae46-9e7b5d14892d/en.meta?rev=591298&r1=591297&r2=591298&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5631be00-8731-11dc-ae46-9e7b5d14892d/en.meta (original)
+++ lenya/sandbox/pubs/docu/content/authoring/5631be00-8731-11dc-ae46-9e7b5d14892d/en.meta Fri Nov  2 03:57:25 2007
@@ -1,11 +1,16 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <metadata xmlns="http://apache.org/lenya/metadata/1.0">
-<element-set namespace="http://apache.org/lenya/metadata/document/1.0">
-<element key="mimeType">
-<value>application/xml</value>
+<element-set namespace="http://purl.org/dc/elements/1.1/">
+<element key="title">
+<value>Deactivate</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>

Added: lenya/sandbox/pubs/docu/content/authoring/5631be00-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910799259.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5631be00-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910799259.bak?rev=591298&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5631be00-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910799259.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/5631be00-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910799259.bak Fri Nov  2 03:57:25 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>Deactivate</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/5631be00-8731-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5631be00-8731-11dc-ae46-9e7b5d14892d/en.rcml?rev=591298&r1=591297&r2=591298&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5631be00-8731-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/5631be00-8731-11dc-ae46-9e7b5d14892d/en.rcml Fri Nov  2 03:57:25 2007
@@ -1,5 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <XPSRevisionControl xmlns="">
+<CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910799259" version="2"/>
+<CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910770110"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781624557" version="1"/>
 <CheckOut identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781604182"/>
 </XPSRevisionControl>

Added: lenya/sandbox/pubs/docu/content/authoring/57adfdc0-8731-11dc-ae46-9e7b5d14892d/en.1193910789490.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/57adfdc0-8731-11dc-ae46-9e7b5d14892d/en.1193910789490.bak?rev=591298&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/57adfdc0-8731-11dc-ae46-9e7b5d14892d/en.1193910789490.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/57adfdc0-8731-11dc-ae46-9e7b5d14892d/en.1193910789490.bak Fri Nov  2 03:57:25 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>

Modified: lenya/sandbox/pubs/docu/content/authoring/57adfdc0-8731-11dc-ae46-9e7b5d14892d/en.meta
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/57adfdc0-8731-11dc-ae46-9e7b5d14892d/en.meta?rev=591298&r1=591297&r2=591298&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/57adfdc0-8731-11dc-ae46-9e7b5d14892d/en.meta (original)
+++ lenya/sandbox/pubs/docu/content/authoring/57adfdc0-8731-11dc-ae46-9e7b5d14892d/en.meta Fri Nov  2 03:57:25 2007
@@ -1,11 +1,16 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <metadata xmlns="http://apache.org/lenya/metadata/1.0">
-<element-set namespace="http://apache.org/lenya/metadata/document/1.0">
-<element key="mimeType">
-<value>application/xml</value>
+<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>

Added: lenya/sandbox/pubs/docu/content/authoring/57adfdc0-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910789490.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/57adfdc0-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910789490.bak?rev=591298&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/57adfdc0-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910789490.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/57adfdc0-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910789490.bak Fri Nov  2 03:57:25 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=591298&r1=591297&r2=591298&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  2 03:57:25 2007
@@ -1,5 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <XPSRevisionControl xmlns="">
+<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"/>
 <CheckOut identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781608106"/>
 </XPSRevisionControl>

Added: lenya/sandbox/pubs/docu/content/authoring/58e19bc0-8731-11dc-ae46-9e7b5d14892d/en.1193910791057.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/58e19bc0-8731-11dc-ae46-9e7b5d14892d/en.1193910791057.bak?rev=591298&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/58e19bc0-8731-11dc-ae46-9e7b5d14892d/en.1193910791057.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/58e19bc0-8731-11dc-ae46-9e7b5d14892d/en.1193910791057.bak Fri Nov  2 03:57:25 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>

Modified: lenya/sandbox/pubs/docu/content/authoring/58e19bc0-8731-11dc-ae46-9e7b5d14892d/en.meta
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/58e19bc0-8731-11dc-ae46-9e7b5d14892d/en.meta?rev=591298&r1=591297&r2=591298&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/58e19bc0-8731-11dc-ae46-9e7b5d14892d/en.meta (original)
+++ lenya/sandbox/pubs/docu/content/authoring/58e19bc0-8731-11dc-ae46-9e7b5d14892d/en.meta Fri Nov  2 03:57:25 2007
@@ -1,11 +1,16 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <metadata xmlns="http://apache.org/lenya/metadata/1.0">
-<element-set namespace="http://apache.org/lenya/metadata/document/1.0">
-<element key="mimeType">
-<value>application/xml</value>
+<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>

Added: lenya/sandbox/pubs/docu/content/authoring/58e19bc0-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910791057.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/58e19bc0-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910791057.bak?rev=591298&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/58e19bc0-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910791057.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/58e19bc0-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910791057.bak Fri Nov  2 03:57:25 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=591298&r1=591297&r2=591298&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  2 03:57:25 2007
@@ -1,5 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <XPSRevisionControl xmlns="">
+<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"/>
 <CheckOut identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781611887"/>
 </XPSRevisionControl>

Added: lenya/sandbox/pubs/docu/content/authoring/5a2e6710-8731-11dc-ae46-9e7b5d14892d/en.1193910782514.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5a2e6710-8731-11dc-ae46-9e7b5d14892d/en.1193910782514.bak?rev=591298&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5a2e6710-8731-11dc-ae46-9e7b5d14892d/en.1193910782514.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/5a2e6710-8731-11dc-ae46-9e7b5d14892d/en.1193910782514.bak Fri Nov  2 03:57:25 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>

Modified: lenya/sandbox/pubs/docu/content/authoring/5a2e6710-8731-11dc-ae46-9e7b5d14892d/en.meta
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5a2e6710-8731-11dc-ae46-9e7b5d14892d/en.meta?rev=591298&r1=591297&r2=591298&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5a2e6710-8731-11dc-ae46-9e7b5d14892d/en.meta (original)
+++ lenya/sandbox/pubs/docu/content/authoring/5a2e6710-8731-11dc-ae46-9e7b5d14892d/en.meta Fri Nov  2 03:57:25 2007
@@ -1,11 +1,16 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <metadata xmlns="http://apache.org/lenya/metadata/1.0">
-<element-set namespace="http://apache.org/lenya/metadata/document/1.0">
-<element key="mimeType">
-<value>application/xml</value>
+<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>

Added: lenya/sandbox/pubs/docu/content/authoring/5a2e6710-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910782514.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5a2e6710-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910782514.bak?rev=591298&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5a2e6710-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910782514.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/5a2e6710-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910782514.bak Fri Nov  2 03:57:25 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=591298&r1=591297&r2=591298&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  2 03:57:25 2007
@@ -1,5 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <XPSRevisionControl xmlns="">
+<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"/>
 <CheckOut identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781612925"/>
 </XPSRevisionControl>

Added: lenya/sandbox/pubs/docu/content/authoring/5b6623c0-8731-11dc-ae46-9e7b5d14892d/en.1193910790925.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5b6623c0-8731-11dc-ae46-9e7b5d14892d/en.1193910790925.bak?rev=591298&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5b6623c0-8731-11dc-ae46-9e7b5d14892d/en.1193910790925.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/5b6623c0-8731-11dc-ae46-9e7b5d14892d/en.1193910790925.bak Fri Nov  2 03:57:25 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>

Modified: lenya/sandbox/pubs/docu/content/authoring/5b6623c0-8731-11dc-ae46-9e7b5d14892d/en.meta
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5b6623c0-8731-11dc-ae46-9e7b5d14892d/en.meta?rev=591298&r1=591297&r2=591298&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5b6623c0-8731-11dc-ae46-9e7b5d14892d/en.meta (original)
+++ lenya/sandbox/pubs/docu/content/authoring/5b6623c0-8731-11dc-ae46-9e7b5d14892d/en.meta Fri Nov  2 03:57:25 2007
@@ -1,11 +1,16 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <metadata xmlns="http://apache.org/lenya/metadata/1.0">
-<element-set namespace="http://apache.org/lenya/metadata/document/1.0">
-<element key="mimeType">
-<value>application/xml</value>
+<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>

Added: lenya/sandbox/pubs/docu/content/authoring/5b6623c0-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910790925.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5b6623c0-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910790925.bak?rev=591298&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5b6623c0-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910790925.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/5b6623c0-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910790925.bak Fri Nov  2 03:57:25 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=591298&r1=591297&r2=591298&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  2 03:57:25 2007
@@ -1,5 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <XPSRevisionControl xmlns="">
+<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"/>
 <CheckOut identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781603737"/>
 </XPSRevisionControl>

Added: lenya/sandbox/pubs/docu/content/authoring/5c9b9680-8731-11dc-ae46-9e7b5d14892d/en.1193910776349.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5c9b9680-8731-11dc-ae46-9e7b5d14892d/en.1193910776349.bak?rev=591298&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5c9b9680-8731-11dc-ae46-9e7b5d14892d/en.1193910776349.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/5c9b9680-8731-11dc-ae46-9e7b5d14892d/en.1193910776349.bak Fri Nov  2 03:57:25 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>

Modified: lenya/sandbox/pubs/docu/content/authoring/5c9b9680-8731-11dc-ae46-9e7b5d14892d/en.meta
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5c9b9680-8731-11dc-ae46-9e7b5d14892d/en.meta?rev=591298&r1=591297&r2=591298&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5c9b9680-8731-11dc-ae46-9e7b5d14892d/en.meta (original)
+++ lenya/sandbox/pubs/docu/content/authoring/5c9b9680-8731-11dc-ae46-9e7b5d14892d/en.meta Fri Nov  2 03:57:25 2007
@@ -1,11 +1,16 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <metadata xmlns="http://apache.org/lenya/metadata/1.0">
-<element-set namespace="http://apache.org/lenya/metadata/document/1.0">
-<element key="mimeType">
-<value>application/xml</value>
+<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>

Added: lenya/sandbox/pubs/docu/content/authoring/5c9b9680-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910776349.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5c9b9680-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910776349.bak?rev=591298&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5c9b9680-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910776349.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/5c9b9680-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910776349.bak Fri Nov  2 03:57:25 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=591298&r1=591297&r2=591298&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  2 03:57:25 2007
@@ -1,5 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <XPSRevisionControl xmlns="">
+<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"/>
 <CheckOut identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781607401"/>
 </XPSRevisionControl>

Added: lenya/sandbox/pubs/docu/content/authoring/5db9b0b0-8731-11dc-ae46-9e7b5d14892d/en.1193910776078.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5db9b0b0-8731-11dc-ae46-9e7b5d14892d/en.1193910776078.bak?rev=591298&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5db9b0b0-8731-11dc-ae46-9e7b5d14892d/en.1193910776078.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/5db9b0b0-8731-11dc-ae46-9e7b5d14892d/en.1193910776078.bak Fri Nov  2 03:57:25 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>

Modified: lenya/sandbox/pubs/docu/content/authoring/5db9b0b0-8731-11dc-ae46-9e7b5d14892d/en.meta
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5db9b0b0-8731-11dc-ae46-9e7b5d14892d/en.meta?rev=591298&r1=591297&r2=591298&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5db9b0b0-8731-11dc-ae46-9e7b5d14892d/en.meta (original)
+++ lenya/sandbox/pubs/docu/content/authoring/5db9b0b0-8731-11dc-ae46-9e7b5d14892d/en.meta Fri Nov  2 03:57:25 2007
@@ -1,11 +1,16 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <metadata xmlns="http://apache.org/lenya/metadata/1.0">
-<element-set namespace="http://apache.org/lenya/metadata/document/1.0">
-<element key="mimeType">
-<value>application/xml</value>
+<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>

Added: lenya/sandbox/pubs/docu/content/authoring/5db9b0b0-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910776078.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5db9b0b0-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910776078.bak?rev=591298&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5db9b0b0-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910776078.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/5db9b0b0-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910776078.bak Fri Nov  2 03:57:25 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=591298&r1=591297&r2=591298&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  2 03:57:25 2007
@@ -1,5 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <XPSRevisionControl xmlns="">
+<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"/>
 <CheckOut identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781611367"/>
 </XPSRevisionControl>

Added: lenya/sandbox/pubs/docu/content/authoring/5dc06770-8731-11dc-ae46-9e7b5d14892d/en.1193910785505.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5dc06770-8731-11dc-ae46-9e7b5d14892d/en.1193910785505.bak?rev=591298&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5dc06770-8731-11dc-ae46-9e7b5d14892d/en.1193910785505.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/5dc06770-8731-11dc-ae46-9e7b5d14892d/en.1193910785505.bak Fri Nov  2 03:57:25 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>

Modified: lenya/sandbox/pubs/docu/content/authoring/5dc06770-8731-11dc-ae46-9e7b5d14892d/en.meta
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5dc06770-8731-11dc-ae46-9e7b5d14892d/en.meta?rev=591298&r1=591297&r2=591298&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5dc06770-8731-11dc-ae46-9e7b5d14892d/en.meta (original)
+++ lenya/sandbox/pubs/docu/content/authoring/5dc06770-8731-11dc-ae46-9e7b5d14892d/en.meta Fri Nov  2 03:57:25 2007
@@ -1,11 +1,16 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <metadata xmlns="http://apache.org/lenya/metadata/1.0">
-<element-set namespace="http://apache.org/lenya/metadata/document/1.0">
-<element key="mimeType">
-<value>application/xml</value>
+<element-set namespace="http://purl.org/dc/elements/1.1/">
+<element key="title">
+<value>Miscellaneous</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>

Added: lenya/sandbox/pubs/docu/content/authoring/5dc06770-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910785505.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5dc06770-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910785505.bak?rev=591298&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5dc06770-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910785505.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/5dc06770-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910785505.bak Fri Nov  2 03:57:25 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>Miscellaneous</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/5dc06770-8731-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5dc06770-8731-11dc-ae46-9e7b5d14892d/en.rcml?rev=591298&r1=591297&r2=591298&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5dc06770-8731-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/5dc06770-8731-11dc-ae46-9e7b5d14892d/en.rcml Fri Nov  2 03:57:25 2007
@@ -1,5 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <XPSRevisionControl xmlns="">
+<CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910785505" version="2"/>
+<CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910770172"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781619642" version="1"/>
 <CheckOut identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781607556"/>
 </XPSRevisionControl>

Added: lenya/sandbox/pubs/docu/content/authoring/5ef230b0-8731-11dc-ae46-9e7b5d14892d/en.1193910782196.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5ef230b0-8731-11dc-ae46-9e7b5d14892d/en.1193910782196.bak?rev=591298&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5ef230b0-8731-11dc-ae46-9e7b5d14892d/en.1193910782196.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/5ef230b0-8731-11dc-ae46-9e7b5d14892d/en.1193910782196.bak Fri Nov  2 03:57:25 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>

Modified: lenya/sandbox/pubs/docu/content/authoring/5ef230b0-8731-11dc-ae46-9e7b5d14892d/en.meta
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5ef230b0-8731-11dc-ae46-9e7b5d14892d/en.meta?rev=591298&r1=591297&r2=591298&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5ef230b0-8731-11dc-ae46-9e7b5d14892d/en.meta (original)
+++ lenya/sandbox/pubs/docu/content/authoring/5ef230b0-8731-11dc-ae46-9e7b5d14892d/en.meta Fri Nov  2 03:57:25 2007
@@ -1,11 +1,16 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <metadata xmlns="http://apache.org/lenya/metadata/1.0">
-<element-set namespace="http://apache.org/lenya/metadata/document/1.0">
-<element key="mimeType">
-<value>application/xml</value>
+<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>

Added: lenya/sandbox/pubs/docu/content/authoring/5ef230b0-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910782196.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/5ef230b0-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910782196.bak?rev=591298&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/5ef230b0-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910782196.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/5ef230b0-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910782196.bak Fri Nov  2 03:57:25 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=591298&r1=591297&r2=591298&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  2 03:57:25 2007
@@ -1,5 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <XPSRevisionControl xmlns="">
+<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"/>
 <CheckOut identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781603587"/>
 </XPSRevisionControl>

Added: lenya/sandbox/pubs/docu/content/authoring/601d4330-8731-11dc-ae46-9e7b5d14892d/en.1193910796571.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/601d4330-8731-11dc-ae46-9e7b5d14892d/en.1193910796571.bak?rev=591298&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/601d4330-8731-11dc-ae46-9e7b5d14892d/en.1193910796571.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/601d4330-8731-11dc-ae46-9e7b5d14892d/en.1193910796571.bak Fri Nov  2 03:57:25 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>

Modified: lenya/sandbox/pubs/docu/content/authoring/601d4330-8731-11dc-ae46-9e7b5d14892d/en.meta
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/601d4330-8731-11dc-ae46-9e7b5d14892d/en.meta?rev=591298&r1=591297&r2=591298&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/601d4330-8731-11dc-ae46-9e7b5d14892d/en.meta (original)
+++ lenya/sandbox/pubs/docu/content/authoring/601d4330-8731-11dc-ae46-9e7b5d14892d/en.meta Fri Nov  2 03:57:25 2007
@@ -1,11 +1,16 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <metadata xmlns="http://apache.org/lenya/metadata/1.0">
-<element-set namespace="http://apache.org/lenya/metadata/document/1.0">
-<element key="mimeType">
-<value>application/xml</value>
+<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>

Added: lenya/sandbox/pubs/docu/content/authoring/601d4330-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910796571.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/601d4330-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910796571.bak?rev=591298&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/601d4330-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910796571.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/601d4330-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910796571.bak Fri Nov  2 03:57:25 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=591298&r1=591297&r2=591298&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  2 03:57:25 2007
@@ -1,5 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <XPSRevisionControl xmlns="">
+<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"/>
 <CheckOut identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781610805"/>
 </XPSRevisionControl>

Added: lenya/sandbox/pubs/docu/content/authoring/614659e0-8731-11dc-ae46-9e7b5d14892d/en.1193910781187.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/614659e0-8731-11dc-ae46-9e7b5d14892d/en.1193910781187.bak?rev=591298&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/614659e0-8731-11dc-ae46-9e7b5d14892d/en.1193910781187.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/614659e0-8731-11dc-ae46-9e7b5d14892d/en.1193910781187.bak Fri Nov  2 03:57:25 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>

Modified: lenya/sandbox/pubs/docu/content/authoring/614659e0-8731-11dc-ae46-9e7b5d14892d/en.meta
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/614659e0-8731-11dc-ae46-9e7b5d14892d/en.meta?rev=591298&r1=591297&r2=591298&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/614659e0-8731-11dc-ae46-9e7b5d14892d/en.meta (original)
+++ lenya/sandbox/pubs/docu/content/authoring/614659e0-8731-11dc-ae46-9e7b5d14892d/en.meta Fri Nov  2 03:57:25 2007
@@ -1,11 +1,16 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <metadata xmlns="http://apache.org/lenya/metadata/1.0">
-<element-set namespace="http://apache.org/lenya/metadata/document/1.0">
-<element key="mimeType">
-<value>application/xml</value>
+<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>

Added: lenya/sandbox/pubs/docu/content/authoring/614659e0-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910781187.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/614659e0-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910781187.bak?rev=591298&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/614659e0-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910781187.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/614659e0-8731-11dc-ae46-9e7b5d14892d/en.meta.1193910781187.bak Fri Nov  2 03:57:25 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=591298&r1=591297&r2=591298&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  2 03:57:25 2007
@@ -1,5 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <XPSRevisionControl xmlns="">
+<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"/>
 <CheckOut identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781607988"/>
 </XPSRevisionControl>



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