svn commit: r591917 - in /lenya/sandbox/modules/forrest: config/menu.xsp menus.xmap resources/i18n/ resources/i18n/cmsui.xml resources/i18n/cmsui_de.xml

[email protected]
Newsgroups gmane.comp.cms.lenya.cvs
Message-ID <[email protected]>
Author: andreas
Date: Mon Nov  5 01:01:45 2007
New Revision: 591917

URL: http://svn.apache.org/viewvc?rev=591917&view=rev
Log:
Added menu to forrest module

Added:
    lenya/sandbox/modules/forrest/config/menu.xsp
    lenya/sandbox/modules/forrest/menus.xmap
    lenya/sandbox/modules/forrest/resources/i18n/
    lenya/sandbox/modules/forrest/resources/i18n/cmsui.xml
    lenya/sandbox/modules/forrest/resources/i18n/cmsui_de.xml

Added: lenya/sandbox/modules/forrest/config/menu.xsp
URL: http://svn.apache.org/viewvc/lenya/sandbox/modules/forrest/config/menu.xsp?rev=591917&view=auto
==============================================================================
--- lenya/sandbox/modules/forrest/config/menu.xsp (added)
+++ lenya/sandbox/modules/forrest/config/menu.xsp Mon Nov  5 01:01:45 2007
@@ -0,0 +1,77 @@
+<?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.
+-->
+
+<!-- $Id: generic.xsp 155806 2005-03-01 17:55:42Z andreas $ -->
+
+<xsp:page 
+    language="java" 
+    xmlns:xsp="http://apache.org/xsp"
+    xmlns:xsp-request="http://apache.org/xsp/request/2.0"
+    xmlns:input="http://apache.org/cocoon/xsp/input/1.0"
+    xmlns:i18n="http://apache.org/cocoon/i18n/2.1"    
+    xmlns:wf="http://apache.org/cocoon/lenya/workflow/1.0"
+    xmlns:uc="http://apache.org/cocoon/lenya/usecase/1.0"
+    xmlns="http://apache.org/cocoon/lenya/menubar/1.0"
+>
+
+  <xsp:structure>
+    <xsp:include>org.apache.lenya.cms.publication.Document</xsp:include>
+    <xsp:include>org.apache.lenya.cms.publication.Publication</xsp:include>
+  </xsp:structure>
+  
+  <menu>
+
+    <menus>
+      <menu i18n:attr="name" name="File">
+        <block areas="site authoring" id="create">
+          <item uc:usecase="sitemanagement.create" href="?doctype=forrestDocument20"><i18n:translate>
+              <i18n:text>New ... Document</i18n:text>
+              <i18n:param><i18n:text>resourceType-forrest</i18n:text></i18n:param>
+            </i18n:translate>
+          </item>
+          <item uc:usecase="sitemanagement.create" href="?doctype=forrestFaq20"><i18n:translate>
+            <i18n:text>New ... Document</i18n:text>
+            <i18n:param><i18n:text>resourceType-faq</i18n:text></i18n:param>
+          </i18n:translate>
+          </item>
+        </block>
+      </menu>
+      
+      <menu i18n:attr="name" name="Edit">
+        <xsp:logic>
+          try {
+              Object doc = <input:get-attribute module="page-envelope" as="object" name="document"/>;
+              if (doc instanceof Document &amp;&amp; ((Document) doc).exists()) {
+                  String doctype = <input:get-attribute module="page-envelope" as="string" name="document-type"/>;
+                  if (doctype.startsWith("forrest")) {
+                      <block areas="authoring">
+                        <item uc:usecase="editors.oneform" href="?"><i18n:text>With one Form</i18n:text></item>
+                      </block>
+                  }
+              }
+          }
+          catch (Exception e) {
+              throw new ProcessingException("Error during menu generation: ", e);
+          }
+        </xsp:logic>
+      </menu>
+      
+    </menus>
+    
+  </menu>
+</xsp:page>

Added: lenya/sandbox/modules/forrest/menus.xmap
URL: http://svn.apache.org/viewvc/lenya/sandbox/modules/forrest/menus.xmap?rev=591917&view=auto
==============================================================================
--- lenya/sandbox/modules/forrest/menus.xmap (added)
+++ lenya/sandbox/modules/forrest/menus.xmap Mon Nov  5 01:01:45 2007
@@ -0,0 +1,35 @@
+<?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.
+-->
+
+<!-- $Id: menus.xmap 178738 2005-05-27 03:42:09Z gregor $ -->
+
+<map:sitemap xmlns:map="http://apache.org/cocoon/sitemap/1.0">
+
+  <map:pipelines>
+
+    <map:pipeline>
+    	
+      <map:match pattern="**">
+        <map:generate type="serverpages" src="fallback://lenya/modules/forrest/config/menu.xsp"/>
+        <map:serialize type="xml"/>
+      </map:match>
+      
+    </map:pipeline>
+    
+  </map:pipelines>
+</map:sitemap>

Added: lenya/sandbox/modules/forrest/resources/i18n/cmsui.xml
URL: http://svn.apache.org/viewvc/lenya/sandbox/modules/forrest/resources/i18n/cmsui.xml?rev=591917&view=auto
==============================================================================
--- lenya/sandbox/modules/forrest/resources/i18n/cmsui.xml (added)
+++ lenya/sandbox/modules/forrest/resources/i18n/cmsui.xml Mon Nov  5 01:01:45 2007
@@ -0,0 +1,26 @@
+<?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: cmsui.xml 446564 2006-09-15 10:13:16Z andreas $ -->
+
+<catalogue xml:lang="en" xmlns:xhtml="http://www.w3.org/1999/xhtml">
+
+  <message key="resourceType-forrest">Forrest</message>
+  <message key="resourceType-faq">FAQ</message>
+  
+</catalogue>

Added: lenya/sandbox/modules/forrest/resources/i18n/cmsui_de.xml
URL: http://svn.apache.org/viewvc/lenya/sandbox/modules/forrest/resources/i18n/cmsui_de.xml?rev=591917&view=auto
==============================================================================
--- lenya/sandbox/modules/forrest/resources/i18n/cmsui_de.xml (added)
+++ lenya/sandbox/modules/forrest/resources/i18n/cmsui_de.xml Mon Nov  5 01:01:45 2007
@@ -0,0 +1,26 @@
+<?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: cmsui.xml 446564 2006-09-15 10:13:16Z andreas $ -->
+
+<catalogue xml:lang="de" xmlns:xhtml="http://www.w3.org/1999/xhtml">
+
+  <message key="resourceType-forrest">Forrest</message>
+  <message key="resourceType-faq">FAQ</message>
+  
+</catalogue>
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.