Mercurial > p > roundup > code
diff doc/customizing.txt @ 3290:3b03f0981f4d maint-0.8
*** empty log message ***
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 20 Apr 2005 06:33:50 +0000 |
| parents | 2e143b885cd7 |
| children | 90e711aa1be6 |
line wrap: on
line diff
--- a/doc/customizing.txt Thu Apr 14 01:30:45 2005 +0000 +++ b/doc/customizing.txt Wed Apr 20 06:33:50 2005 +0000 @@ -2,7 +2,7 @@ Customising Roundup =================== -:Version: $Revision: 1.161.2.14 $ +:Version: $Revision: 1.161.2.15 $ .. This document borrows from the ZopeBook section on ZPT. The original is at: http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx @@ -2522,6 +2522,8 @@ Create a new action class in your tracker's ``extensions`` directory, for example ``myaction.py``:: + from roundup.cgi.actions import Action + class MyAction(Action): def handle(self): ''' Perform some action. No return value is required.
