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 [22/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/c748a8c0-8730-11dc-ae46-9e7b5d14892d/en.1195221909051.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/c748a8c0-8730-11dc-ae46-9e7b5d14892d/en.1195221909051.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/c748a8c0-8730-11dc-ae46-9e7b5d14892d/en.1195221909051.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/c748a8c0-8730-11dc-ae46-9e7b5d14892d/en.1195221909051.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,162 @@
+<?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>The Collection Module</title>
+  </header>
+  <body>
+    
+    <section>
+      <title>Introduction</title>
+      <p>
+        The collection module provides a resource type and a document wrapper class to
+        use a document as a list of references to other documents. Typical examples are
+        category pages, dossiers, etc.
+      </p>
+    </section>
+  
+    <section>
+      <title>Collection Types</title>
+      <p>
+        Collections can either be static, which means that the reference list is stored
+        in the collection document, or dynamic, which means that the reference list is
+        generated when the collection is accessed. The type is determined by the <code>type</code>
+        attribute of the document element (see examples below). At the moment, the following types
+        are supported:
+      </p>
+      <ul>
+        <li>manual</li>
+        <li>children</li>
+        <li>link</li>
+      </ul>
+    </section>
+    
+    <section>
+      <title>Static Collections (Type "manual")</title>
+      <p>
+        This is the default type which is used when no <code>type</code> attribute
+        is provided. The documents have to be explicitely specified.
+      </p>
+      <p>
+        The XML format of a static collection document looks like this:
+      </p>
+      <source xml:space="preserve"><![CDATA[<?xml version="1.0" encoding="UTF-8"?>
+<collection xmlns="http://apache.org/cocoon/lenya/collection/1.0" type="manual">
+  <document uuid="edf..."/>
+  <document uuid="a7r..."/>
+  ...
+</collection>]]></source>
+  
+    </section>
+    
+    <section>
+      <title>Dynamic Collections (Type "children")</title>
+      <p>
+        Collections of the type <code>children</code> assemble the document list
+        from the collection document's children in the site structure. 
+      </p>
+      <p>
+        The XML format of a collection document with the type <code>children</code> looks like this:
+      </p>
+      <source xml:space="preserve"><![CDATA[<?xml version="1.0" encoding="UTF-8"?>
+<collection xmlns="http://apache.org/cocoon/lenya/collection/1.0" type="children"/>]]></source>
+
+      <p>
+        The collection is expanded dynamically (i.e., the child document list is inserted)
+        when the <code>collection</code> format is requested.
+      </p>
+
+    </section>
+    
+    <section>
+      <title>Syndicated Collections (Type "link")</title>
+      <p>
+        You can use an external resource to provide the contents of the collection.
+        Typically, a separate module provides this content dynamically, for instance
+        by accessing a newsfeed. 
+      </p>
+      <p>
+        The link is specified using the <code>href</code> attribute of the
+        <code><![CDATA[<col:collection/>]]></code> element. Here's an example:
+      </p>
+      <source xml:space="preserve"><![CDATA[<collection xmlns="http://apache.org/cocoon/lenya/collection/1.0"
+  href="cocoon://modules/feed/atom/http://apache-lenya.blogspot.com/feeds/posts/default"
+  includeItems="3" type="link"/>]]></source>
+  
+      <p>
+        In this example, the feed module accesses the specified URL and returns
+        a valid collection document, wrapping the feed items in <code><![CDATA[<col:document>]]></code>
+        elements.
+      </p>
+    </section>
+    
+    <section>
+      <title>Resource Type Formats</title>
+      <p>
+        At the moment, only the <code>collection</code> format is supported.
+        In the case of static collections, the original XML document is returned.
+        For dynamic collections, the list of documents is inserted. Check out the
+        example below for a usage scenario.
+      </p>
+    </section>
+    
+    <section>
+      <title>Example: CInclude</title>
+      <p>
+        The collection module provides an XSLT stylesheet (<code>collection2cinclude.xsl</code>)
+        to simplify replacing the documents with their content to obtain an aggregation of all documents.
+        Additionally, the meta data of the collection document itself and of all contained
+        documents are included.
+      </p>
+      <p>
+        In the following example, the <code>collection</code> resource type is
+        explicitely specified. This allows to call the collection format from
+        a different resource type (e.g., the <code>news</code> resource type extends
+        the <code>collection</code> resource type).
+      </p>
+      <source xml:space="preserve"><![CDATA[<map:match pattern="*.xml/*/*/*/*">
+  <map:generate src="{resource-type:collection:format-collection}/{2}/{3}/{4}/{5}"/>
+  <map:transform src="fallback://lenya/modules/collection/xslt/collection2cinclude.xsl">
+    <map:parameter name="uuid" value="{4}"/>
+    <map:parameter name="language" value="{5}"/>
+  </map:transform>
+  <map:transform type="cinclude"/>
+  ...
+</map:match>]]></source>
+    </section>
+  
+    <section>
+      <title>The <code>CollectionWrapper</code> Class</title>
+      <p>
+        The <code>CollectionWrapper</code> class allows to manipulate collections
+        via the Java API. Here's a simple usage scenario:
+      </p>
+      <source xml:space="preserve"><![CDATA[CollectionWrapper collection = new CollectionWrapper(doc, getLogger());
+collection.add(anotherDoc);
+collection.save();]]></source>
+      <p>
+        You can extend the <code>CollectionWrapper</code> class to add custom
+        functionality or implement collections with specific behaviour. 
+      </p>
+      <p>
+        For more information, please consult the API documentation.
+      </p>
+    </section>
+
+  </body>
+</document>

Added: lenya/sandbox/pubs/docu/content/authoring/c748a8c0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221909051.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/c748a8c0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221909051.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/c748a8c0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221909051.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/c748a8c0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221909051.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>Overview</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/c748a8c0-8730-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/c748a8c0-8730-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/c748a8c0-8730-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/c748a8c0-8730-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="1195221909051" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221888650"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910782054" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910767118"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781630665" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/c7535720-8730-11dc-ae46-9e7b5d14892d/en.1195221901302.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/c7535720-8730-11dc-ae46-9e7b5d14892d/en.1195221901302.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/c7535720-8730-11dc-ae46-9e7b5d14892d/en.1195221901302.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/c7535720-8730-11dc-ae46-9e7b5d14892d/en.1195221901302.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/c7535720-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221901302.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/c7535720-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221901302.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/c7535720-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221901302.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/c7535720-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221901302.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>API</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/c7535720-8730-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/c7535720-8730-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/c7535720-8730-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/c7535720-8730-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="1195221901302" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221891314"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910780587" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910765913"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781634271" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/c894fee0-8730-11dc-ae46-9e7b5d14892d/en.1195221903034.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/c894fee0-8730-11dc-ae46-9e7b5d14892d/en.1195221903034.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/c894fee0-8730-11dc-ae46-9e7b5d14892d/en.1195221903034.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/c894fee0-8730-11dc-ae46-9e7b5d14892d/en.1195221903034.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2006 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 thorsten $ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+
+<document>
+  <header>
+    <title>The contactform Module</title>
+  </header>
+  <body>
+    <section>
+      <title>Introduction</title>
+      <p>
+        The <code>contactform</code> module provides a simple contact form.
+        This is a usage example for the usecasedocument module.
+      </p>
+    </section>
+  </body>
+</document>

Added: lenya/sandbox/pubs/docu/content/authoring/c894fee0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221903034.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/c894fee0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221903034.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/c894fee0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221903034.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/c894fee0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221903034.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>Overview</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/c894fee0-8730-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/c894fee0-8730-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/c894fee0-8730-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/c894fee0-8730-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="1195221903034" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221882103"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910784701" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910769494"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781621303" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/c89a5610-8730-11dc-ae46-9e7b5d14892d/en.1195221896717.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/c89a5610-8730-11dc-ae46-9e7b5d14892d/en.1195221896717.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/c89a5610-8730-11dc-ae46-9e7b5d14892d/en.1195221896717.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/c89a5610-8730-11dc-ae46-9e7b5d14892d/en.1195221896717.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/c89a5610-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221896717.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/c89a5610-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221896717.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/c89a5610-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221896717.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/c89a5610-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221896717.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>API</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/c89a5610-8730-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/c89a5610-8730-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/c89a5610-8730-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/c89a5610-8730-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="1195221896717" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221884295"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910784040" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910769084"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781626433" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/c9d4d1e0-8730-11dc-ae46-9e7b5d14892d/en.1195221905142.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/c9d4d1e0-8730-11dc-ae46-9e7b5d14892d/en.1195221905142.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/c9d4d1e0-8730-11dc-ae46-9e7b5d14892d/en.1195221905142.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/c9d4d1e0-8730-11dc-ae46-9e7b5d14892d/en.1195221905142.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2006 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 thorsten $ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+
+<document>
+  <header>
+    <title>The development Module</title>
+  </header>
+  <body>
+    <section>
+      <title>Introduction</title>
+      <p>
+        The <code>development</code> module provides resources to simplify the
+        development of Lenya applications.
+      </p>
+    </section>
+  </body>
+</document>

Added: lenya/sandbox/pubs/docu/content/authoring/c9d4d1e0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221905142.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/c9d4d1e0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221905142.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/c9d4d1e0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221905142.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/c9d4d1e0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221905142.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>Overview</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/c9d4d1e0-8730-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/c9d4d1e0-8730-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/c9d4d1e0-8730-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/c9d4d1e0-8730-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="1195221905142" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221884421"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910795236" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910767071"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781623777" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/c9ddab80-8730-11dc-ae46-9e7b5d14892d/en.1195221899454.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/c9ddab80-8730-11dc-ae46-9e7b5d14892d/en.1195221899454.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/c9ddab80-8730-11dc-ae46-9e7b5d14892d/en.1195221899454.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/c9ddab80-8730-11dc-ae46-9e7b5d14892d/en.1195221899454.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/c9ddab80-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221899454.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/c9ddab80-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221899454.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/c9ddab80-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221899454.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/c9ddab80-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221899454.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>API</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/c9ddab80-8730-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/c9ddab80-8730-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/c9ddab80-8730-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/c9ddab80-8730-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="1195221899454" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221889310"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910778679" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910764814"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781633863" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/cb267f30-8730-11dc-ae46-9e7b5d14892d/en.1195221903097.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/cb267f30-8730-11dc-ae46-9e7b5d14892d/en.1195221903097.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/cb267f30-8730-11dc-ae46-9e7b5d14892d/en.1195221903097.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/cb267f30-8730-11dc-ae46-9e7b5d14892d/en.1195221903097.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2006 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 thorsten $ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+
+<document>
+  <header>
+    <title>The editors Module</title>
+  </header>
+  <body>
+    <section>
+      <title>Introduction</title>
+      <p>
+        The <code>editors</code> module provides form-based editors.
+      </p>
+    </section>
+  </body>
+</document>

Added: lenya/sandbox/pubs/docu/content/authoring/cb267f30-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221903097.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/cb267f30-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221903097.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/cb267f30-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221903097.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/cb267f30-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221903097.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>Overview</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/cb267f30-8730-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/cb267f30-8730-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/cb267f30-8730-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/cb267f30-8730-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="1195221903097" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221882198"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910786947" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910771269"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781621219" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/cb2b8840-8730-11dc-ae46-9e7b5d14892d/en.1195221903438.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/cb2b8840-8730-11dc-ae46-9e7b5d14892d/en.1195221903438.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/cb2b8840-8730-11dc-ae46-9e7b5d14892d/en.1195221903438.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/cb2b8840-8730-11dc-ae46-9e7b5d14892d/en.1195221903438.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/cb2b8840-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221903438.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/cb2b8840-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221903438.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/cb2b8840-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221903438.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/cb2b8840-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221903438.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>API</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/cb2b8840-8730-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/cb2b8840-8730-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/cb2b8840-8730-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/cb2b8840-8730-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="1195221903438" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221882599"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910799136" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910770079"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781629446" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/cc7f0a50-8730-11dc-ae46-9e7b5d14892d/en.1195221895857.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/cc7f0a50-8730-11dc-ae46-9e7b5d14892d/en.1195221895857.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/cc7f0a50-8730-11dc-ae46-9e7b5d14892d/en.1195221895857.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/cc7f0a50-8730-11dc-ae46-9e7b5d14892d/en.1195221895857.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2006 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 thorsten $ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+
+<document>
+  <header>
+    <title>The export Module</title>
+  </header>
+  <body>
+    <section>
+      <title>Introduction</title>
+      <p>
+        The <code>export</code> module provides import and export functionality.
+        It is used to import the example content into the default publication.
+      </p>
+    </section>
+  </body>
+</document>

Added: lenya/sandbox/pubs/docu/content/authoring/cc7f0a50-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221895857.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/cc7f0a50-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221895857.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/cc7f0a50-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221895857.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/cc7f0a50-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221895857.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>Overview</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/cc7f0a50-8730-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/cc7f0a50-8730-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/cc7f0a50-8730-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/cc7f0a50-8730-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="1195221895857" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221883592"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910796127" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910767794"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781622257" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/cc876ec0-8730-11dc-ae46-9e7b5d14892d/en.1195221904226.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/cc876ec0-8730-11dc-ae46-9e7b5d14892d/en.1195221904226.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/cc876ec0-8730-11dc-ae46-9e7b5d14892d/en.1195221904226.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/cc876ec0-8730-11dc-ae46-9e7b5d14892d/en.1195221904226.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/cc876ec0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221904226.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/cc876ec0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221904226.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/cc876ec0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221904226.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/cc876ec0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221904226.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>API</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/cc876ec0-8730-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/cc876ec0-8730-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/cc876ec0-8730-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/cc876ec0-8730-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="1195221904226" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221883344"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910787263" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910771430"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781632107" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/cde26ae0-8730-11dc-ae46-9e7b5d14892d/en.1195221901032.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/cde26ae0-8730-11dc-ae46-9e7b5d14892d/en.1195221901032.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/cde26ae0-8730-11dc-ae46-9e7b5d14892d/en.1195221901032.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/cde26ae0-8730-11dc-ae46-9e7b5d14892d/en.1195221901032.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,62 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2006 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 thorsten $ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+
+<document>
+  <header>
+    <title>The FCKeditor Module</title>
+  </header>
+  <body>
+    
+    <section>
+      <title>Installation</title>
+      <ol>
+        <li>
+          Download the latest release of FCKeditor from the
+          <a href="http://www.fckeditor.net">FCKeditor homepage</a>.
+        </li>
+        <li>
+          Unzip it into the <code>src/modules/fckeditor/resources</code> directory.
+          The resources directory should now contain a directory named <code>fckeditor</code>.
+        </li>
+        <li>
+          Register the module with your publication, so that the appropriate menu
+          item can be displayed. In the <code><![CDATA[<modules>]]></code> section of
+          <code><![CDATA[$PUB_HOME/config/publication.xml]]></code>, add the line
+          <source xml:space="preserve"><![CDATA[<module name="fckeditor"/>]]></source>
+        </li>
+        <li>
+          Make sure you have the appropriate usecase policies in
+          <code><![CDATA[$PUB_HOME/config/ac/usecase-policies.xml]]></code>
+          (or use the usecases option under the admin tab in Lenya).
+          The following entry will allow the "admin" and "edit" roles access to the usecase:
+          <source xml:space="preserve"><![CDATA[<usecase id="fckeditor.edit">
+  <role id="admin" method="grant"/>
+  <role id="edit" method="grant"/>
+</usecase>]]></source>
+        </li>
+        <li>
+          Build Lenya.
+        </li>
+        <li>
+          Edit your document by clicking on "With FCKEditor" in the "Edit" menu.
+        </li>
+      </ol>
+    </section>
+    
+  </body>
+</document>

Added: lenya/sandbox/pubs/docu/content/authoring/cde26ae0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221901032.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/cde26ae0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221901032.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/cde26ae0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221901032.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/cde26ae0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221901032.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>Overview</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/cde26ae0-8730-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/cde26ae0-8730-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/cde26ae0-8730-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/cde26ae0-8730-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="1195221901032" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221891238"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910787923" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910771693"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781621697" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/cde7e920-8730-11dc-ae46-9e7b5d14892d/en.1195221906886.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/cde7e920-8730-11dc-ae46-9e7b5d14892d/en.1195221906886.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/cde7e920-8730-11dc-ae46-9e7b5d14892d/en.1195221906886.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/cde7e920-8730-11dc-ae46-9e7b5d14892d/en.1195221906886.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/cde7e920-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221906886.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/cde7e920-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221906886.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/cde7e920-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221906886.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/cde7e920-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221906886.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>API</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/cde7e920-8730-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/cde7e920-8730-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/cde7e920-8730-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/cde7e920-8730-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="1195221906886" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221886227"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910786437" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910770724"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781632222" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/cf2990e0-8730-11dc-ae46-9e7b5d14892d/en.1195221900085.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/cf2990e0-8730-11dc-ae46-9e7b5d14892d/en.1195221900085.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/cf2990e0-8730-11dc-ae46-9e7b5d14892d/en.1195221900085.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/cf2990e0-8730-11dc-ae46-9e7b5d14892d/en.1195221900085.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2006 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 thorsten $ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+
+<document>
+  <header>
+    <title>The kupu Module</title>
+  </header>
+  <body>
+    <section>
+      <title>Introduction</title>
+      <p>
+        The <code>kupu</code> module provides the integration of the Kupu WYSIWYG editor.
+      </p>
+    </section>
+  </body>
+</document>

Added: lenya/sandbox/pubs/docu/content/authoring/cf2990e0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221900085.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/cf2990e0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221900085.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/cf2990e0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221900085.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/cf2990e0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221900085.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>Overview</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/cf2990e0-8730-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/cf2990e0-8730-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/cf2990e0-8730-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/cf2990e0-8730-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="1195221900085" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221890111"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910781584" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910766983"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781630874" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/cf302090-8730-11dc-ae46-9e7b5d14892d/en.1195221896352.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/cf302090-8730-11dc-ae46-9e7b5d14892d/en.1195221896352.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/cf302090-8730-11dc-ae46-9e7b5d14892d/en.1195221896352.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/cf302090-8730-11dc-ae46-9e7b5d14892d/en.1195221896352.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/cf302090-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221896352.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/cf302090-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221896352.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/cf302090-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221896352.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/cf302090-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221896352.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>API</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/cf302090-8730-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/cf302090-8730-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/cf302090-8730-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/cf302090-8730-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="1195221896352" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221883857"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910794176" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910766472"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781618539" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/d086d6f0-8730-11dc-ae46-9e7b5d14892d/en.1195221908554.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/d086d6f0-8730-11dc-ae46-9e7b5d14892d/en.1195221908554.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/d086d6f0-8730-11dc-ae46-9e7b5d14892d/en.1195221908554.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/d086d6f0-8730-11dc-ae46-9e7b5d14892d/en.1195221908554.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2006 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 thorsten $ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+
+<document>
+  <header>
+    <title>The languageselector Module</title>
+  </header>
+  <body>
+    <section>
+      <title>Introduction</title>
+      <p>
+        The <code>languageselector</code> module provides an
+        XHTML widget to switch languages on a website.
+      </p>
+    </section>
+    <section>
+      <title>Adding Custom Flags</title>
+      <p>
+        More flags can be obtained from 
+        <a href="http://en.wikipedia.org/wiki/Gallery_of_sovereign_state_flags">Wikipedia</a>.
+      </p>
+      <p>
+        Be sure to rename them according to <code><![CDATA[<two-letter-language-code>.svg]]></code>.
+      </p>
+    </section>
+  </body>
+</document>

Added: lenya/sandbox/pubs/docu/content/authoring/d086d6f0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221908554.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/d086d6f0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221908554.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/d086d6f0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221908554.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/d086d6f0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221908554.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>Overview</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/d086d6f0-8730-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/d086d6f0-8730-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/d086d6f0-8730-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/d086d6f0-8730-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="1195221908554" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221888181"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910777952" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910763988"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781618453" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/d08f1450-8730-11dc-ae46-9e7b5d14892d/en.1195221899692.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/d08f1450-8730-11dc-ae46-9e7b5d14892d/en.1195221899692.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/d08f1450-8730-11dc-ae46-9e7b5d14892d/en.1195221899692.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/d08f1450-8730-11dc-ae46-9e7b5d14892d/en.1195221899692.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/d08f1450-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221899692.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/d08f1450-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221899692.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/d08f1450-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221899692.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/d08f1450-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221899692.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>API</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/d08f1450-8730-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/d08f1450-8730-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/d08f1450-8730-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/d08f1450-8730-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="1195221899692" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221889802"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910784204" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910769130"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781620058" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/d1d8d260-8730-11dc-ae46-9e7b5d14892d/en.1195221897824.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/d1d8d260-8730-11dc-ae46-9e7b5d14892d/en.1195221897824.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/d1d8d260-8730-11dc-ae46-9e7b5d14892d/en.1195221897824.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/d1d8d260-8730-11dc-ae46-9e7b5d14892d/en.1195221897824.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2006 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 thorsten $ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+
+<document>
+  <header>
+    <title>The lenyadoc Module</title>
+  </header>
+  <body>
+    <section>
+      <title>Introduction</title>
+      <p>
+        The <code>lenyadoc</code> module provides the implementation
+        of the <code>lenyadoc:/</code> protocol.
+      </p>
+    </section>
+  </body>
+</document>

Added: lenya/sandbox/pubs/docu/content/authoring/d1d8d260-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221897824.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/d1d8d260-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221897824.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/d1d8d260-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221897824.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/d1d8d260-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221897824.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>Overview</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/d1d8d260-8730-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/d1d8d260-8730-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/d1d8d260-8730-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/d1d8d260-8730-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="1195221897824" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221886270"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910792217" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910765307"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781624087" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/d1dddb70-8730-11dc-ae46-9e7b5d14892d/en.1195221898020.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/d1dddb70-8730-11dc-ae46-9e7b5d14892d/en.1195221898020.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/d1dddb70-8730-11dc-ae46-9e7b5d14892d/en.1195221898020.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/d1dddb70-8730-11dc-ae46-9e7b5d14892d/en.1195221898020.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/d1dddb70-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221898020.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/d1dddb70-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221898020.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/d1dddb70-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221898020.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/d1dddb70-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221898020.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>API</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/d1dddb70-8730-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/d1dddb70-8730-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/d1dddb70-8730-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/d1dddb70-8730-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="1195221898020" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221886605"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910780887" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910766222"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781624313" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/d3248c40-8730-11dc-ae46-9e7b5d14892d/en.1195221906727.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/d3248c40-8730-11dc-ae46-9e7b5d14892d/en.1195221906727.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/d3248c40-8730-11dc-ae46-9e7b5d14892d/en.1195221906727.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/d3248c40-8730-11dc-ae46-9e7b5d14892d/en.1195221906727.bak Fri Nov 16 07:11:58 2007
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2006 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 thorsten $ --><!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd">
+
+<document>
+  <header>
+    <title>The linkcheck Module</title>
+  </header>
+  <body>
+    <section>
+      <title>Introduction</title>
+      <p>
+        The <code>linkcheck</code> module provides link checking functionality.
+      </p>
+    </section>
+  </body>
+</document>

Added: lenya/sandbox/pubs/docu/content/authoring/d3248c40-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221906727.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/d3248c40-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221906727.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/d3248c40-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221906727.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/d3248c40-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221906727.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>Overview</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/d3248c40-8730-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/d3248c40-8730-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/d3248c40-8730-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/d3248c40-8730-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="1195221906727" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221885898"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910777219" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910763602"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781633629" version="1"/>

Added: lenya/sandbox/pubs/docu/content/authoring/d32d17c0-8730-11dc-ae46-9e7b5d14892d/en.1195221898858.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/d32d17c0-8730-11dc-ae46-9e7b5d14892d/en.1195221898858.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/d32d17c0-8730-11dc-ae46-9e7b5d14892d/en.1195221898858.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/d32d17c0-8730-11dc-ae46-9e7b5d14892d/en.1195221898858.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/d32d17c0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221898858.bak
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/d32d17c0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221898858.bak?rev=595691&view=auto
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/d32d17c0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221898858.bak (added)
+++ lenya/sandbox/pubs/docu/content/authoring/d32d17c0-8730-11dc-ae46-9e7b5d14892d/en.meta.1195221898858.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>API</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/d32d17c0-8730-11dc-ae46-9e7b5d14892d/en.rcml
URL: http://svn.apache.org/viewvc/lenya/sandbox/pubs/docu/content/authoring/d32d17c0-8730-11dc-ae46-9e7b5d14892d/en.rcml?rev=595691&r1=595690&r2=595691&view=diff
==============================================================================
--- lenya/sandbox/pubs/docu/content/authoring/d32d17c0-8730-11dc-ae46-9e7b5d14892d/en.rcml (original)
+++ lenya/sandbox/pubs/docu/content/authoring/d32d17c0-8730-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="1195221898858" version="3"/>
+<CheckOut identity="lenya" session="fde084c0-944b-11dc-8f2e-e6c0ff9903ab" time="1195221888141"/>
 <CheckIn backup="true" identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910779093" version="2"/>
 <CheckOut identity="lenya" session="1f12dc80-8860-11dc-ba66-cfbbb816bd0d" time="1193910765094"/>
 <CheckIn backup="true" identity="lenya" session="60798970-8730-11dc-ae46-9e7b5d14892d" time="1193781629877" version="1"/>



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