You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by jw...@apache.org on 2005/05/09 14:00:47 UTC

svn commit: r169299 [2/2] - in /lenya/trunk/src: java/org/apache/lenya/cms/ant/ java/org/apache/lenya/cms/cocoon/components/modules/input/ java/org/apache/lenya/cms/metadata/ java/org/apache/lenya/cms/metadata/dublincore/ java/org/apache/lenya/cms/metadata/usecases/ java/org/apache/lenya/cms/publication/ java/org/apache/lenya/cms/site/usecases/ test/org/apache/lenya/cms/publication/ webapp/lenya/pubs/default/content/authoring/concepts/ webapp/lenya/pubs/default/content/authoring/doctypes/ webapp/lenya/pubs/default/content/authoring/doctypes/xhtml-document/ webapp/lenya/pubs/default/content/authoring/features/ webapp/lenya/pubs/default/content/authoring/index/ webapp/lenya/pubs/default/content/authoring/links/ webapp/lenya/pubs/default/content/authoring/tutorial/ webapp/lenya/pubs/default/content/authoring/tutorial/new_doctype/

Modified: lenya/trunk/src/java/org/apache/lenya/cms/site/usecases/Create.java
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/java/org/apache/lenya/cms/site/usecases/Create.java?rev=169299&r1=169298&r2=169299&view=diff
==============================================================================
--- lenya/trunk/src/java/org/apache/lenya/cms/site/usecases/Create.java (original)
+++ lenya/trunk/src/java/org/apache/lenya/cms/site/usecases/Create.java Mon May  9 05:00:43 2005
@@ -27,6 +27,8 @@
 import org.apache.cocoon.environment.Session;
 import org.apache.lenya.ac.Identity;
 import org.apache.lenya.ac.User;
+import org.apache.lenya.cms.metadata.LenyaMetaData;
+import org.apache.lenya.cms.metadata.MetaData;
 import org.apache.lenya.cms.metadata.dublincore.DublinCore;
 import org.apache.lenya.cms.publication.Document;
 import org.apache.lenya.cms.publication.DocumentException;
@@ -44,7 +46,7 @@
 import org.apache.lenya.transaction.Transactionable;
 
 /**
- * Abstract superclass for usecases to create a resource.
+ * Abstract superclass for usecases to create a document.
  * 
  * @version $Id$
  */
