From: richard Date: Wed, 18 Sep 2002 01:33:49 +0000 (+0000) Subject: more info X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=a63439c1604417073e37f65d2bce1c6ea3f43af3;p=roundup.git more info git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1188 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/doc/customizing.txt b/doc/customizing.txt index ae9bfc4..62f03f6 100644 --- a/doc/customizing.txt +++ b/doc/customizing.txt @@ -2,7 +2,7 @@ Customising Roundup =================== -:Version: $Revision: 1.42 $ +:Version: $Revision: 1.43 $ .. This document borrows from the ZopeBook section on ZPT. The original is at: http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx @@ -360,6 +360,10 @@ Detectors - adding behaviour to your tracker ============================================ .. _detectors: +Detectors are initialised every time you open your tracker database, so you're +free to add and remove them any time, even after the database is initliased +via the "roundup-admin initalise" command. + The detectors in your tracker fire before (*auditors*) and after (*reactors*) changes to the contents of your database. They are Python modules that sit in your tracker's ``detectors`` directory. You will have some installed by @@ -1945,7 +1949,7 @@ Setting up a "wizard" (or "druid") for controlled adding of issues # everything's ok, move on to the next page self.template = 'add_page2' -4. Use the usual "edit" action as the :action on the final page, and you're +4. Use the usual "new" action as the :action on the final page, and you're done (the standard context/submit method can do this for you). -------------------