Author: jmorliaguet
Date: Sun Oct 30 02:24:24 2005
New Revision: 28811

Added:
   
z3lab/cpsskins/branches/jmo-perspectives/engines/contentauthor/filters/__init__.py
   (contents, props changed)
   
z3lab/cpsskins/branches/jmo-perspectives/engines/contentauthor/filters/configure.zcml
   (contents, props changed)
   
z3lab/cpsskins/branches/jmo-perspectives/engines/layoutdesigner/filters/__init__.py
   (contents, props changed)
   
z3lab/cpsskins/branches/jmo-perspectives/engines/layoutdesigner/filters/configure.zcml
   (contents, props changed)
   
z3lab/cpsskins/branches/jmo-perspectives/engines/pagedesigner/filters/__init__.py
   (contents, props changed)
   
z3lab/cpsskins/branches/jmo-perspectives/engines/pagedesigner/filters/configure.zcml
   (contents, props changed)
Log:

- added missing files



Added: 
z3lab/cpsskins/branches/jmo-perspectives/engines/contentauthor/filters/__init__.py
==============================================================================
--- (empty file)
+++ 
z3lab/cpsskins/branches/jmo-perspectives/engines/contentauthor/filters/__init__.py
  Sun Oct 30 02:24:24 2005
@@ -0,0 +1,25 @@
+##############################################################################
+#
+# Copyright (c) 2005 Nuxeo and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+"""
+
+$Id$
+"""
+__docformat__ = "reStructuredText"
+
+from cpsskins.engines.interfaces import IEngine
+from cpsskins.engines.authoring.authoring import Authoring
+
+class IPageAuthoring(IEngine):
+    """A rendering engine for page authoring"""
+

Added: 
z3lab/cpsskins/branches/jmo-perspectives/engines/contentauthor/filters/configure.zcml
==============================================================================
--- (empty file)
+++ 
z3lab/cpsskins/branches/jmo-perspectives/engines/contentauthor/filters/configure.zcml
       Sun Oct 30 02:24:24 2005
@@ -0,0 +1,17 @@
+<configure
+    xmlns="http://namespaces.zope.org/cpsskins";>
+
+  <filter
+      for="cpsskins.elements.interfaces.ISlot"
+      name="slot editor (content author)"
+      template="slot.pt"
+  />
+
+  <filter
+      for="cpsskins.elements.interfaces.IPortlet"
+      name="portlet editor (content author)"
+      template="portlet.pt"
+  />
+
+</configure>
+

Added: 
z3lab/cpsskins/branches/jmo-perspectives/engines/layoutdesigner/filters/__init__.py
==============================================================================
--- (empty file)
+++ 
z3lab/cpsskins/branches/jmo-perspectives/engines/layoutdesigner/filters/__init__.py
 Sun Oct 30 02:24:24 2005
@@ -0,0 +1 @@
+# This is a package.

Added: 
z3lab/cpsskins/branches/jmo-perspectives/engines/layoutdesigner/filters/configure.zcml
==============================================================================
--- (empty file)
+++ 
z3lab/cpsskins/branches/jmo-perspectives/engines/layoutdesigner/filters/configure.zcml
      Sun Oct 30 02:24:24 2005
@@ -0,0 +1,41 @@
+<configure
+    xmlns="http://namespaces.zope.org/cpsskins";>
+
+  <filter
+      for="cpsskins.elements.interfaces.ITheme"
+      name="theme editor (layout designer)"
+      template="theme.pt"
+  />
+
+  <filter
+      for="cpsskins.elements.interfaces.IThemePage"
+      name="themepage editor (layout designer)"
+      template="themepage.pt"
+  />
+
+  <filter
+      for="cpsskins.elements.interfaces.IPageBlock"
+      name="pageblock editor (layout designer)"
+      template="pageblock.pt"
+  />
+
+  <filter
+      for="cpsskins.elements.interfaces.ICell"
+      name="cell editor (layout designer)"
+      template="cell.pt"
+  />
+
+  <filter
+      for="cpsskins.elements.interfaces.ISlot"
+      name="slot editor (layout designer)"
+      template="slot.pt"
+  />
+
+  <filter
+      for="cpsskins.elements.interfaces.IPortlet"
+      name="portlet editor (layout designer)"
+      template="portlet.pt"
+  />
+
+</configure>
+

Added: 
z3lab/cpsskins/branches/jmo-perspectives/engines/pagedesigner/filters/__init__.py
==============================================================================
--- (empty file)
+++ 
z3lab/cpsskins/branches/jmo-perspectives/engines/pagedesigner/filters/__init__.py
   Sun Oct 30 02:24:24 2005
@@ -0,0 +1,25 @@
+##############################################################################
+#
+# Copyright (c) 2005 Nuxeo and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+"""
+
+$Id$
+"""
+__docformat__ = "reStructuredText"
+
+from cpsskins.engines.interfaces import IEngine
+from cpsskins.engines.authoring.authoring import Authoring
+
+class IPageAuthoring(IEngine):
+    """A rendering engine for page authoring"""
+

Added: 
z3lab/cpsskins/branches/jmo-perspectives/engines/pagedesigner/filters/configure.zcml
==============================================================================
--- (empty file)
+++ 
z3lab/cpsskins/branches/jmo-perspectives/engines/pagedesigner/filters/configure.zcml
        Sun Oct 30 02:24:24 2005
@@ -0,0 +1,41 @@
+<configure
+    xmlns="http://namespaces.zope.org/cpsskins";>
+
+  <filter
+      for="cpsskins.elements.interfaces.ITheme"
+      name="theme editor (page designer)"
+      template="theme.pt"
+  />
+
+  <filter
+      for="cpsskins.elements.interfaces.IThemePage"
+      name="themepage editor (page designer)"
+      template="themepage.pt"
+  />
+
+  <filter
+      for="cpsskins.elements.interfaces.IPageBlock"
+      name="pageblock editor (page designer)"
+      template="pageblock.pt"
+  />
+
+  <filter
+      for="cpsskins.elements.interfaces.ICell"
+      name="cell editor (page designer)"
+      template="cell.pt"
+  />
+
+  <filter
+      for="cpsskins.elements.interfaces.ISlot"
+      name="slot editor (page designer)"
+      template="slot.pt"
+  />
+
+  <filter
+      for="cpsskins.elements.interfaces.IPortlet"
+      name="portlet editor (page designer)"
+      template="portlet.pt"
+  />
+
+</configure>
+
-- 
http://lists.nuxeo.com/mailman/listinfo/z3lab-checkins

Reply via email to