@@ -156,19 +158,26 @@
      * @throws DocumentException if an error occurs.
      */
     protected void setMetaData(Document document) throws DocumentException {
-        DublinCore dublinCore = (DublinCore) document.getMetaData();
-        dublinCore.setValue(DublinCore.ELEMENT_TITLE,
+        MetaData metaData = document.getMetaDataManager().getDublinCoreMetaData();
+        metaData.setValue(DublinCore.ELEMENT_TITLE,
                 getParameterAsString(DublinCore.ELEMENT_TITLE));
-        dublinCore.setValue(DublinCore.ELEMENT_CREATOR,
+        metaData.setValue(DublinCore.ELEMENT_CREATOR,
                 getParameterAsString(DublinCore.ELEMENT_CREATOR));
-        dublinCore.setValue(DublinCore.ELEMENT_PUBLISHER,
+        metaData.setValue(DublinCore.ELEMENT_PUBLISHER,
                 getParameterAsString(DublinCore.ELEMENT_PUBLISHER));
-        dublinCore.setValue(DublinCore.ELEMENT_SUBJECT,
+        metaData.setValue(DublinCore.ELEMENT_SUBJECT,
                 getParameterAsString(DublinCore.ELEMENT_SUBJECT));
-        dublinCore.setValue(DublinCore.ELEMENT_DATE, getParameterAsString(DublinCore.ELEMENT_DATE));
-        dublinCore.setValue(DublinCore.ELEMENT_RIGHTS,
+        metaData.setValue(DublinCore.ELEMENT_DATE, getParameterAsString(DublinCore.ELEMENT_DATE));
+        metaData.setValue(DublinCore.ELEMENT_RIGHTS,
                 getParameterAsString(DublinCore.ELEMENT_RIGHTS));
-        dublinCore.setValue(DublinCore.ELEMENT_LANGUAGE, getParameterAsString(LANGUAGE));
+        metaData.setValue(DublinCore.ELEMENT_LANGUAGE, getParameterAsString(LANGUAGE));
+        metaData.save();
+
+        // Now write Lenya internal metadata
+        MetaData lenyaMetaData = document.getMetaDataManager().getLenyaMetaData();
+        lenyaMetaData.setValue(LenyaMetaData.ELEMENT_RESOURCE_TYPE, getDocumentTypeName());
+        lenyaMetaData.setValue(LenyaMetaData.ELEMENT_CONTENT_TYPE, "xml");
+        lenyaMetaData.save();
     }
 
     /**

Modified: lenya/trunk/src/java/org/apache/lenya/cms/site/usecases/Overview.java
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/java/org/apache/lenya/cms/site/usecases/Overview.java?rev=169299&r1=169298&r2=169299&view=diff
==============================================================================
--- lenya/trunk/src/java/org/apache/lenya/cms/site/usecases/Overview.java (original)
+++ lenya/trunk/src/java/org/apache/lenya/cms/site/usecases/Overview.java Mon May  9 05:00:43 2005
@@ -1,5 +1,5 @@
 /*
- * Copyright  1999-2004 The Apache Software Foundation
+ * Copyright  1999-2005 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.
@@ -16,6 +16,7 @@
  */
 package org.apache.lenya.cms.site.usecases;
 
+import org.apache.lenya.cms.metadata.MetaData;
 import org.apache.lenya.cms.metadata.dublincore.DublinCore;
 import org.apache.lenya.cms.publication.DocumentType;
 import org.apache.lenya.cms.publication.DocumentTypeResolver;
@@ -44,7 +45,7 @@
 
         DocumentTypeResolver doctypeResolver = null;
         try {
-            DublinCore dc = (DublinCore) getSourceDocument().getMetaData();
+            MetaData dc = (MetaData) getSourceDocument().getMetaDataManager().getDublinCoreMetaData();
             setParameter("languages", getSourceDocument().getLanguages());
             setParameter("title", dc.getFirstValue(DublinCore.ELEMENT_TITLE));
 
@@ -92,4 +93,4 @@
     public void setParameter(String name, Object value) {
         super.setParameter(name, value);
     }
-}
\ No newline at end of file
+}

Modified: lenya/trunk/src/test/org/apache/lenya/cms/publication/DublinCoreTest.java
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/test/org/apache/lenya/cms/publication/DublinCoreTest.java?rev=169299&r1=169298&r2=169299&view=diff
==============================================================================
--- lenya/trunk/src/test/org/apache/lenya/cms/publication/DublinCoreTest.java (original)
+++ lenya/trunk/src/test/org/apache/lenya/cms/publication/DublinCoreTest.java Mon May  9 05:00:43 2005
@@ -21,6 +21,7 @@
 import junit.textui.TestRunner;
 
 import org.apache.lenya.cms.PublicationHelper;
+import org.apache.lenya.cms.metadata.MetaData;
 import org.apache.lenya.cms.metadata.dublincore.DublinCore;
 
 /**
@@ -63,7 +64,7 @@
         Publication publication = PublicationHelper.getPublication();
         DocumentIdentityMap map = new DocumentIdentityMap();
         Document doc = map.get(publication, AREA, DOCUMENT_ID, LANGUAGE);
-        DublinCore dcCore = doc.getDublinCore();
+        MetaData dcCore = doc.getMetaDataManager().getDublinCoreMetaData();
         String title = dcCore.getFirstValue(DublinCore.ELEMENT_TITLE);
         String subject = dcCore.getFirstValue(DublinCore.ELEMENT_SUBJECT);
         String creator = dcCore.getFirstValue(DublinCore.ELEMENT_CREATOR);
@@ -74,7 +75,7 @@
 
         Document doc2 = map.get(publication, AREA, DOCUMENT_ID, LANGUAGE);
 
-        DublinCore dcCore2 = doc2.getDublinCore();
+        MetaData dcCore2 = doc2.getMetaDataManager().getDublinCoreMetaData();
         assertEquals(title, dcCore2.getFirstValue(DublinCore.ELEMENT_TITLE));
         assertEquals(subject, dcCore2.getFirstValue(DublinCore.ELEMENT_SUBJECT));
         assertEquals(dateIssued, dcCore2.getFirstValue(DublinCore.TERM_ISSUED));
@@ -90,4 +91,4 @@
             PublicationHelper.extractPublicationArguments(args);
         }
     }
-}
\ No newline at end of file
+}

Modified: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/concepts/index_de.xml
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/concepts/index_de.xml?rev=169299&r1=169298&r2=169299&view=diff
==============================================================================
--- lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/concepts/index_de.xml (original)
+++ lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/concepts/index_de.xml Mon May  9 05:00:43 2005
@@ -2,14 +2,10 @@
 
 <html xmlns="http://www.w3.org/1999/xhtml" 
 xmlns:xhtml="http://www.w3.org/1999/xhtml" 
-xmlns:dc="http://purl.org/dc/elements/1.1/" 
-xmlns:dcterms="http://purl.org/dc/terms/"
-xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0" 
-xhtml:dummy="FIXME:keepNamespace" dc:dummy="FIXME:keepNamespace" 
-lenya:dummy="FIXME:keepNamespace" dcterms:dummy="FIXME:keepNamespace">
+xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
 
 <!--
-  Copyright 1999-2004 The Apache Software Foundation
+  Copyright 1999-2005 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.
@@ -25,23 +21,6 @@
 -->
 
 <!-- $Id$ -->
-    <lenya:meta>
-        <dc:title>Lenya Konzepte kurz erkälrt</dc:title>
-        <dc:creator>Lenya Development Team</dc:creator>
-        <dc:subject>Lenya Konzepte</dc:subject>
-        <dc:description>Erklärt Lenya Konzepte.</dc:description>
-        <dc:publisher>Apache Software Foundation</dc:publisher>
-        <dc:contributor/>
-        <dc:date>2005-01-31</dc:date>
-        <dc:type/>
-        <dc:format/>
-        <dc:identifier/>
-        <dc:source/>
-        <dc:language>de</dc:language>
-        <dc:relation/>
-        <dc:coverage/>
-        <dc:rights>Alle Rechte vorbehalten</dc:rights>
-    </lenya:meta>
   <head>
     <title>Konzepte</title>
   </head>

Added: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/concepts/index_de.xml.meta
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/concepts/index_de.xml.meta?rev=169299&view=auto
==============================================================================
--- lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/concepts/index_de.xml.meta (added)
+++ lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/concepts/index_de.xml.meta Mon May  9 05:00:43 2005
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2005 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$ -->
+<lenya:document xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
+<lenya:meta>
+<lenya:internal>
+<lenya:resourceType>xhtml</lenya:resourceType>
+<lenya:contentType>xml</lenya:contentType>
+</lenya:internal>
+<lenya:dc>
+        <dc:title xmlns:dc="http://purl.org/dc/elements/1.1/">Lenya Konzepte kurz erklärt</dc:title>
+        <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Lenya Development Team</dc:creator>
+        <dc:subject xmlns:dc="http://purl.org/dc/elements/1.1/">Lenya Konzepte</dc:subject>
+        <dc:description xmlns:dc="http://purl.org/dc/elements/1.1/">Erklärt Lenya Konzepte.</dc:description>
+        <dc:publisher xmlns:dc="http://purl.org/dc/elements/1.1/">Apache Software Foundation</dc:publisher>
+        <dc:contributor xmlns:dc="http://purl.org/dc/elements/1.1/" />
+        <dc:date xmlns:dc="http://purl.org/dc/elements/1.1/">2005-01-31</dc:date>
+        <dc:type xmlns:dc="http://purl.org/dc/elements/1.1/" />
+        <dc:format xmlns:dc="http://purl.org/dc/elements/1.1/" />
+        <dc:identifier xmlns:dc="http://purl.org/dc/elements/1.1/" />
+        <dc:source xmlns:dc="http://purl.org/dc/elements/1.1/" />
+        <dc:language xmlns:dc="http://purl.org/dc/elements/1.1/">de</dc:language>
+        <dc:relation xmlns:dc="http://purl.org/dc/elements/1.1/" />
+        <dc:coverage xmlns:dc="http://purl.org/dc/elements/1.1/" />
+        <dc:rights xmlns:dc="http://purl.org/dc/elements/1.1/">Alle Rechte vorbehalten</dc:rights>
+</lenya:dc>
+</lenya:meta>
+</lenya:document>

Propchange: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/concepts/index_de.xml.meta
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/concepts/index_en.xml
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/concepts/index_en.xml?rev=169299&r1=169298&r2=169299&view=diff
==============================================================================
--- lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/concepts/index_en.xml (original)
+++ lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/concepts/index_en.xml Mon May  9 05:00:43 2005
@@ -1,13 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <html xmlns="http://www.w3.org/1999/xhtml" 
 xmlns:xhtml="http://www.w3.org/1999/xhtml" 
-xmlns:dc="http://purl.org/dc/elements/1.1/" 
-xmlns:dcterms="http://purl.org/dc/terms/"
-xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0" 
-xhtml:dummy="FIXME:keepNamespace" dc:dummy="FIXME:keepNamespace" 
-lenya:dummy="FIXME:keepNamespace" dcterms:dummy="FIXME:keepNamespace">
+xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
 <!--
-  Copyright 1999-2004 The Apache Software Foundation
+  Copyright 1999-2005 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.
@@ -23,23 +19,6 @@
 -->
 
 <!-- $Id$ -->
-    <lenya:meta>
-        <dc:title>Lenya Concepts quickly explained</dc:title>
-        <dc:creator>Lenya Development Team</dc:creator>
-        <dc:subject>Lenya Concepts</dc:subject>
-        <dc:description>Explains Lenya concepts</dc:description>
-        <dc:publisher>Apache Software Foundation</dc:publisher>
-        <dc:contributor/>
-        <dc:date>2005-01-31</dc:date>
-        <dc:type/>
-        <dc:format/>
-        <dc:identifier/>
-        <dc:source/>
-        <dc:language>en</dc:language>
-        <dc:relation/>
-        <dc:coverage/>
-        <dc:rights>All rights reserved</dc:rights>
-    </lenya:meta>
   <head>
     <title>Concepts</title>
   </head>

Added: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/concepts/index_en.xml.meta
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/concepts/index_en.xml.meta?rev=169299&view=auto
==============================================================================
--- lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/concepts/index_en.xml.meta (added)
+++ lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/concepts/index_en.xml.meta Mon May  9 05:00:43 2005
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2005 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$ -->
+<lenya:document xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
+<lenya:meta>
+<lenya:internal>
+<lenya:resourceType>xhtml</lenya:resourceType>
+<lenya:contentType>xml</lenya:contentType>
+</lenya:internal>
+<lenya:dc>
+        <dc:title xmlns:dc="http://purl.org/dc/elements/1.1/">Lenya Concepts quickly explained</dc:title>
+        <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Lenya Development Team</dc:creator>
+        <dc:subject xmlns:dc="http://purl.org/dc/elements/1.1/">Lenya Concepts</dc:subject>
+        <dc:description xmlns:dc="http://purl.org/dc/elements/1.1/">Explains Lenya concepts</dc:description>
+        <dc:publisher xmlns:dc="http://purl.org/dc/elements/1.1/">Apache Software Foundation</dc:publisher>
+        <dc:contributor xmlns:dc="http://purl.org/dc/elements/1.1/" />
+        <dc:date xmlns:dc="http://purl.org/dc/elements/1.1/">2005-01-31</dc:date>
+        <dc:type xmlns:dc="http://purl.org/dc/elements/1.1/" />
+        <dc:format xmlns:dc="http://purl.org/dc/elements/1.1/" />
+        <dc:identifier xmlns:dc="http://purl.org/dc/elements/1.1/" />
+        <dc:source xmlns:dc="http://purl.org/dc/elements/1.1/" />
+        <dc:language xmlns:dc="http://purl.org/dc/elements/1.1/">en</dc:language>
+        <dc:relation xmlns:dc="http://purl.org/dc/elements/1.1/" />
+        <dc:coverage xmlns:dc="http://purl.org/dc/elements/1.1/" />
+        <dc:rights xmlns:dc="http://purl.org/dc/elements/1.1/">All rights reserved</dc:rights>
+</lenya:dc>
+</lenya:meta>
+</lenya:document>

Propchange: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/concepts/index_en.xml.meta
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/index_de.xml
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/index_de.xml?rev=169299&r1=169298&r2=169299&view=diff
==============================================================================
--- lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/index_de.xml (original)
+++ lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/index_de.xml Mon May  9 05:00:43 2005
@@ -1,14 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <html xmlns="http://www.w3.org/1999/xhtml" 
 xmlns:xhtml="http://www.w3.org/1999/xhtml" 
-xmlns:dc="http://purl.org/dc/elements/1.1/" 
-xmlns:dcterms="http://purl.org/dc/terms/"
-xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0" 
-xhtml:dummy="FIXME:keepNamespace" dc:dummy="FIXME:keepNamespace" 
-lenya:dummy="FIXME:keepNamespace" dcterms:dummy="FIXME:keepNamespace">
+xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
 
 <!--
-  Copyright 1999-2004 The Apache Software Foundation
+  Copyright 1999-2005 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.
@@ -24,30 +20,13 @@
 -->
 
 <!-- $Id$ -->
-    <lenya:meta>
-        <dc:title>Einige Dokumenttyp Beispiele</dc:title>
-        <dc:creator>Lenya Development Team</dc:creator>
-        <dc:subject>Dokumenttyp Beispiele</dc:subject>
-       <dc:description>Enthält einige Beispiele von Dokumenttypen</dc:description>
-        <dc:publisher>Apache Software Foundation</dc:publisher>
-        <dc:contributor/>
-        <dc:date>2005-01-31</dc:date>
-        <dc:type/>
-        <dc:format/>
-        <dc:identifier/>
-        <dc:source/>
-        <dc:language>de</dc:language>
-        <dc:relation/>
-        <dc:coverage/>
-        <dc:rights>Alle Rechte vorbehalten</dc:rights>
-    </lenya:meta>
   <head>
     <title>Dokumenttyp Beispiele</title>
   </head>
   <body>
     <h1>Dokumenttyp Beispiele</h1>
 
-    <p>The default publication comes with the <a href="/lenya/default/authoring/doctypes/xhtml-document.html">XHTML Doctype.</a></p>
+    <p>The default publication comes with the <a href="doctypes/xhtml-document.html">XHTML Doctype.</a></p>
     
     <p>The XHTML Doctype is for situations where
     users ask for complete freedom on what information can be inserted

Added: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/index_de.xml.meta
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/index_de.xml.meta?rev=169299&view=auto
==============================================================================
--- lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/index_de.xml.meta (added)
+++ lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/index_de.xml.meta Mon May  9 05:00:43 2005
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2005 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$ -->
+<lenya:document xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
+<lenya:meta>
+<lenya:internal>
+<lenya:resourceType>xhtml</lenya:resourceType>
+<lenya:contentType>xml</lenya:contentType>
+</lenya:internal>
+<lenya:dc>
+        <dc:title xmlns:dc="http://purl.org/dc/elements/1.1/">Einige Dokumenttyp Beispiele</dc:title>
+        <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Lenya Development Team</dc:creator>
+        <dc:subject xmlns:dc="http://purl.org/dc/elements/1.1/">Dokumenttyp Beispiele</dc:subject>
+        <dc:description xmlns:dc="http://purl.org/dc/elements/1.1/">Enthält einige Beispiele von Dokumenttypen</dc:description>
+        <dc:publisher xmlns:dc="http://purl.org/dc/elements/1.1/">Apache Software Foundation</dc:publisher>
+        <dc:contributor xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:date xmlns:dc="http://purl.org/dc/elements/1.1/">2005-01-31</dc:date>
+        <dc:type xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:format xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:identifier xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:source xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:language xmlns:dc="http://purl.org/dc/elements/1.1/">de</dc:language>
+        <dc:relation xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:coverage xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:rights xmlns:dc="http://purl.org/dc/elements/1.1/">Alle Rechte vorbehalten</dc:rights>
+</lenya:dc>
+</lenya:meta>
+</lenya:document>

Propchange: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/index_de.xml.meta
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/index_en.xml
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/index_en.xml?rev=169299&r1=169298&r2=169299&view=diff
==============================================================================
--- lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/index_en.xml (original)
+++ lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/index_en.xml Mon May  9 05:00:43 2005
@@ -1,14 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <html xmlns="http://www.w3.org/1999/xhtml" 
 xmlns:xhtml="http://www.w3.org/1999/xhtml" 
-xmlns:dc="http://purl.org/dc/elements/1.1/" 
-xmlns:dcterms="http://purl.org/dc/terms/"
-xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0" 
-xhtml:dummy="FIXME:keepNamespace" dc:dummy="FIXME:keepNamespace" 
-lenya:dummy="FIXME:keepNamespace" dcterms:dummy="FIXME:keepNamespace">
+xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
 
 <!--
-  Copyright 1999-2004 The Apache Software Foundation
+  Copyright 1999-2005 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.
@@ -24,30 +20,13 @@
 -->
 
 <!-- $Id$ -->
-    <lenya:meta>
-        <dc:title>Some Doctype Samples</dc:title>
-        <dc:creator>Lenya Development Team</dc:creator>
-        <dc:subject>Doctype Samples</dc:subject>
-        <dc:description>Contains some samples of Lenya doctypes</dc:description>
-        <dc:publisher>Apache Software Foundation</dc:publisher>
-        <dc:contributor/>
-        <dc:date>2005-01-31</dc:date>
-        <dc:type/>
-        <dc:format/>
-        <dc:identifier/>
-        <dc:source/>
-        <dc:language>en</dc:language>
-        <dc:relation/>
-        <dc:coverage/>
-        <dc:rights>All rights reserved</dc:rights>
-    </lenya:meta>
   <head>
     <title>Document Type Examples</title>
   </head>
   <body>
     <h1>Document Type Examples</h1>
 
-    <p>The default publication comes with the <a href="/lenya/default/authoring/doctypes/xhtml-document.html">XHTML Doctype</a>.</p>
+    <p>The default publication comes with the <a href="doctypes/xhtml-document.html">XHTML Doctype</a>.</p>
     
     <p>The XHTML Doctype is for situations where
     users ask for complete freedom on what information can be inserted

Added: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/index_en.xml.meta
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/index_en.xml.meta?rev=169299&view=auto
==============================================================================
--- lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/index_en.xml.meta (added)
+++ lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/index_en.xml.meta Mon May  9 05:00:43 2005
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2005 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$ -->
+<lenya:document xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
+<lenya:meta>
+<lenya:internal>
+<lenya:resourceType>xhtml</lenya:resourceType>
+<lenya:contentType>xml</lenya:contentType>
+</lenya:internal>
+<lenya:dc>
+        <dc:title xmlns:dc="http://purl.org/dc/elements/1.1/">Some Doctype Samples</dc:title>
+        <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Lenya Development Team</dc:creator>
+        <dc:subject xmlns:dc="http://purl.org/dc/elements/1.1/">Doctype Samples</dc:subject>
+        <dc:description xmlns:dc="http://purl.org/dc/elements/1.1/">Contains some samples of Lenya doctypes</dc:description>
+        <dc:publisher xmlns:dc="http://purl.org/dc/elements/1.1/">Apache Software Foundation</dc:publisher>
+        <dc:contributor xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:date xmlns:dc="http://purl.org/dc/elements/1.1/">2005-01-31</dc:date>
+        <dc:type xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:format xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:identifier xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:source xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:language xmlns:dc="http://purl.org/dc/elements/1.1/">en</dc:language>
+        <dc:relation xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:coverage xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:rights xmlns:dc="http://purl.org/dc/elements/1.1/">All rights reserved</dc:rights>
+</lenya:dc>
+</lenya:meta>
+</lenya:document>

Propchange: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/index_en.xml.meta
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/xhtml-document/index_de.xml
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/xhtml-document/index_de.xml?rev=169299&r1=169298&r2=169299&view=diff
==============================================================================
--- lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/xhtml-document/index_de.xml (original)
+++ lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/xhtml-document/index_de.xml Mon May  9 05:00:43 2005
@@ -1,14 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <html xmlns="http://www.w3.org/1999/xhtml" 
 xmlns:xhtml="http://www.w3.org/1999/xhtml" 
-xmlns:dc="http://purl.org/dc/elements/1.1/" 
-xmlns:dcterms="http://purl.org/dc/terms/"
-xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0" 
-xhtml:dummy="FIXME:keepNamespace" dc:dummy="FIXME:keepNamespace" 
-lenya:dummy="FIXME:keepNamespace" dcterms:dummy="FIXME:keepNamespace">
+xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
 
 <!--
-  Copyright 1999-2004 The Apache Software Foundation
+  Copyright 1999-2005 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.
@@ -24,23 +20,6 @@
 -->
 
 <!-- $Id$ -->
-    <lenya:meta>
-        <dc:title>Der XHTML Dokumenttyp</dc:title>
-        <dc:creator>Lenya Development Team</dc:creator>
-        <dc:subject>XHTML Dokumenttyp</dc:subject>
-       <dc:description>Erläutert den XHTML Dokumenttyp</dc:description>
-        <dc:publisher>Apache Software Foundation</dc:publisher>
-        <dc:contributor/>
-        <dc:date>2005-01-31</dc:date>
-        <dc:type/>
-        <dc:format/>
-        <dc:identifier/>
-        <dc:source/>
-        <dc:language>de</dc:language>
-        <dc:relation/>
-        <dc:coverage/>
-        <dc:rights>Alle Rechte vorbehalten</dc:rights>
-    </lenya:meta>
   <head>
     <title>Der XHTML Dokumenttyp</title>
   </head>

Added: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/xhtml-document/index_de.xml.meta
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/xhtml-document/index_de.xml.meta?rev=169299&view=auto
==============================================================================
--- lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/xhtml-document/index_de.xml.meta (added)
+++ lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/xhtml-document/index_de.xml.meta Mon May  9 05:00:43 2005
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2005 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$ -->
+<lenya:document xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
+<lenya:meta>
+<lenya:internal>
+<lenya:resourceType>xhtml</lenya:resourceType>
+<lenya:contentType>xml</lenya:contentType>
+</lenya:internal>
+<lenya:dc>
+        <dc:title xmlns:dc="http://purl.org/dc/elements/1.1/">Der XHTML Dokumenttyp</dc:title>
+        <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Lenya Development Team</dc:creator>
+        <dc:subject xmlns:dc="http://purl.org/dc/elements/1.1/">XHTML Dokumenttyp</dc:subject>
+        <dc:description xmlns:dc="http://purl.org/dc/elements/1.1/">Erläutert den XHTML Dokumenttyp</dc:description>
+        <dc:publisher xmlns:dc="http://purl.org/dc/elements/1.1/">Apache Software Foundation</dc:publisher>
+        <dc:contributor xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:date xmlns:dc="http://purl.org/dc/elements/1.1/">2005-01-31</dc:date>
+        <dc:type xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:format xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:identifier xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:source xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:language xmlns:dc="http://purl.org/dc/elements/1.1/">de</dc:language>
+        <dc:relation xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:coverage xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:rights xmlns:dc="http://purl.org/dc/elements/1.1/">Alle Rechte vorbehalten</dc:rights>
+</lenya:dc>
+</lenya:meta>
+</lenya:document>

Propchange: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/xhtml-document/index_de.xml.meta
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/xhtml-document/index_en.xml
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/xhtml-document/index_en.xml?rev=169299&r1=169298&r2=169299&view=diff
==============================================================================
--- lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/xhtml-document/index_en.xml (original)
+++ lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/xhtml-document/index_en.xml Mon May  9 05:00:43 2005
@@ -1,14 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <html xmlns="http://www.w3.org/1999/xhtml" 
 xmlns:xhtml="http://www.w3.org/1999/xhtml" 
-xmlns:dc="http://purl.org/dc/elements/1.1/" 
-xmlns:dcterms="http://purl.org/dc/terms/"
-xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0" 
-xhtml:dummy="FIXME:keepNamespace" dc:dummy="FIXME:keepNamespace" 
-lenya:dummy="FIXME:keepNamespace" dcterms:dummy="FIXME:keepNamespace">
+xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
 
 <!--
-  Copyright 1999-2004 The Apache Software Foundation
+  Copyright 1999-2005 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.
@@ -24,23 +20,6 @@
 -->
 
 <!-- $Id$ -->
-    <lenya:meta>
-        <dc:title>The XHTML Doctype</dc:title>
-        <dc:creator>Lenya Development Team</dc:creator>
-        <dc:subject>XHTML Doctype</dc:subject>
-       <dc:description>Explains the XHTML Doctype</dc:description>
-        <dc:publisher>Apache Software Foundation</dc:publisher>
-        <dc:contributor/>
-        <dc:date>2005-01-31</dc:date>
-        <dc:type/>
-        <dc:format/>
-        <dc:identifier/>
-        <dc:source/>
-        <dc:language>en</dc:language>
-        <dc:relation/>
-        <dc:coverage/>
-        <dc:rights>All rights reserved</dc:rights>
-    </lenya:meta>
   <head>
     <title>The XHTML Document Doctype</title>
   </head>

Added: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/xhtml-document/index_en.xml.meta
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/xhtml-document/index_en.xml.meta?rev=169299&view=auto
==============================================================================
--- lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/xhtml-document/index_en.xml.meta (added)
+++ lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/xhtml-document/index_en.xml.meta Mon May  9 05:00:43 2005
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2005 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$ -->
+<lenya:document xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
+<lenya:meta>
+<lenya:internal>
+<lenya:resourceType>xhtml</lenya:resourceType>
+<lenya:contentType>xml</lenya:contentType>
+</lenya:internal>
+<lenya:dc>
+        <dc:title xmlns:dc="http://purl.org/dc/elements/1.1/">The XHTML Doctype</dc:title>
+        <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Lenya Development Team</dc:creator>
+        <dc:subject xmlns:dc="http://purl.org/dc/elements/1.1/">XHTML Doctype</dc:subject>
+        <dc:description xmlns:dc="http://purl.org/dc/elements/1.1/">Explains the XHTML Doctype</dc:description>
+        <dc:publisher xmlns:dc="http://purl.org/dc/elements/1.1/">Apache Software Foundation</dc:publisher>
+        <dc:contributor xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:date xmlns:dc="http://purl.org/dc/elements/1.1/">2005-01-31</dc:date>
+        <dc:type xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:format xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:identifier xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:source xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:language xmlns:dc="http://purl.org/dc/elements/1.1/">en</dc:language>
+        <dc:relation xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:coverage xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:rights xmlns:dc="http://purl.org/dc/elements/1.1/">All rights reserved</dc:rights>
+</lenya:dc>
+</lenya:meta>
+</lenya:document>

Propchange: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/doctypes/xhtml-document/index_en.xml.meta
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/features/index_de.xml
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/features/index_de.xml?rev=169299&r1=169298&r2=169299&view=diff
==============================================================================
--- lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/features/index_de.xml (original)
+++ lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/features/index_de.xml Mon May  9 05:00:43 2005
@@ -1,14 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <html xmlns="http://www.w3.org/1999/xhtml" 
 xmlns:xhtml="http://www.w3.org/1999/xhtml" 
-xmlns:dc="http://purl.org/dc/elements/1.1/" 
-xmlns:dcterms="http://purl.org/dc/terms/"
-xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0" 
-xhtml:dummy="FIXME:keepNamespace" dc:dummy="FIXME:keepNamespace" 
-lenya:dummy="FIXME:keepNamespace" dcterms:dummy="FIXME:keepNamespace">
+xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
 
 <!--
-  Copyright 1999-2004 The Apache Software Foundation
+  Copyright 1999-2005 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.
@@ -24,23 +20,6 @@
 -->
 
 <!-- $Id$ -->
-    <lenya:meta>
-        <dc:title>Einige Lenya Funktionen kurz erklärt</dc:title>
-        <dc:creator>Lenya Development Team</dc:creator>
-        <dc:subject>Lenya Funktionen</dc:subject>
-        <dc:description>Erklärt einige Lenya Funktionen.</dc:description>
-        <dc:publisher>Apache Software Foundation</dc:publisher>
-        <dc:contributor/>
-        <dc:date>2005-01-31</dc:date>
-        <dc:type/>
-        <dc:format/>
-        <dc:identifier/>
-        <dc:source/>
-        <dc:language>de</dc:language>
-        <dc:relation/>
-        <dc:coverage/>
-        <dc:rights>Alle Rechte vorbehalten</dc:rights>
-    </lenya:meta>
   <head>
     <title>Funktionen</title>
   </head>

Added: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/features/index_de.xml.meta
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/features/index_de.xml.meta?rev=169299&view=auto
==============================================================================
--- lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/features/index_de.xml.meta (added)
+++ lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/features/index_de.xml.meta Mon May  9 05:00:43 2005
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2005 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$ -->
+<lenya:document xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
+<lenya:meta>
+<lenya:internal>
+<lenya:resourceType>xhtml</lenya:resourceType>
+<lenya:contentType>xml</lenya:contentType>
+</lenya:internal>
+<lenya:dc>
+        <dc:title xmlns:dc="http://purl.org/dc/elements/1.1/">Einige Lenya Funktionen kurz erklärt</dc:title>
+        <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Lenya Development Team</dc:creator>
+        <dc:subject xmlns:dc="http://purl.org/dc/elements/1.1/">Lenya Funktionen</dc:subject>
+        <dc:description xmlns:dc="http://purl.org/dc/elements/1.1/">Erklärt einige Lenya Funktionen.</dc:description>
+        <dc:publisher xmlns:dc="http://purl.org/dc/elements/1.1/">Apache Software Foundation</dc:publisher>
+        <dc:contributor xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:date xmlns:dc="http://purl.org/dc/elements/1.1/">2005-01-31</dc:date>
+        <dc:type xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:format xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:identifier xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:source xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:language xmlns:dc="http://purl.org/dc/elements/1.1/">de</dc:language>
+        <dc:relation xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:coverage xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:rights xmlns:dc="http://purl.org/dc/elements/1.1/">Alle Rechte vorbehalten</dc:rights>
+</lenya:dc>
+</lenya:meta>
+</lenya:document>

Propchange: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/features/index_de.xml.meta
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/features/index_en.xml
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/features/index_en.xml?rev=169299&r1=169298&r2=169299&view=diff
==============================================================================
--- lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/features/index_en.xml (original)
+++ lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/features/index_en.xml Mon May  9 05:00:43 2005
@@ -1,14 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <html xmlns="http://www.w3.org/1999/xhtml" 
 xmlns:xhtml="http://www.w3.org/1999/xhtml" 
-xmlns:dc="http://purl.org/dc/elements/1.1/" 
-xmlns:dcterms="http://purl.org/dc/terms/"
-xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0" 
-xhtml:dummy="FIXME:keepNamespace" dc:dummy="FIXME:keepNamespace" 
-lenya:dummy="FIXME:keepNamespace" dcterms:dummy="FIXME:keepNamespace">
+xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0" >
 
 <!--
-  Copyright 1999-2004 The Apache Software Foundation
+  Copyright 1999-2005 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.
@@ -24,23 +20,6 @@
 -->
 
 <!-- $Id$ -->
-    <lenya:meta>
-        <dc:title>Some Lenya Features quickly explained</dc:title>
-        <dc:creator>Lenya Development Team</dc:creator>
-        <dc:subject>Lenya Features</dc:subject>
-        <dc:description>Explains some Lenya features</dc:description>
-        <dc:publisher>Apache Software Foundation</dc:publisher>
-        <dc:contributor/>
-        <dc:date>2005-01-31</dc:date>
-        <dc:type/>
-        <dc:format/>
-        <dc:identifier/>
-        <dc:source/>
-        <dc:language>en</dc:language>
-        <dc:relation/>
-        <dc:coverage/>
-        <dc:rights>All rights reserved</dc:rights>
-    </lenya:meta>
   <head>
     <title>Features</title>
   </head>

Added: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/features/index_en.xml.meta
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/features/index_en.xml.meta?rev=169299&view=auto
==============================================================================
--- lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/features/index_en.xml.meta (added)
+++ lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/features/index_en.xml.meta Mon May  9 05:00:43 2005
@@ -0,0 +1,41 @@
+<!--
+  Copyright 1999-2005 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$ -->
+<lenya:document xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
+<lenya:meta>
+<lenya:internal>
+<lenya:resourceType>xhtml</lenya:resourceType>
+<lenya:contentType>xml</lenya:contentType>
+</lenya:internal>
+<lenya:dc>
+        <dc:title xmlns:dc="http://purl.org/dc/elements/1.1/">Some Lenya Features quickly explained</dc:title>
+        <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Lenya Development Team</dc:creator>
+        <dc:subject xmlns:dc="http://purl.org/dc/elements/1.1/">Lenya Features</dc:subject>
+        <dc:description xmlns:dc="http://purl.org/dc/elements/1.1/">Explains some Lenya features</dc:description>
+        <dc:publisher xmlns:dc="http://purl.org/dc/elements/1.1/">Apache Software Foundation</dc:publisher>
+        <dc:contributor xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:date xmlns:dc="http://purl.org/dc/elements/1.1/">2005-01-31</dc:date>
+        <dc:type xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:format xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:identifier xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:source xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:language xmlns:dc="http://purl.org/dc/elements/1.1/">en</dc:language>
+        <dc:relation xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:coverage xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:rights xmlns:dc="http://purl.org/dc/elements/1.1/">All rights reserved</dc:rights>
+</lenya:dc>
+</lenya:meta>
+</lenya:document>

Propchange: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/features/index_en.xml.meta
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/index/index_de.xml
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/index/index_de.xml?rev=169299&r1=169298&r2=169299&view=diff
==============================================================================
--- lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/index/index_de.xml (original)
+++ lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/index/index_de.xml Mon May  9 05:00:43 2005
@@ -1,13 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <html xmlns="http://www.w3.org/1999/xhtml" 
 xmlns:xhtml="http://www.w3.org/1999/xhtml" 
-xmlns:dc="http://purl.org/dc/elements/1.1/" 
-xmlns:dcterms="http://purl.org/dc/terms/"
-xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0" 
-xhtml:dummy="FIXME:keepNamespace" dc:dummy="FIXME:keepNamespace" 
-lenya:dummy="FIXME:keepNamespace" dcterms:dummy="FIXME:keepNamespace">
+xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
 <!--
-  Copyright 1999-2004 The Apache Software Foundation
+  Copyright 1999-2005 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.
@@ -23,23 +19,6 @@
 -->
 
 <!-- $Id$ -->
-    <lenya:meta>
-        <dc:title>Willkommen zur Lenya Standardpublikation</dc:title>
-        <dc:creator>Lenya Development Team</dc:creator>
-        <dc:subject>Lenya Standardpublikation</dc:subject>
-        <dc:description>Startseite der Lenya Standardpublikation</dc:description>
-        <dc:publisher>Apache Software Foundation</dc:publisher>
-        <dc:contributor/>
-        <dc:date>2005-01-31</dc:date>
-        <dc:type/>
-        <dc:format/>
-        <dc:identifier/>
-        <dc:source/>
-        <dc:language>de</dc:language>
-        <dc:relation/>
-        <dc:coverage/>
-        <dc:rights>Alle Rechte vorbehalten</dc:rights>
-    </lenya:meta>
   <head>
     <title>Welcome to the Default publication</title>
   </head>

Added: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/index/index_de.xml.meta
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/index/index_de.xml.meta?rev=169299&view=auto
==============================================================================
--- lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/index/index_de.xml.meta (added)
+++ lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/index/index_de.xml.meta Mon May  9 05:00:43 2005
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2005 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$ -->
+<lenya:document xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
+<lenya:meta>
+<lenya:internal>
+<lenya:resourceType>xhtml</lenya:resourceType>
+<lenya:contentType>xml</lenya:contentType>
+</lenya:internal>
+<lenya:dc>
+        <dc:title xmlns:dc="http://purl.org/dc/elements/1.1/">Willkommen zur Lenya Standardpublikation</dc:title>
+        <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Lenya Development Team</dc:creator>
+        <dc:subject xmlns:dc="http://purl.org/dc/elements/1.1/">Lenya Standardpublikation</dc:subject>
+        <dc:description xmlns:dc="http://purl.org/dc/elements/1.1/">Startseite der Lenya Standardpublikation</dc:description>
+        <dc:publisher xmlns:dc="http://purl.org/dc/elements/1.1/">Apache Software Foundation</dc:publisher>
+        <dc:contributor xmlns:dc="http://purl.org/dc/elements/1.1/" />
+        <dc:date xmlns:dc="http://purl.org/dc/elements/1.1/">2005-01-31</dc:date>
+        <dc:type xmlns:dc="http://purl.org/dc/elements/1.1/" />
+        <dc:format xmlns:dc="http://purl.org/dc/elements/1.1/" />
+        <dc:identifier xmlns:dc="http://purl.org/dc/elements/1.1/" />
+        <dc:source xmlns:dc="http://purl.org/dc/elements/1.1/" />
+        <dc:language xmlns:dc="http://purl.org/dc/elements/1.1/">de</dc:language>
+        <dc:relation xmlns:dc="http://purl.org/dc/elements/1.1/" />
+        <dc:coverage xmlns:dc="http://purl.org/dc/elements/1.1/" />
+        <dc:rights xmlns:dc="http://purl.org/dc/elements/1.1/">Alle Rechte vorbehalten</dc:rights>
+</lenya:dc>
+</lenya:meta>
+</lenya:document>

Propchange: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/index/index_de.xml.meta
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/index/index_en.xml
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/index/index_en.xml?rev=169299&r1=169298&r2=169299&view=diff
==============================================================================
--- lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/index/index_en.xml (original)
+++ lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/index/index_en.xml Mon May  9 05:00:43 2005
@@ -1,14 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <html xmlns="http://www.w3.org/1999/xhtml" 
 xmlns:xhtml="http://www.w3.org/1999/xhtml" 
-xmlns:dc="http://purl.org/dc/elements/1.1/" 
-xmlns:dcterms="http://purl.org/dc/terms/"
-xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0" 
-xhtml:dummy="FIXME:keepNamespace" dc:dummy="FIXME:keepNamespace" 
-lenya:dummy="FIXME:keepNamespace" dcterms:dummy="FIXME:keepNamespace">
+xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
 
 <!--
-  Copyright 1999-2004 The Apache Software Foundation
+  Copyright 1999-2005 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.
@@ -24,23 +20,6 @@
 -->
 
 <!-- $Id$ -->
-    <lenya:meta>
-        <dc:title>Welcome to the Lenya default publication</dc:title>
-        <dc:creator>Lenya Development Team</dc:creator>
-        <dc:subject>Lenya default publication</dc:subject>
-        <dc:description>The start page of the Lenya default publication</dc:description>
-        <dc:publisher>Apache Software Foundation</dc:publisher>
-        <dc:contributor/>
-        <dc:date>2005-01-31</dc:date>
-        <dc:type/>
-        <dc:format/>
-        <dc:identifier/>
-        <dc:source/>
-        <dc:language>en</dc:language>
-        <dc:relation/>
-        <dc:coverage/>
-        <dc:rights>All rights reserved</dc:rights>
-    </lenya:meta>
   <head>
     <title>Welcome to the Default publication</title>
   </head>

Added: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/index/index_en.xml.meta
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/index/index_en.xml.meta?rev=169299&view=auto
==============================================================================
--- lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/index/index_en.xml.meta (added)
+++ lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/index/index_en.xml.meta Mon May  9 05:00:43 2005
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2005 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$ -->
+<lenya:document xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
+<lenya:meta>
+<lenya:internal>
+<lenya:resourceType>xhtml</lenya:resourceType>
+<lenya:contentType>xml</lenya:contentType>
+</lenya:internal>
+<lenya:dc>
+        <dc:title xmlns:dc="http://purl.org/dc/elements/1.1/">Welcome to the Lenya default publication</dc:title>
+        <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Lenya Development Team</dc:creator>
+        <dc:subject xmlns:dc="http://purl.org/dc/elements/1.1/">Lenya default publication</dc:subject>
+        <dc:description xmlns:dc="http://purl.org/dc/elements/1.1/">The start page of the Lenya default publication</dc:description>
+        <dc:publisher xmlns:dc="http://purl.org/dc/elements/1.1/">Apache Software Foundation</dc:publisher>
+        <dc:contributor xmlns:dc="http://purl.org/dc/elements/1.1/" />
+        <dc:date xmlns:dc="http://purl.org/dc/elements/1.1/">2005-01-31</dc:date>
+        <dc:type xmlns:dc="http://purl.org/dc/elements/1.1/" />
+        <dc:format xmlns:dc="http://purl.org/dc/elements/1.1/" />
+        <dc:identifier xmlns:dc="http://purl.org/dc/elements/1.1/" />
+        <dc:source xmlns:dc="http://purl.org/dc/elements/1.1/" />
+        <dc:language xmlns:dc="http://purl.org/dc/elements/1.1/">en</dc:language>
+        <dc:relation xmlns:dc="http://purl.org/dc/elements/1.1/" />
+        <dc:coverage xmlns:dc="http://purl.org/dc/elements/1.1/" />
+        <dc:rights xmlns:dc="http://purl.org/dc/elements/1.1/">All rights reserved</dc:rights>
+</lenya:dc>
+</lenya:meta>
+</lenya:document>

Propchange: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/index/index_en.xml.meta
------------------------------------------------------------------------------
    svn:keywords = Id

Added: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/links/index_en.xml.meta
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/links/index_en.xml.meta?rev=169299&view=auto
==============================================================================
--- lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/links/index_en.xml.meta (added)
+++ lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/links/index_en.xml.meta Mon May  9 05:00:43 2005
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2005 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$ -->
+<lenya:document xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
+<lenya:meta>
+<lenya:internal>
+<lenya:resourceType>links</lenya:resourceType>
+<lenya:contentType>xml</lenya:contentType>
+</lenya:internal>
+<lenya:dc>
+</lenya:dc>
+</lenya:meta>
+</lenya:document>

Propchange: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/links/index_en.xml.meta
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/tutorial/index_de.xml
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/tutorial/index_de.xml?rev=169299&r1=169298&r2=169299&view=diff
==============================================================================
--- lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/tutorial/index_de.xml (original)
+++ lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/tutorial/index_de.xml Mon May  9 05:00:43 2005
@@ -1,14 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <html xmlns="http://www.w3.org/1999/xhtml" 
 xmlns:xhtml="http://www.w3.org/1999/xhtml" 
-xmlns:dc="http://purl.org/dc/elements/1.1/" 
-xmlns:dcterms="http://purl.org/dc/terms/"
-xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0" 
-xhtml:dummy="FIXME:keepNamespace" dc:dummy="FIXME:keepNamespace" 
-lenya:dummy="FIXME:keepNamespace" dcterms:dummy="FIXME:keepNamespace">
+xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
 
 <!--
-  Copyright 1999-2004 The Apache Software Foundation
+  Copyright 1999-2005 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.
@@ -24,23 +20,6 @@
 -->
 
 <!-- $Id$ -->
-    <lenya:meta>
-        <dc:title>Ein kurzes Lenya Tutorial</dc:title>
-        <dc:creator>Lenya Development Team</dc:creator>
-        <dc:subject>Lenya Tutorial</dc:subject>
-        <dc:description>Ein kurzes Tutorial zur Benutzung von Lenya</dc:description>
-        <dc:publisher>Apache Software Foundation</dc:publisher>
-        <dc:contributor/>
-        <dc:date>2005-01-31</dc:date>
-        <dc:type/>
-        <dc:format/>
-        <dc:identifier/>
-        <dc:source/>
-        <dc:language>de</dc:language>
-        <dc:relation/>
-        <dc:coverage/>
-        <dc:rights>Alle Rechte vorbehalten</dc:rights>
-    </lenya:meta>
   <head>
     <title>Lenya Tutorial</title>
   </head>

Added: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/tutorial/index_de.xml.meta
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/tutorial/index_de.xml.meta?rev=169299&view=auto
==============================================================================
--- lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/tutorial/index_de.xml.meta (added)
+++ lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/tutorial/index_de.xml.meta Mon May  9 05:00:43 2005
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2005 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$ -->
+<lenya:document xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
+<lenya:meta>
+<lenya:internal>
+<lenya:resourceType>xhtml</lenya:resourceType>
+<lenya:contentType>xml</lenya:contentType>
+</lenya:internal>
+<lenya:dc>
+        <dc:title xmlns:dc="http://purl.org/dc/elements/1.1/">Ein kurzes Lenya Tutorial</dc:title>
+        <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Lenya Development Team</dc:creator>
+        <dc:subject xmlns:dc="http://purl.org/dc/elements/1.1/">Lenya Tutorial</dc:subject>
+        <dc:description xmlns:dc="http://purl.org/dc/elements/1.1/">Ein kurzes Tutorial zur Benutzung von Lenya</dc:description>
+        <dc:publisher xmlns:dc="http://purl.org/dc/elements/1.1/">Apache Software Foundation</dc:publisher>
+        <dc:contributor xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:date xmlns:dc="http://purl.org/dc/elements/1.1/">2005-01-31</dc:date>
+        <dc:type xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:format xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:identifier xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:source xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:language xmlns:dc="http://purl.org/dc/elements/1.1/">de</dc:language>
+        <dc:relation xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:coverage xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:rights xmlns:dc="http://purl.org/dc/elements/1.1/">Alle Rechte vorbehalten</dc:rights>
+</lenya:dc>
+</lenya:meta>
+</lenya:document>
\ No newline at end of file

Propchange: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/tutorial/index_de.xml.meta
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/tutorial/index_en.xml
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/tutorial/index_en.xml?rev=169299&r1=169298&r2=169299&view=diff
==============================================================================
--- lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/tutorial/index_en.xml (original)
+++ lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/tutorial/index_en.xml Mon May  9 05:00:43 2005
@@ -1,14 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <html xmlns="http://www.w3.org/1999/xhtml" 
 xmlns:xhtml="http://www.w3.org/1999/xhtml" 
-xmlns:dc="http://purl.org/dc/elements/1.1/" 
-xmlns:dcterms="http://purl.org/dc/terms/"
-xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0" 
-xhtml:dummy="FIXME:keepNamespace" dc:dummy="FIXME:keepNamespace" 
-lenya:dummy="FIXME:keepNamespace" dcterms:dummy="FIXME:keepNamespace">
+xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
 
 <!--
-  Copyright 1999-2004 The Apache Software Foundation
+  Copyright 1999-2005 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.
@@ -24,23 +20,6 @@
 -->
 
 <!-- $Id$ -->
-    <lenya:meta>
-        <dc:title>A short Lenya Tutorial</dc:title>
-        <dc:creator>Lenya Development Team</dc:creator>
-        <dc:subject>Lenya Tutorial</dc:subject>
-        <dc:description>A short tutorial on using Apache Lenya</dc:description>
-        <dc:publisher>Apache Software Foundation</dc:publisher>
-        <dc:contributor/>
-        <dc:date>2005-01-31</dc:date>
-        <dc:type/>
-        <dc:format/>
-        <dc:identifier/>
-        <dc:source/>
-        <dc:language>en</dc:language>
-        <dc:relation/>
-        <dc:coverage/>
-        <dc:rights>All rights reserved</dc:rights>
-    </lenya:meta>
   <head>
     <title>Lenya Tutorial</title>
   </head>

Added: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/tutorial/index_en.xml.meta
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/tutorial/index_en.xml.meta?rev=169299&view=auto
==============================================================================
--- lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/tutorial/index_en.xml.meta (added)
+++ lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/tutorial/index_en.xml.meta Mon May  9 05:00:43 2005
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2005 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$ -->
+<lenya:document xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
+<lenya:meta>
+<lenya:internal>
+<lenya:resourceType>xhtml</lenya:resourceType>
+<lenya:contentType>xml</lenya:contentType>
+</lenya:internal>
+<lenya:dc>
+        <dc:title xmlns:dc="http://purl.org/dc/elements/1.1/">A short Lenya Tutorial</dc:title>
+        <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Lenya Development Team</dc:creator>
+        <dc:subject xmlns:dc="http://purl.org/dc/elements/1.1/">Lenya Tutorial</dc:subject>
+        <dc:description xmlns:dc="http://purl.org/dc/elements/1.1/">A short tutorial on using Apache Lenya</dc:description>
+        <dc:publisher xmlns:dc="http://purl.org/dc/elements/1.1/">Apache Software Foundation</dc:publisher>
+        <dc:contributor xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:date xmlns:dc="http://purl.org/dc/elements/1.1/">2005-01-31</dc:date>
+        <dc:type xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:format xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:identifier xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:source xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:language xmlns:dc="http://purl.org/dc/elements/1.1/">en</dc:language>
+        <dc:relation xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:coverage xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:rights xmlns:dc="http://purl.org/dc/elements/1.1/">All rights reserved</dc:rights>
+</lenya:dc>
+</lenya:meta>
+</lenya:document>
\ No newline at end of file

Propchange: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/tutorial/index_en.xml.meta
------------------------------------------------------------------------------
    svn:keywords = Id

Modified: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/tutorial/new_doctype/index_en.xml
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/tutorial/new_doctype/index_en.xml?rev=169299&r1=169298&r2=169299&view=diff
==============================================================================
--- lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/tutorial/new_doctype/index_en.xml (original)
+++ lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/tutorial/new_doctype/index_en.xml Mon May  9 05:00:43 2005
@@ -1,14 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <html xmlns="http://www.w3.org/1999/xhtml" 
 xmlns:xhtml="http://www.w3.org/1999/xhtml" 
-xmlns:dc="http://purl.org/dc/elements/1.1/" 
-xmlns:dcterms="http://purl.org/dc/terms/"
-xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0" 
-xhtml:dummy="FIXME:keepNamespace" dc:dummy="FIXME:keepNamespace" 
-lenya:dummy="FIXME:keepNamespace" dcterms:dummy="FIXME:keepNamespace">
+xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
 
 <!--
-  Copyright 1999-2004 The Apache Software Foundation
+  Copyright 1999-2005 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.
@@ -24,30 +20,13 @@
 -->
 
 <!-- $Id$ -->
-    <lenya:meta>
-        <dc:title>How to create a new doctype</dc:title>
-        <dc:creator>Lenya Development Team</dc:creator>
-        <dc:subject>New doctype</dc:subject>
-        <dc:description>Tutorial for new doctype creation</dc:description>
-        <dc:publisher>Apache Software Foundation</dc:publisher>
-        <dc:contributor/>
-        <dc:date>2005-01-31</dc:date>
-        <dc:type/>
-        <dc:format/>
-        <dc:identifier/>
-        <dc:source/>
-        <dc:language>en</dc:language>
-        <dc:relation/>
-        <dc:coverage/>
-        <dc:rights>All rights reserved</dc:rights>
-    </lenya:meta>
   <head>
     <title>Lenya Tutorial - How to create a new doctype</title>
   </head>
   <body>
     <h1>Lenya Tutorial - How to create a new doctype</h1>
 
-    <p>NOTE: Also see the <a href="http://wiki.cocoondev.org/Wiki.jsp?page=LenyaAddingCustomDocType">Wiki</a></p>
+    <p>NOTE: Also see the <a href="http://wiki.apache.org/lenya/AddingCustomDocType">Wiki</a></p>
 
     <h2>The standard way</h2>
 

Added: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/tutorial/new_doctype/index_en.xml.meta
URL: http://svn.apache.org/viewcvs/lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/tutorial/new_doctype/index_en.xml.meta?rev=169299&view=auto
==============================================================================
--- lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/tutorial/new_doctype/index_en.xml.meta (added)
+++ lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/tutorial/new_doctype/index_en.xml.meta Mon May  9 05:00:43 2005
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 1999-2005 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$ -->
+<lenya:document xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
+<lenya:meta>
+<lenya:internal>
+<lenya:resourceType>xhtml</lenya:resourceType>
+<lenya:contentType>xml</lenya:contentType>
+</lenya:internal>
+<lenya:dc>
+        <dc:title xmlns:dc="http://purl.org/dc/elements/1.1/">How to create a new doctype</dc:title>
+        <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Lenya Development Team</dc:creator>
+        <dc:subject xmlns:dc="http://purl.org/dc/elements/1.1/">New doctype</dc:subject>
+        <dc:description xmlns:dc="http://purl.org/dc/elements/1.1/">Tutorial for new doctype creation</dc:description>
+        <dc:publisher xmlns:dc="http://purl.org/dc/elements/1.1/">Apache Software Foundation</dc:publisher>
+        <dc:contributor xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:date xmlns:dc="http://purl.org/dc/elements/1.1/">2005-01-31</dc:date>
+        <dc:type xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:format xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:identifier xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:source xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:language xmlns:dc="http://purl.org/dc/elements/1.1/">en</dc:language>
+        <dc:relation xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:coverage xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+        <dc:rights xmlns:dc="http://purl.org/dc/elements/1.1/">All rights reserved</dc:rights>
+</lenya:dc>
+</lenya:meta>
+</lenya:document>
\ No newline at end of file

Propchange: lenya/trunk/src/webapp/lenya/pubs/default/content/authoring/tutorial/new_doctype/index_en.xml.meta
------------------------------------------------------------------------------
    svn:keywords = Id



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