|
If in edit Page type: is changed to Plain text then the status
fields are not display. To work-around, change the Page type: to
something else, Save, change status, edit change Page type: back
to Plain text .
- The following patch adds the IssueForm? to pages of type Plain text:
diff --exclude='*.pyc' -Naur test/Products/ZWiki/pagetypes/plaintext.py main/Products/ZWiki/pagetypes/plaintext.py
--- test/Products/ZWiki/pagetypes/plaintext.py 2004-11-17 14:57:59.000000000 -0600
+++ main/Products/ZWiki/pagetypes/plaintext.py 2005-01-25 01:47:04.000000000 -0600
@@ -18,6 +18,8 @@
def render(self, page, REQUEST={}, RESPONSE=None, **kw):
t = page.preRendered()
+ if page.isIssue() and kw.get('show_issueproperties',1):
+ t = page.addIssueFormTo(t)
t = page.renderMidsectionIn(t,**kw)
t = page.addSkinTo(t,**kw)
return t
- Status: assigned => testing
Status: testing => closed
|