[Zope-CVS] CVS: Products/OSCOM/NOTSite - TODO.txt:1.2 content.py:1.2
Tres Seaver
tseaver@zope.com
Mon, 26 May 2003 01:52:06 -0400
Update of /cvs-repository/Products/OSCOM/NOTSite
In directory cvs.zope.org:/tmp/cvs-serv19799
Modified Files:
TODO.txt content.py
Log Message:
- Add initial pass at content and site skins.
=== Products/OSCOM/NOTSite/TODO.txt 1.1 => 1.2 ===
--- Products/OSCOM/NOTSite/TODO.txt:1.1 Tue May 13 12:09:51 2003
+++ Products/OSCOM/NOTSite/TODO.txt Mon May 26 01:51:35 2003
@@ -8,14 +8,16 @@
(x) Register / configure skin directories.
- ( ) Register / configure types.
+ (x) Register / configure types.
- ( ) Register / configure workflow.
+ (x) Define skins for News Story type.
+
+ (x) Define skins for Story Tease type.
- Content Types Work
+ (x) Define skins for News Setion type.
- ( ) Define skins for Home Page Folder type.
+ (x) Integrate actionicons tool.
- ( ) Define skins for Section Folder type.
+ ( ) Register / configure workflow.
- ( ) Define skins for Article Page type.
+ ( ) Disable syndication actions.
=== Products/OSCOM/NOTSite/content.py 1.1 => 1.2 ===
--- Products/OSCOM/NOTSite/content.py:1.1 Mon May 26 00:38:52 2003
+++ Products/OSCOM/NOTSite/content.py Mon May 26 01:51:35 2003
@@ -147,29 +147,30 @@
self._setObject( id, section )
NewsSection_FTI = \
-( { 'id' : 'News Section'
- , 'meta_type' : 'News Section'
- , 'description' : 'News Stories.'
- , 'icon' : 'document_icon.gif'
- , 'product' : 'NOTSite'
- , 'factory' : 'addNewsSection'
- , 'immediate_view' : 'section_edit_form'
- , 'actions' :
- ( { 'id' : 'view'
- , 'name' : 'View'
- , 'action' : 'section_view'
- , 'visible' : 0
- , 'permissions' : ( View, )
+( { 'id' : 'News Section'
+ , 'meta_type' : 'News Section'
+ , 'description' : 'News Stories.'
+ , 'icon' : 'document_icon.gif'
+ , 'product' : 'NOTSite'
+ , 'factory' : 'addNewsSection'
+ , 'filter_content_types' : 0
+ , 'immediate_view' : 'section_edit_form'
+ , 'actions' :
+ ( { 'id' : 'view'
+ , 'name' : 'View'
+ , 'action' : 'section_view'
+ , 'visible' : 0
+ , 'permissions' : ( View, )
}
- , { 'id' : 'preview'
- , 'name' : 'Preview'
- , 'action' : 'section_preview'
- , 'permissions' : ( ModifyNewsSections, )
+ , { 'id' : 'preview'
+ , 'name' : 'Preview'
+ , 'action' : 'section_preview'
+ , 'permissions' : ( ModifyNewsSections, )
}
- , { 'id' : 'edit'
- , 'name' : 'Edit'
- , 'action' : 'section_edit_form'
- , 'permissions' : ( ModifyNewsSections, )
+ , { 'id' : 'edit'
+ , 'name' : 'Edit'
+ , 'action' : 'section_edit_form'
+ , 'permissions' : ( ModifyNewsSections, )
}
)
}