[CMF-checkins] CVS: Products/CMFCore/www - addAction.zpt:1.2
addActionCategory.zpt:1.2
Yvo Schubbe
y.2005- at wcm-solutions.de
Tue Jan 25 14:49:43 EST 2005
Update of /cvs-repository/Products/CMFCore/www
In directory cvs.zope.org:/tmp/cvs-serv24836/CMFCore/www
Added Files:
addAction.zpt addActionCategory.zpt
Log Message:
merged yuppie-new_actions-branch:
- added ActionCategory and Action interfaces
- added ActionCategory and Action classes
- modified ActionsTool to make use of these new classes
- removed deprecated 'name' and 'permissions' keys from ActionInfo
- allowed 'description' key in ActionInfo
- implemented IAction in the oldstyle ActionInformation class and used this interface to simplify ActionInfo
- updated setup handlers, tests, default profile and skins
- fixed ActionInfo issue regarding permissions in oldstyle action dicts
=== Products/CMFCore/www/addAction.zpt 1.1 => 1.2 ===
--- /dev/null Tue Jan 25 14:49:43 2005
+++ Products/CMFCore/www/addAction.zpt Tue Jan 25 14:49:43 2005
@@ -0,0 +1,28 @@
+<h1 tal:replace="structure context/manage_page_header">PAGE HEADER</h1>
+<h2 tal:define="form_title string:Add CMF Action"
+ tal:replace="structure context/manage_form_title">FORM TITLE</h2>
+
+<p class="form-help">An Action object represents a reference to an action.</p>
+
+<form action="manage_addAction" method="post">
+<table cellspacing="0" cellpadding="2" border="0">
+ <tr>
+ <td>
+ <div class="form-label">ID</div>
+ </td>
+ <td>
+ <input type="text" name="id" size="40" />
+ </td>
+ </tr>
+ <tr>
+ <td>
+
+ </td>
+ <td>
+ <input class="form-element" type="submit" name="submit" value="Add" />
+ </td>
+ </tr>
+</table>
+</form>
+
+<h1 tal:replace="structure context/manage_page_footer">PAGE FOOTER</h1>
=== Products/CMFCore/www/addActionCategory.zpt 1.1 => 1.2 ===
--- /dev/null Tue Jan 25 14:49:43 2005
+++ Products/CMFCore/www/addActionCategory.zpt Tue Jan 25 14:49:43 2005
@@ -0,0 +1,29 @@
+<h1 tal:replace="structure context/manage_page_header">PAGE HEADER</h1>
+<h2 tal:define="form_title string:Add CMF Action Category"
+ tal:replace="structure context/manage_form_title">FORM TITLE</h2>
+
+<p class="form-help">An Action Category object represents a group of Action
+ objects.</p>
+
+<form action="manage_addActionCategory" method="post">
+<table cellspacing="0" cellpadding="2" border="0">
+ <tr>
+ <td>
+ <div class="form-label">ID</div>
+ </td>
+ <td>
+ <input type="text" name="id" size="40" />
+ </td>
+ </tr>
+ <tr>
+ <td>
+
+ </td>
+ <td>
+ <input class="form-element" type="submit" name="submit" value="Add" />
+ </td>
+ </tr>
+</table>
+</form>
+
+<h1 tal:replace="structure context/manage_page_footer">PAGE FOOTER</h1>
More information about the CMF-checkins
mailing list