Author: jmorliaguet
Date: Thu Jan  5 01:41:22 2006
New Revision: 2146

Added:
   cpsskins/branches/jmo-perspectives/ui/screens/
   cpsskins/branches/jmo-perspectives/ui/screens/__init__.py   (contents, props 
changed)
   cpsskins/branches/jmo-perspectives/ui/screens/configure.zcml   (contents, 
props changed)
   cpsskins/branches/jmo-perspectives/ui/screens/contentauthor/
      - copied from r2144, cpsskins/branches/jmo-perspectives/ui/contentauthor/
   cpsskins/branches/jmo-perspectives/ui/screens/editor.pt
      - copied unchanged from r2145, 
cpsskins/branches/jmo-perspectives/ui/panels/editor.pt
   cpsskins/branches/jmo-perspectives/ui/screens/jsr168/
      - copied from r2144, cpsskins/branches/jmo-perspectives/ui/jsr168/
   cpsskins/branches/jmo-perspectives/ui/screens/layoutdesigner/
      - copied from r2144, cpsskins/branches/jmo-perspectives/ui/layoutdesigner/
   cpsskins/branches/jmo-perspectives/ui/screens/pagedesigner/
      - copied from r2144, cpsskins/branches/jmo-perspectives/ui/pagedesigner/
   cpsskins/branches/jmo-perspectives/ui/screens/sitedesigner/
      - copied from r2144, cpsskins/branches/jmo-perspectives/ui/sitedesigner/
Removed:
   cpsskins/branches/jmo-perspectives/ui/contentauthor/
   cpsskins/branches/jmo-perspectives/ui/jsr168/
   cpsskins/branches/jmo-perspectives/ui/layoutdesigner/
   cpsskins/branches/jmo-perspectives/ui/pagedesigner/
   cpsskins/branches/jmo-perspectives/ui/panels/editor.pt
   cpsskins/branches/jmo-perspectives/ui/sitedesigner/
Modified:
   cpsskins/branches/jmo-perspectives/ui/configure.zcml
   cpsskins/branches/jmo-perspectives/ui/panels/configure.zcml
Log:

- moved specific screens (site designer, page designer, ...) to 'screens'



Modified: cpsskins/branches/jmo-perspectives/ui/configure.zcml
==============================================================================
--- cpsskins/branches/jmo-perspectives/ui/configure.zcml        (original)
+++ cpsskins/branches/jmo-perspectives/ui/configure.zcml        Thu Jan  5 
01:41:22 2006
@@ -1,29 +1,18 @@
 <configure
     xmlns="http://namespaces.zope.org/zope";>
 
-  <include package=".panels" />
-
   <!-- default engine (HTML) -->
   <include package=".default" />
 
+  <include package=".framework" />
+
   <!-- Editing, authoring -->
   <include package=".editing" />
   <include package=".authoring" />
-  <include package=".framework" />
 
-  <!-- site designer -->
-  <include package=".sitedesigner" />
-
-  <!-- layout designer -->
-  <include package=".layoutdesigner" />
-
-  <!-- page designer -->
-  <include package=".pagedesigner" />
-
-  <!-- content author -->
-  <include package=".contentauthor" />
+  <!-- screens, panels -->
+  <include package=".panels" />
 
-  <!-- JSR168-like portlets -->
-  <include package=".jsr168" />
+  <include package=".screens" />
 
 </configure>

Modified: cpsskins/branches/jmo-perspectives/ui/panels/configure.zcml
==============================================================================
--- cpsskins/branches/jmo-perspectives/ui/panels/configure.zcml (original)
+++ cpsskins/branches/jmo-perspectives/ui/panels/configure.zcml Thu Jan  5 
01:41:22 2006
@@ -9,11 +9,6 @@
       permission="zope.ManageContent">
 
     <page
-        name="editor.html"
-        template="editor.pt"
-    />
-
-    <page
       name="perspectiveSelector.html"
       template="perspective_selector.pt"
     />

Added: cpsskins/branches/jmo-perspectives/ui/screens/__init__.py
==============================================================================
--- (empty file)
+++ cpsskins/branches/jmo-perspectives/ui/screens/__init__.py   Thu Jan  5 
01:41:22 2006
@@ -0,0 +1,19 @@
+##############################################################################
+#
+# 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"
+

Added: cpsskins/branches/jmo-perspectives/ui/screens/configure.zcml
==============================================================================
--- (empty file)
+++ cpsskins/branches/jmo-perspectives/ui/screens/configure.zcml        Thu Jan 
 5 01:41:22 2006
@@ -0,0 +1,28 @@
+<configure
+    xmlns:browser="http://namespaces.zope.org/browser";
+    xmlns="http://namespaces.zope.org/zope";>
+
+  <browser:page
+      for="*"
+      layer="cpsskins"
+      permission="zope.ManageContent"
+      name="editor.html"
+      template="editor.pt"
+  />
+
+  <!-- site designer -->
+  <include package=".sitedesigner" />
+
+  <!-- layout designer -->
+  <include package=".layoutdesigner" />
+
+  <!-- page designer -->
+  <include package=".pagedesigner" />
+
+  <!-- content author -->
+  <include package=".contentauthor" />
+
+  <!-- JSR168-like portlets -->
+  <include package=".jsr168" />
+
+</configure>
-- 
http://lists.nuxeo.com/mailman/listinfo/z3lab-checkins

Reply via email to