Code

more info
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 18 Sep 2002 01:33:49 +0000 (01:33 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Wed, 18 Sep 2002 01:33:49 +0000 (01:33 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1188 57a73879-2fb5-44c3-a270-3262357dd7e2

doc/customizing.txt

index ae9bfc47446d8ef6bb5b16e8e6e1e2229c580022..62f03f60142b26f01d41257e8df82e01998a7542 100644 (file)
@@ -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).
 
 -------------------