Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/config/publication.xml
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/config/publication.xml?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/config/publication.xml (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/config/publication.xml Thu Mar 19 13:29:18 2009
@@ -0,0 +1,143 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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: publication.xml 628761 2008-02-18 14:44:15Z andreas $ -->
+
+<publication xmlns="http://apache.org/cocoon/lenya/publication/1.1" >
+
+ <name>Default with Firedocs</name>
+ <description>This publication is a best practice, getting started publication.</description>
+ <!-- the @...@ macros are evaluated by ant at build time -->
+ <version>@lenya.version@</version>
+ <lenya-version>@lenya.version@</lenya-version>
+ <lenya-revision>@lenya.revision@</lenya-revision>
+ <cocoon-version>2.1.10-dev</cocoon-version>
+
+ <!-- The various languages need to be listed for verification and widget building -->
+ <languages>
+ <language default="true">en</language>
+ <language>de</language>
+ <language>he</language>
+ <language>es</language>
+ <language>fr</language>
+ </languages>
+ <!-- A template instantiator is used to create new publications based on this one. -->
+ <template-instantiator name="default"/>
+ <!-- A publication can inherit from another publication. "id" corresponds to the publication id
+ of that template (and thus to the name of the directory it's stored in) -->
+ <!--
+ <template id="some-pub-id"/>
+ -->
+ <path-mapper>org.apache.lenya.cms.publication.DefaultDocumentIdToPathMapper</path-mapper>
+ <document-builder name="default"/>
+ <breadcrumb-prefix/>
+ <site-manager name="tree"/>
+
+ <!-- Resource types need to be listed because of the workflow resp. because the workflow depends on the publication and not on the resource type -->
+ <resource-types>
+ <resource-type name="homepage" workflow="fallback://config/workflow/workflow.xml"/>
+ <resource-type name="links" workflow="fallback://config/workflow/workflow.xml"/>
+ <resource-type name="cforms" workflow="fallback://config/workflow/workflow.xml"/>
+ <resource-type name="opendocument" workflow="fallback://config/workflow/workflow.xml"/>
+ <resource-type name="resource" workflow="fallback://config/workflow/workflow.xml"/>
+ <resource-type name="usecase" workflow="fallback://config/workflow/workflow.xml"/>
+ <resource-type name="news" workflow="fallback://config/workflow/workflow.xml"/>
+ </resource-types>
+
+ <!-- Modules need to be listed because of the menu and i18n -->
+ <modules>
+ <module name="usecase"/>
+ <module name="editors"/>
+ <module name="links"/>
+ <module name="opendocument"/>
+ <module name="cforms"/>
+ <module name="homepage"/>
+ <module name="resource"/>
+ <module name="sitemanagement"/>
+ <module name="sitetree"/>
+ <module name="export"/>
+ <module name="workflow"/>
+ <module name="notification"/>
+ <module name="svg"/>
+ <module name="lucene"/>
+ <module name="development"/>
+ <module name="profiling"/>
+ <module name="languageselector"/>
+ <module name="administration"/>
+ <module name="acusecases"/>
+ <module name="news"/>
+ <module name="prettyprinting"/>
+ <module name="usecasedocument"/>
+ <module name="monitoring"/>
+ </modules>
+ <!-- TODO: The goal is to have a blog module ;-) -->
+ <!--
+ <module name="blog"/>
+ -->
+
+ <!-- You can specify a custom location for your content, outside the Lenya build tree. Note that you will probably also want
+ to specify custom locations for access control (see access-control/access-control.xml), so that all your dynamically generated data is in one place
+ for easy backup. -->
+ <!--
+ Relative to webapp context:
+ <content-dir src="lenya/pubs/default"/>
+ Absolute:
+ <content-dir src="/home/USERNAME/data/default"/>
+ <content-dir src="D:/tmp/default"/>
+ -->
+
+ <proxies>
+ <!--
+ Lenya can rewrite the links to cater to special proxy setups.
+ Make sure to update the GlobalProxies configuration in cocoon.xconf as well.
+ For information about these settings, read
+ http://lenya.apache.org/docs/2_0_x/tutorials/proxy.html
+
+ This example setting simulates the following situation:
+ * A customer wants a company hostname and URLs without Lenya-specific
+ path components for his live site.
+ * The server uses name-based virtual hosting with just one IP, i.e.
+ there can only be one SSL vhost, which is shared among several
+ customers. This implies the need for sub-directories in the proxy
+ URL.
+ * "authoring" should be ssl-protected. There is no need for a
+ customer hostname here, since it's not publicly visible.
+ * Any SSL-protected documents in "live" can be handled by the SSL
+ vhost (not using the company hostname is ok in this case, because
+ the customer does not want to pay for an additional IP address).
+
+ The desired customer hostname is customer.example.com.
+ The SSL vhost is called https://www.example.com.
+ The Lenya CMS for our customer is reachable as
+ http[s]://www.example.com/lenya/customer/authoring.
+ The global proxy for non-publication-specific resources shall be
+ http://www.example.com/lenya.
+ -->
+<!--
+ <proxy area="live" ssl="true" url="https://www.example.com/lenya/customer/live"/>
+ <proxy area="live" ssl="false" url="http://customer.example.com"/>
+ <proxy area="authoring" ssl="true" url="https://www.example.com/lenya/customer/authoring"/>
+ <proxy area="authoring" ssl="false" url="http://www.example.com/lenya/customer/authoring"/>
+ <proxy area="archive" ssl="true" url="https://www.example.com/lenya/customer/archive"/>
+ <proxy area="archive" ssl="false" url="http://www.example.com/lenya/customer/archive"/>
+ <proxy area="trash" ssl="true" url="https://www.example.com/lenya/customer/trash"/>
+ <proxy area="trash" ssl="false" url="http://www.example.com/lenya/customer/trash"/>
+-->
+ </proxies>
+
+</publication>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/config/search/lucene_index.xml
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/config/search/lucene_index.xml?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/config/search/lucene_index.xml (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/config/search/lucene_index.xml Thu Mar 19 13:29:18 2009
@@ -0,0 +1,56 @@
+<?xml version="1.0"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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.
+-->
+
+<indexes>
+ <index id="default-live" directory="lenya/pubs/default/work/lucene/index/live/index">
+ <structure>
+ <field id="url" type="keyword" />
+ <field id="title" type="text" storetext="true"/>
+ <field id="description" type="text" storetext="true"/>
+ <field id="subject" type="keyword" storetext="true" />
+ <field id="body" type="text" storetext="true"/>
+ </structure>
+ </index>
+ <index id="default-authoring" directory="lenya/pubs/default/work/lucene/index/authoring/index">
+ <structure>
+ <field id="url" type="keyword" />
+ <field id="title" type="text" storetext="true"/>
+ <field id="description" type="text" storetext="true"/>
+ <field id="subject" type="keyword" storetext="true" />
+ <field id="body" type="text" storetext="true"/>
+ </structure>
+ </index>
+ <index id="default-trash" directory="lenya/pubs/default/work/lucene/index/trash/index">
+ <structure>
+ <field id="url" type="keyword" />
+ <field id="title" type="text" storetext="true"/>
+ <field id="description" type="text" storetext="true"/>
+ <field id="subject" type="keyword" storetext="true" />
+ <field id="body" type="text" storetext="true"/>
+ </structure>
+ </index>
+ <index id="default-archive" directory="lenya/pubs/default/work/lucene/index/archive/index">
+ <structure>
+ <field id="url" type="keyword" />
+ <field id="title" type="text" storetext="true"/>
+ <field id="description" type="text" storetext="true"/>
+ <field id="subject" type="keyword" storetext="true" />
+ <field id="body" type="text" storetext="true"/>
+ </structure>
+ </index>
+</indexes>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/config/workflow/workflow.xml
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/config/workflow/workflow.xml?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/config/workflow/workflow.xml (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/config/workflow/workflow.xml Thu Mar 19 13:29:18 2009
@@ -0,0 +1,103 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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: workflow.xml 587898 2007-10-24 14:36:34Z rfrovarp $ -->
+
+<workflow xmlns="http://apache.org/cocoon/lenya/workflow/1.0">
+
+ <state id="authoring" initial="true"/>
+ <state id="review"/>
+ <state id="live"/>
+ <state id="trash"/>
+ <state id="archive"/>
+
+ <variable name="is_live" value="false"/>
+
+ <transition source="authoring" destination="review">
+ <event id="submit"/>
+ <condition class="org.apache.lenya.cms.workflow.RoleCondition">edit</condition>
+ </transition>
+
+ <transition source="review" destination="live">
+ <event id="publish"/>
+ <condition class="org.apache.lenya.cms.workflow.RoleCondition">review</condition>
+ <assign variable="is_live" value="true"/>
+ </transition>
+
+ <transition source="review" destination="authoring">
+ <event id="reject"/>
+ <condition class="org.apache.lenya.cms.workflow.RoleCondition">review</condition>
+ </transition>
+
+ <transition source="live" destination="authoring">
+ <event id="edit"/>
+ <condition class="org.apache.lenya.cms.workflow.RoleCondition">edit</condition>
+ </transition>
+
+ <transition source="authoring" destination="authoring">
+ <event id="edit"/>
+ <condition class="org.apache.lenya.cms.workflow.RoleCondition">edit</condition>
+ </transition>
+
+ <transition source="live" destination="authoring">
+ <event id="deactivate"/>
+ <condition class="org.apache.lenya.cms.workflow.RoleCondition">review</condition>
+ <assign variable="is_live" value="false"/>
+ </transition>
+
+ <transition source="review" destination="authoring">
+ <event id="deactivate"/>
+ <condition class="org.apache.lenya.workflow.impl.BooleanVariableCondition">is_live = true</condition>
+ <condition class="org.apache.lenya.cms.workflow.RoleCondition">review</condition>
+ <assign variable="is_live" value="false"/>
+ </transition>
+
+ <transition source="authoring" destination="authoring">
+ <event id="deactivate"/>
+ <condition class="org.apache.lenya.workflow.impl.BooleanVariableCondition">is_live = true</condition>
+ <condition class="org.apache.lenya.cms.workflow.RoleCondition">review</condition>
+ <assign variable="is_live" value="false"/>
+ </transition>
+
+ <transition source="authoring" destination="trash">
+ <event id="delete"/>
+ <condition class="org.apache.lenya.cms.workflow.RoleCondition">edit</condition>
+ <assign variable="is_live" value="false"/>
+ </transition>
+
+ <transition source="authoring" destination="archive">
+ <event id="archive"/>
+ <condition class="org.apache.lenya.cms.workflow.RoleCondition">edit</condition>
+ <assign variable="is_live" value="false"/>
+ </transition>
+
+ <transition source="archive" destination="authoring">
+ <event id="restore"/>
+ <condition class="org.apache.lenya.cms.workflow.RoleCondition">edit</condition>
+ </transition>
+
+ <transition source="archive" destination="trash">
+ <event id="delete"/>
+ <condition class="org.apache.lenya.cms.workflow.RoleCondition">edit</condition>
+ </transition>
+
+ <transition source="trash" destination="authoring">
+ <event id="restore"/>
+ <condition class="org.apache.lenya.cms.workflow.RoleCondition">edit</condition>
+ </transition>
+</workflow>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/error.xmap
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/error.xmap?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/error.xmap (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/error.xmap Thu Mar 19 13:29:18 2009
@@ -0,0 +1,38 @@
+<?xml version="1.0"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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.
+-->
+
+<map:sitemap xmlns:map="http://apache.org/cocoon/sitemap/1.0">
+
+ <map:pipelines>
+ <map:pipeline>
+ <map:match pattern="*/*/**">
+ <map:generate type="notifying"/>
+ <map:transform src="fallback://lenya/xslt/exception/generic.xsl">
+ <map:parameter name="root" value="/{1}/{2}"/>
+ </map:transform>
+ <map:transform type="i18n">
+ <map:parameter name="language" value="{page-envelope:language}"/>
+ </map:transform>
+ <map:transform type="proxy"/>
+ <map:transform src="fallback://lenya/xslt/util/strip_namespaces.xsl"/>
+ <map:serialize type="xhtml" status-code="500" />
+ </map:match>
+ </map:pipeline>
+ </map:pipelines>
+
+</map:sitemap>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/concepts/index_de
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/concepts/index_de?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/concepts/index_de (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/concepts/index_de Thu Mar 19 13:29:18 2009
@@ -0,0 +1,77 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<html xmlns="http://www.w3.org/1999/xhtml"
+xmlns:xhtml="http://www.w3.org/1999/xhtml"
+xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
+
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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_de 528434 2007-04-13 10:42:52Z andreas $ -->
+ <head>
+ <title>Konzepte</title>
+ </head>
+ <body>
+ <h1>Konzepte</h1>
+
+ <h2>Publikationen</h2>
+
+ <p>
+ Eine Website wird in Apache Lenya als <em>Publikation</em> bezeichnet.
+ </p>
+
+ <h2>Areas: Authoring, Live, ...</h2>
+
+ <p>
+ Lenya unterscheidet zwischen verschiedenen <em>Areas</em>, in denen
+ sich Dokumente befinden können:
+ </p>
+ <ul>
+ <li>
+ Die Authoring-Area dient dazu, Dokumente zu erstellen und zu editieren.
+ Hier sind alle CMS-Funktionen verfügbar.
+ </li>
+ <li>
+ Sobald ein Dokument publiziert ist, wird es in die Live-Area kopiert.
+ Die Live-Area kann direkt durch einen Web-Server veröffentlicht werden,
+ oder Sie können in einem weiteren Zwischenschritt die Inhalte von
+ der Live-Area zum eigentlichen Web-Server replizieren. In diesem Fall dient
+ die Live-Area als Vorschau auf den Inhalt, der vom eigentlichen Webserver
+ veröffentlicht wird.
+ </li>
+ <li>
+ Weitere Standard-Areas sind Trash und Archive. Bei Bedarf können zusätzliche
+ Areas definiert werden.
+ </li>
+ </ul>
+
+ <h2>Ressource-Typen</h2>
+
+ <p>
+ Da Apache Lenya auf Cocoon basiert, verfügt es über ein mächtiges
+ XML- und XSLT-Fundament. Dokumente können auf ihre Konformität zu
+ einem XSD- oder Relax-NG-Schema überprüft werden. Typischerweise
+ werden verschiedene Typen von Dokumenten definiert (z.B. Artikel,
+ Dossiers, ...), deren XML-Struktur durch unterschiedlichen Schemata
+ spezifiziert werden. Beim Editieren wird die Konformität zum XML-Schema
+ überprüft. Bei der Aufbereitung eines Dokumentes zur Darstellung
+ können verschiedene XML-Strukturen durch XSLT-Stylesheets auf
+ unterschiedliche Weise in verschiedene Layouts transformiert werden.
+ </p>
+
+ </body>
+</html>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/concepts/index_de.meta
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/concepts/index_de.meta?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/concepts/index_de.meta (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/concepts/index_de.meta Thu Mar 19 13:29:18 2009
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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_de.meta 557603 2007-07-19 12:48:31Z andreas $ -->
+<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:mimeType>application/xhtml+xml</lenya:mimeType>
+</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>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/concepts/index_en
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/concepts/index_en?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/concepts/index_en (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/concepts/index_en Thu Mar 19 13:29:18 2009
@@ -0,0 +1,66 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<html xmlns="http://www.w3.org/1999/xhtml"
+xmlns:xhtml="http://www.w3.org/1999/xhtml"
+xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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_en 528434 2007-04-13 10:42:52Z andreas $ -->
+ <head>
+ <title>Concepts</title>
+ </head>
+ <body>
+ <h1>Concepts</h1>
+
+ <h2>Publications</h2>
+
+ <p>In Apache Lenya, a website is called a
+ <strong>publication</strong>.</p>
+
+ <h2>Areas: Authoring, Live, ...</h2>
+
+ <p>Apache Lenya separates between different areas:</p>
+ <ul>
+ <li>The authoring area is for creating and editing of
+ content. All CMS functions are available here.</li>
+
+ <li>Once the content has been published it is moved to the live
+ area. The live area can be served by a web server directly or
+ you can add another intermediate step where the content is
+ replicated from the live area to the actual web server. In any
+ case the live area simply serves as a preview to the content
+ that will be served by the web server.</li>
+ <li>
+ Other standard areas are and archive. If necessary, further
+ areas can be declared.
+ </li>
+ </ul>
+
+ <h2>Resource Types</h2>
+
+ <p>As Apache Lenya is based on Apache Cocoon, it has strong XML and
+ XSLT foundations. It is possible to ensure that a document
+ conforms to an XML schema. Typically you define different types of
+ documents, like an news article or an opinion piece, conforming to
+ different XML schemas. These different types are referred to as
+ document types. They are used to ensure the XML schema conformance
+ when editing and typically also when preparing a presentation of
+ the document, where an opinion piece has a different layout than a
+ news article.</p>
+
+ </body>
+</html>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/concepts/index_en.meta
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/concepts/index_en.meta?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/concepts/index_en.meta (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/concepts/index_en.meta Thu Mar 19 13:29:18 2009
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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_en.meta 557603 2007-07-19 12:48:31Z andreas $ -->
+<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:mimeType>application/xhtml+xml</lenya:mimeType>
+</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>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/cforms/index_de
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/cforms/index_de?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/cforms/index_de (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/cforms/index_de Thu Mar 19 13:29:18 2009
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<data>
+ <contacts>
+ </contacts>
+</data>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/cforms/index_de.meta
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/cforms/index_de.meta?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/cforms/index_de.meta (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/cforms/index_de.meta Thu Mar 19 13:29:18 2009
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<lenya:document xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
+<lenya:meta>
+<lenya:dc>
+<dc:title xmlns:dc="http://purl.org/dc/elements/1.1/">CForms-Ressource-Typ</dc:title>
+<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">lenya</dc:creator>
+<dc:subject xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+<dc:publisher xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+<dc:date xmlns:dc="http://purl.org/dc/elements/1.1/">2005-10-13 11:19:30</dc:date>
+<dc:language xmlns:dc="http://purl.org/dc/elements/1.1/">de</dc:language>
+<dc:rights xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+</lenya:dc>
+<lenya:internal>
+<lenya:resourceType>cforms</lenya:resourceType>
+<lenya:contentType>xml</lenya:contentType>
+ <lenya:mimeType>application/xml</lenya:mimeType>
+</lenya:internal>
+</lenya:meta>
+</lenya:document>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/cforms/index_en
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/cforms/index_en?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/cforms/index_en (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/cforms/index_en Thu Mar 19 13:29:18 2009
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<data>
+ <contacts>
+ </contacts>
+</data>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/cforms/index_en.meta
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/cforms/index_en.meta?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/cforms/index_en.meta (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/cforms/index_en.meta Thu Mar 19 13:29:18 2009
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<lenya:document xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
+<lenya:meta>
+<lenya:dc>
+<dc:title xmlns:dc="http://purl.org/dc/elements/1.1/">CForms Resource Type</dc:title>
+<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">lenya</dc:creator>
+<dc:subject xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+<dc:publisher xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+<dc:date xmlns:dc="http://purl.org/dc/elements/1.1/">2005-10-13 11:19:30</dc:date>
+<dc:language xmlns:dc="http://purl.org/dc/elements/1.1/">en</dc:language>
+<dc:rights xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+</lenya:dc>
+<lenya:internal>
+<lenya:resourceType>cforms</lenya:resourceType>
+<lenya:contentType>xml</lenya:contentType>
+ <lenya:mimeType>application/xml</lenya:mimeType>
+</lenya:internal>
+</lenya:meta>
+</lenya:document>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/index_de
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/index_de?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/index_de (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/index_de Thu Mar 19 13:29:18 2009
@@ -0,0 +1,61 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<html xmlns="http://www.w3.org/1999/xhtml"
+xmlns:xhtml="http://www.w3.org/1999/xhtml"
+xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
+
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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_de 534353 2007-05-02 08:29:23Z andreas $ -->
+ <head>
+ <title>Beispiele für Ressource-Typen</title>
+ </head>
+ <body>
+ <h1>Beispiele für Ressource-Typen</h1>
+
+ <p>
+ Die Default-Publikation umfasst den <a href="/default/authoring/doctypes/xhtml-document_de.html">XHTML-Ressource-Typ</a>,
+ den <a href="/default/authoring/doctypes/links.html">Links-Ressource-Typ</a>,
+den <a href="/default/authoring/doctypes/opendocument_de.html">OpenDocument-Ressource-Typ</a> und
+den <a href="/default/authoring/doctypes/cforms.html">CForms-Ressource-Typ</a>.
+ </p>
+
+ <p>
+ Der <strong>XHTML-Ressource-Typ</strong> empfiehlt sich insbesondere dann, wenn dem Nutzer vollständige
+ Freiheit in Bezug auf die einzufügenden Informationen gewährt werden soll.
+ Dieser Ressource-Typ macht zwar wenige Einschränkungen, allerdings verliert
+ man dadurch einige der wichtigsten Vorteile restriktiverer Ressource-Typen.
+ </p>
+
+ <p>
+ Der <strong>Links-Ressource-Typ</strong> erlaubt es, Listen von Links zu verwalten. Er dient
+ hauptsächlich dazu, zu zeigen, dass Lenya mit beliebigen Ressource-Typen umgehen kann.
+ </p>
+
+ <p>
+ Der <strong>OpenDocument-Ressource-Typ</strong> ist ein standardisiertes XML-basiertes Dateiformat
+ für Office-Anwendungen. Er wurde von <a href="http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=office">OASIS</a>
+ entwickelt.
+ </p>
+
+ <p>
+ Der <strong>CForms-Ressource-Typ</strong> ist ein Beispiel, wie Lenya mit Formular-Daten auf der
+ Basis von Cocoon's CForms in Verbindung mit Ajax umgeht.
+ </p>
+
+ </body>
+</html>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/index_de.meta
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/index_de.meta?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/index_de.meta (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/index_de.meta Thu Mar 19 13:29:18 2009
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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_de.meta 557603 2007-07-19 12:48:31Z andreas $ -->
+<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:mimeType>application/xhtml+xml</lenya:mimeType>
+</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>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/index_en
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/index_en?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/index_en (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/index_en Thu Mar 19 13:29:18 2009
@@ -0,0 +1,61 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<html xmlns="http://www.w3.org/1999/xhtml"
+xmlns:xhtml="http://www.w3.org/1999/xhtml"
+xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
+
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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_en 542913 2007-05-30 19:07:29Z rfrovarp $ -->
+ <head>
+ <title>Resource Type Examples</title>
+ </head>
+ <body>
+ <h1>Resource Type Examples</h1>
+
+<p>
+The default publication comes with the <a href="/default/authoring/doctypes/xhtml-document.html">XHTML resource type</a>,
+the <a href="/default/authoring/doctypes/links.html">Links resource type</a>,
+the <a href="/default/authoring/doctypes/opendocument.html">OpenDocument resource type</a> and
+the <a href="/default/authoring/doctypes/cforms.html">CForms resource type</a>.
+</p>
+
+<p>
+The <strong>XHTML resource type</strong> is suitable for situations where
+users ask for complete freedom on what information can be inserted
+into a document. While this approach doesn't restrict you, it also
+looses some of the major benefits of well defined document types.
+</p>
+
+<p>
+The <strong>Links resource type</strong> is mainly to show that Lenya is able to handle
+arbitrary resource types but can also be used for link-lists.
+</p>
+
+<p>
+The <strong>OpenDocument resource type</strong> is a standardized XML-based
+file format specification suitable for office applications and has been developed
+by <a href="http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=office">OASIS</a>.
+</p>
+
+<p>
+The <strong>CForms resource type</strong> is an example of how Lenya manages formular data
+based on Cocoon's CForms in conjunction with Ajax.
+</p>
+
+ </body>
+</html>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/index_en.meta
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/index_en.meta?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/index_en.meta (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/index_en.meta Thu Mar 19 13:29:18 2009
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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_en.meta 557603 2007-07-19 12:48:31Z andreas $ -->
+<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:mimeType>application/xhtml+xml</lenya:mimeType>
+</lenya:internal>
+<lenya:dc>
+ <dc:title xmlns:dc="http://purl.org/dc/elements/1.1/">Some Resource Type 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/">Resource Type Samples</dc:subject>
+ <dc:description xmlns:dc="http://purl.org/dc/elements/1.1/">Contains some samples of Lenya resource types</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>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/links/index_de
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/links/index_de?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/links/index_de (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/links/index_de Thu Mar 19 13:29:18 2009
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<links xmlns="http://apache.org/lenya/pubs/default/1.0">
+ <title>Der Links-Ressource-Typ</title>
+ <link href="http://lenya.apache.org">Apache Lenya Website</link>
+ <link href="http://wiki.apache.org/lenya/">Apache Lenya Wiki</link>
+</links>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/links/index_de.meta
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/links/index_de.meta?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/links/index_de.meta (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/links/index_de.meta Thu Mar 19 13:29:18 2009
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<lenya:document xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
+<lenya:meta>
+<lenya:dc>
+<dc:title xmlns:dc="http://purl.org/dc/elements/1.1/">Links</dc:title>
+<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">lenya</dc:creator>
+<dc:subject xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+<dc:publisher xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+<dc:date xmlns:dc="http://purl.org/dc/elements/1.1/">2005-10-02 12:50:27</dc:date>
+<dc:language xmlns:dc="http://purl.org/dc/elements/1.1/">de</dc:language>
+<dc:rights xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+</lenya:dc>
+<lenya:internal>
+<lenya:resourceType>links</lenya:resourceType>
+<lenya:contentType>xml</lenya:contentType>
+ <lenya:mimeType>application/xml</lenya:mimeType>
+</lenya:internal>
+</lenya:meta>
+</lenya:document>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/links/index_en
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/links/index_en?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/links/index_en (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/links/index_en Thu Mar 19 13:29:18 2009
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<links xmlns="http://apache.org/lenya/pubs/default/1.0">
+ <title>The Links Resource Type</title>
+ <link href="http://lenya.apache.org">Apache Lenya Website</link>
+ <link href="http://wiki.apache.org/lenya/">Apache Lenya Wiki</link>
+</links>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/links/index_en.meta
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/links/index_en.meta?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/links/index_en.meta (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/links/index_en.meta Thu Mar 19 13:29:18 2009
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<lenya:document xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
+<lenya:meta>
+<lenya:dc>
+<dc:title xmlns:dc="http://purl.org/dc/elements/1.1/">Links</dc:title>
+<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">lenya</dc:creator>
+<dc:subject xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+<dc:publisher xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+<dc:date xmlns:dc="http://purl.org/dc/elements/1.1/">2005-10-02 12:50:27</dc:date>
+<dc:language xmlns:dc="http://purl.org/dc/elements/1.1/">en</dc:language>
+<dc:rights xmlns:dc="http://purl.org/dc/elements/1.1/"/>
+</lenya:dc>
+<lenya:internal>
+<lenya:resourceType>links</lenya:resourceType>
+<lenya:contentType>xml</lenya:contentType>
+ <lenya:mimeType>application/xml</lenya:mimeType>
+</lenya:internal>
+</lenya:meta>
+</lenya:document>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/opendocument/index_de
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/opendocument/index_de?rev=755992&view=auto
==============================================================================
Binary file - no diff available.
Propchange: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/opendocument/index_de
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/opendocument/index_de.meta
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/opendocument/index_de.meta?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/opendocument/index_de.meta (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/opendocument/index_de.meta Thu Mar 19 13:29:18 2009
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<lenya:document xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
+<lenya:meta>
+ <lenya:dc>
+ <dc:title xmlns:dc="http://purl.org/dc/elements/1.1/">OpenDocument</dc:title>
+ <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">lenya</dc:creator>
+ <dc:language xmlns:dc="http://purl.org/dc/elements/1.1/">de</dc:language>
+ </lenya:dc>
+
+ <lenya:internal>
+ <lenya:resourceType>opendocument</lenya:resourceType>
+ <lenya:contentType>odt</lenya:contentType>
+ <lenya:extension>odt</lenya:extension>
+ <lenya:mimeType>application/vnd.oasis.opendocument.text</lenya:mimeType>
+ </lenya:internal>
+</lenya:meta>
+</lenya:document>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/opendocument/index_en
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/opendocument/index_en?rev=755992&view=auto
==============================================================================
Binary file - no diff available.
Propchange: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/opendocument/index_en
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/opendocument/index_en.meta
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/opendocument/index_en.meta?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/opendocument/index_en.meta (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/opendocument/index_en.meta Thu Mar 19 13:29:18 2009
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<lenya:document xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
+<lenya:meta>
+ <lenya:dc>
+ <dc:title xmlns:dc="http://purl.org/dc/elements/1.1/">OpenDocument</dc:title>
+ <dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">lenya</dc:creator>
+ <dc:language xmlns:dc="http://purl.org/dc/elements/1.1/">en</dc:language>
+ </lenya:dc>
+
+ <lenya:internal>
+ <lenya:resourceType>opendocument</lenya:resourceType>
+ <lenya:contentType>odt</lenya:contentType>
+ <lenya:extension>odt</lenya:extension>
+ <lenya:mimeType>application/vnd.oasis.opendocument.text</lenya:mimeType>
+ </lenya:internal>
+</lenya:meta>
+</lenya:document>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/xhtml-document/index_de
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/xhtml-document/index_de?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/xhtml-document/index_de (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/xhtml-document/index_de Thu Mar 19 13:29:18 2009
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<html xmlns="http://www.w3.org/1999/xhtml"
+xmlns:xhtml="http://www.w3.org/1999/xhtml"
+xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
+
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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_de 528434 2007-04-13 10:42:52Z andreas $ -->
+ <head>
+ <title>Der XHTML-Ressource-Typ</title>
+ </head>
+ <body>
+ <h1>Der XHTML-Ressource-Typ</h1>
+
+ <p>
+ Der XHTML-Ressource-Typ erlaubt es, XHTML-Dokumente zu verwalten,
+ die der <a href="http://www.w3.org/TR/xhtml1/">XHTML-1.0-Definition</a>
+ des <a href="http://www.w3.org/">World Wide Web Consortium (W3C)</a>
+ entsprechen.
+ </p>
+
+ </body>
+</html>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/xhtml-document/index_de.meta
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/xhtml-document/index_de.meta?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/xhtml-document/index_de.meta (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/xhtml-document/index_de.meta Thu Mar 19 13:29:18 2009
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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_de.meta 557603 2007-07-19 12:48:31Z andreas $ -->
+<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:mimeType>application/xhtml+xml</lenya:mimeType>
+</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>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/xhtml-document/index_en
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/xhtml-document/index_en?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/xhtml-document/index_en (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/xhtml-document/index_en Thu Mar 19 13:29:18 2009
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<html xmlns="http://www.w3.org/1999/xhtml"
+xmlns:xhtml="http://www.w3.org/1999/xhtml"
+xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
+
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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_en 528434 2007-04-13 10:42:52Z andreas $ -->
+ <head>
+ <title>The XHTML Resource Type</title>
+ </head>
+ <body>
+ <h1>The XHTML Resource Type</h1>
+
+ <p>The XHTML resource type supports to maintain XHTML documents which
+ conform to the <a href="http://www.w3.org/TR/xhtml1/">XHTML 1.0
+ definition</a> of the <a href="http://www.w3.org/">World Wide Web
+ Consortium (W3C)</a>.</p>
+
+ </body>
+</html>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/xhtml-document/index_en.meta
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/xhtml-document/index_en.meta?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/xhtml-document/index_en.meta (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/doctypes/xhtml-document/index_en.meta Thu Mar 19 13:29:18 2009
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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_en.meta 557603 2007-07-19 12:48:31Z andreas $ -->
+<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:mimeType>application/xhtml+xml</lenya:mimeType>
+</lenya:internal>
+<lenya:dc>
+ <dc:title xmlns:dc="http://purl.org/dc/elements/1.1/">The XHTML Resource Type</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 Resource Type</dc:subject>
+ <dc:description xmlns:dc="http://purl.org/dc/elements/1.1/">Explains the XHTML Resource Type</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>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/features/index_de
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/features/index_de?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/features/index_de (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/features/index_de Thu Mar 19 13:29:18 2009
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<html xmlns="http://www.w3.org/1999/xhtml"
+xmlns:xhtml="http://www.w3.org/1999/xhtml"
+xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
+
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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_de 528434 2007-04-13 10:42:52Z andreas $ -->
+ <head>
+ <title>Funktionen</title>
+ </head>
+ <body>
+ <h1>Funktionen</h1>
+
+ <p>
+ Apache Lenya bietet die Features, die Sie von einem modernen
+ Content-Management-System erwarten, z.B. Versionierung, Zeitsteuerung,
+ eine eingebaute Suchmaschine, Staging und Workflow.
+ Da es durchgängig auf XML basiert, können mehr Funktionalitäten
+ realisiert werden als mit CMS, die XML nur ansatzweise verwenden.
+ Einige erwähnenswerte Funktionalitäten sind:
+ </p>
+
+ <h2>Browser-basiertes Editieren im WYSIWYG-Modus</h2>
+
+ <p>
+ Apache Lenya verfügt über Browser-basierte WYSIWYG-Editoren die
+ gegen W3C XML Schemas bzw. Relax-NG-Schemas validieren. Dadurch wird
+ das nicht-konforme Markup, das andere Editoren produzieren, vermieden.
+ Schema-basierte Editoren erlauben es auÃerdem, Website-Style-Guidelines
+ durchzusetzen.
+ </p>
+
+ <h2>XML-Publishing</h2>
+
+ <p>
+ Da Apache Lenya auf Apache Cocoon basiert, kann es auf alle Vorteile
+ eines mächtigen XML-Publishing-Frameworks zurückgreifen, darunter
+ Multi-Channel- / Cross-Platform-Publishing und Content-Aggregation
+ von externen Quellen wie RSS-Feeds.
+ </p>
+
+ <h2>Das Publikationskonzept</h2>
+
+ <p>
+ Das Publikationskonzept erlaubt es, Informations-Architekturen von
+ Websites wiederzuverwenden und die Informationen auf der Ebene des
+ Inhalts zu modularisieren.
+ </p>
+
+ <h2>Eine zukunftssichere Lösung</h2>
+
+ <p>
+ Der Apache Software-Stack ist eine der bewährtesten Plattformen zur
+ Erstellung von Internet-Applikationen. Auf dieser Basis bietet Apache
+ Lenya eine robuste, zukunfts- und investitionssichere Lösung.
+ </p>
+
+ </body>
+</html>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/features/index_de.meta
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/features/index_de.meta?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/features/index_de.meta (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/features/index_de.meta Thu Mar 19 13:29:18 2009
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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_de.meta 557603 2007-07-19 12:48:31Z andreas $ -->
+<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:mimeType>application/xhtml+xml</lenya:mimeType>
+</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>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/features/index_en
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/features/index_en?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/features/index_en (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/features/index_en Thu Mar 19 13:29:18 2009
@@ -0,0 +1,65 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<html xmlns="http://www.w3.org/1999/xhtml"
+xmlns:xhtml="http://www.w3.org/1999/xhtml"
+xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0" >
+
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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_en 473861 2006-11-12 03:51:14Z gregor $ -->
+ <head>
+ <title>Features</title>
+ </head>
+ <body>
+ <h1>Features</h1>
+
+ <p>Apache Lenya comes with the features you would expect of a
+ modern Content Management System, such as Revision Control,
+ Scheduling, a built-in Search Engine, separate Staging Areas and
+ Workflow. Because Apache Lenya uses XML throughout, it can offer
+ much more than other CMS that use XML only marginally. Some
+ notable features include:</p>
+
+ <h2>Browser-based WYSIWYG Editing</h2>
+
+ <p>Apache Lenya comes with Browser-based WYSIWYG Editors that
+ validate input against a W3C XML Schema. This prevents the invalid
+ markup that other editors produce. Schema-based editors also allow
+ to enforce web site style guidelines.</p>
+
+ <h2>XML Publishing</h2>
+
+ <p>As Apache Lenya is based on Apache Cocoon it leverages all the
+ benefits from a powerful XML Publishing framework such as
+ multi-channel publishing, content aggregation even from external
+ sources such as RSS.</p>
+
+ <h2>The Publication Concept</h2>
+
+ <p>The publication concept allows for reuse of the information
+ architecture of a site and brings modularity to the content
+ level.</p>
+
+ <h2>Future-proof Solution</h2>
+
+ <p>The Apache Software Stack is quickly becoming the preeminent
+ platform for building Internet applications. By leveraging the
+ Apache Software Stack, Apache Lenya offers a robust, future-proof
+ solution that preserves technology investments.</p>
+
+ </body>
+</html>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/features/index_en.meta
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/features/index_en.meta?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/features/index_en.meta (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/features/index_en.meta Thu Mar 19 13:29:18 2009
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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_en.meta 557603 2007-07-19 12:48:31Z andreas $ -->
+<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:mimeType>application/xhtml+xml</lenya:mimeType>
+</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>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/index/index_de
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/index/index_de?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/index/index_de (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/index/index_de Thu Mar 19 13:29:18 2009
@@ -0,0 +1,71 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<html xmlns="http://www.w3.org/1999/xhtml"
+xmlns:xhtml="http://www.w3.org/1999/xhtml"
+xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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_de 528434 2007-04-13 10:42:52Z andreas $ -->
+ <head>
+ <title>Willkommen zur Default-Publikation!</title>
+ </head>
+ <body>
+ <h1>Hallo und herzlich Willkommen bei der Lenya Default-Publikation!</h1>
+
+ <p>
+ Apache Lenya ist ein in Java implementiertes Open-Source Content Management System,
+ das auf offenen Standards wie XML und XSLT sowie dem bewährten Apache
+ Software-Stack basiert. Sein Fundament bildet das XML-Publishing-Framework
+ Apache Cocoon.
+ </p>
+
+ <p>
+ Im Artikel <a href="/default/authoring/concepts_de.html">Konzepte</a> erhalten Sie
+ einen Ãberblick über die in Lenya verwendeteen Konzepte und Begriffe.
+ Der Artikel <a href="/default/authoring/features_de.html">Features</a> bietet
+ einen Ãberblick über die in Lenya verfügbaren Funktionen.
+ </p>
+
+ <p>
+ Für eine schnelle Einführung in die Verwendung des Apache Lenya CMS empfehlen
+ wir das <a href="/default/authoring/tutorial_de.html">Tutorial</a>.
+ </p>
+
+ <p>Der Zweck dieser Publikation ist es,</p>
+
+ <ul>
+ <li>
+ die Grundfunktionalität des Apache Lenya CMS zu präsentieren,
+ </li>
+ <li>
+ eine Publikation "von der Stange" anzubieten, die auf einfache
+ Weise angepasst und genutzt werden kann, und
+ </li>
+ <li>
+ eine Basis für Referenzimplementation neuer Konzepte und Best-Practises
+ zur Verfügung zu stellen.
+ </li>
+ </ul>
+
+ <p>
+ Diese Publikation reizt die Möglichkeiten von Apache Lenya nicht aus;
+ es gibt keine Spielereien, die Sie verwirren könnten. Diese Publikation enthält
+ nur, was Sie für einen schnellen Einstieg benötigen.
+ </p>
+
+ </body>
+</html>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/index/index_de.meta
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/index/index_de.meta?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/index/index_de.meta (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/index/index_de.meta Thu Mar 19 13:29:18 2009
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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_de.meta 557603 2007-07-19 12:48:31Z andreas $ -->
+<lenya:document xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
+<lenya:meta>
+ <lenya:custom>
+ <lenya:myMeta>Benutzen Sie ihre eignen Metadaten in lenya.</lenya:myMeta>
+ </lenya:custom>
+<lenya:internal>
+<lenya:resourceType>homepage</lenya:resourceType>
+<lenya:contentType>xml</lenya:contentType>
+ <lenya:mimeType>application/xhtml+xml</lenya:mimeType>
+</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>
Added: lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/index/index_en
URL: http://svn.apache.org/viewvc/lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/index/index_en?rev=755992&view=auto
==============================================================================
--- lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/index/index_en (added)
+++ lenya/contributions/2_0_X/pubs/defaultfiredocs/example-content/index/index_en Thu Mar 19 13:29:18 2009
@@ -0,0 +1,64 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<html xmlns="http://www.w3.org/1999/xhtml"
+xmlns:xhtml="http://www.w3.org/1999/xhtml"
+xmlns:lenya="http://apache.org/cocoon/lenya/page-envelope/1.0">
+
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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_en 473861 2006-11-12 03:51:14Z gregor $ -->
+ <head>
+ <title>Welcome to the Default publication</title>
+ </head>
+ <body>
+ <h1>Hello and welcome to the Lenya default publication!</h1>
+
+ <p>Apache Lenya is a Java Open-Source Content Management System
+ based on open standards such as XML and XSLT and the Apache
+ Software Stack, in particular the XML publishing framework Apache
+ Cocoon.</p>
+
+ <p>For an overview of the concepts and the terminology used in
+ Apache Lenya please see the <a href="/default/authoring/concepts.html">Concepts
+ section</a>. To see what you can do with Apache Lenya please
+ refer to the <a href="/default/authoring/features.html">Features
+ section</a>.</p>
+
+ <p>If you'd like to get a quick introduction on how to use Apache
+ Lenya CMS please go through the <a
+ href="/default/authoring/tutorial.html">tutorial</a>.</p>
+
+ <p>The purpose of this publication is</p>
+
+ <ul>
+ <li>to show beginners the basic functionality of the Apache
+ Lenya CMS,</li>
+
+ <li>to provide an "out of the box" publication that can be
+ easily adapted and used,</li>
+
+ <li>and to provide a basis for reference implementations of new
+ concepts and best practices.</li>
+
+ </ul>
+
+ <p>This publication does not go to the limit of what's possible
+ with Apache Lenya CMS, there are no fancy bells and whistles to
+ confuse you, this publication simply contains everything you need
+ to get started.</p>
+ </body>
+</html>
lmpx.com only provides a reader for public news (NNTP) servers. It is not
affiliated with the servers or forums shown here and is not responsible for
the content of articles, which is written by their respective authors.