[CMF-checkins] CVS: CMF/CMFWorkspaces - Workspace.py:1.9

Tres Seaver tseaver@zope.com
Tue, 15 Apr 2003 12:08:06 -0400


Update of /cvs-repository/CMF/CMFWorkspaces
In directory cvs.zope.org:/tmp/cvs-serv13354/CMFWorkspaces

Modified Files:
	Workspace.py 
Log Message:
 - Land tseaver-ti_apb_redux-branch.

=== CMF/CMFWorkspaces/Workspace.py 1.8 => 1.9 ===
--- CMF/CMFWorkspaces/Workspace.py:1.8	Thu Jan  2 16:51:31 2003
+++ CMF/CMFWorkspaces/Workspace.py	Tue Apr 15 12:08:05 2003
@@ -57,32 +57,34 @@
 
 
 factory_type_information = (
-    { 'id'             : 'Workspace',
-      'meta_type'      : 'Workspace',
-      'description'    : """Workspaces are places to put temporary references
+  { 'id'             : 'Workspace'
+  , 'meta_type'      : 'Workspace'
+  , 'description'    : """\
+Workspaces are places to put temporary references
 to content you are currently working on.  Workspaces are designed to help
-you navigate efficiently.""",
-      'icon'           : 'folder_icon.gif',
-      'product'        : 'CMFWorkspaces',
-      'factory'        : 'addWorkspace',
-      'filter_content_types' : 0,
-      'immediate_view' : 'workspace_view',
-      'actions'        :
-      ({'id'            : 'view',
-        'name'          : 'Workspace',
-        'action'        : 'workspace_view',
-        'permissions'   : (View,),
-        'category'      : 'object',
-        },
-       {'id'            : 'metadata',
-        'name'          : 'Metadata',
-        'action'        : 'metadata_edit_form',
-        'permissions'   : (View,),
-        'category'      : 'object',
-        },       
-       )
-      },
-    )
+you navigate efficiently.
+"""
+  , 'icon'           : 'folder_icon.gif'
+  , 'product'        : 'CMFWorkspaces'
+  , 'factory'        : 'addWorkspace'
+  , 'filter_content_types' : 0
+  , 'immediate_view' : 'workspace_view'
+  , 'actions'        : ( { 'id'            : 'view'
+                         , 'name'          : 'Workspace'
+                         , 'action'        : 'string:workspace_view'
+                         , 'permissions'   : (View,)
+                         , 'category'      : 'object'
+                         }
+                       , { 'id'            : 'metadata'
+                         , 'name'          : 'Metadata'
+                         , 'action'        : 'string:metadata_edit_form'
+                         , 'permissions'   : (View,)
+                         , 'category'      : 'object'
+                         }
+                       )
+  }
+,
+)
 
 
 class Workspace (PortalContent.PortalContent,