[CMF-checkins] CVS: CMF/CMFTopic - Topic.py:1.27.4.1
Andrew Sawyers
andrew@zope.com
Tue, 11 Dec 2001 10:53:57 -0500
Update of /cvs-repository/CMF/CMFTopic
In directory cvs.zope.org:/tmp/cvs-serv16236/CMFTopic
Modified Files:
Tag: ExtensionsBranch
Topic.py
Log Message:
*Prototype CMF with extensions for webdav
*Things will change to make this functionality baclwards
compatible; beware.
=== CMF/CMFTopic/Topic.py 1.27 => 1.27.4.1 ===
'product': 'CMFTopic',
'factory': 'addTopic',
- 'immediate_view': 'topic_edit_form',
+ 'immediate_view': 'topic_edit_form.pt',
'actions': ({'id': 'view',
'name': 'View',
- 'action': 'topic_view',
+ 'action': 'topic_view.pt',
'permissions': (CMFCorePermissions.View,)},
{'id': 'edit',
'name': 'Edit',
- 'action': 'topic_edit_form',
+ 'action': 'topic_edit_form.pt',
'permissions': (TopicPermissions.ChangeTopics,)},
{'id': 'criteria',
'name': 'Criteria',
- 'action': 'topic_criteria_form',
+ 'action': 'topic_criteria_form.pt',
'permissions': (TopicPermissions.ChangeTopics,)},
{'id': 'subtopics',
'name': 'Subtopics',
- 'action': 'topic_subtopics_form',
+ 'action': 'topic_subtopics_form.pt',
'permissions': (TopicPermissions.ChangeTopics,)},
), # End Actions
},