summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5c26d13)
raw | patch | inline | side by side (parent: 5c26d13)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 18 Sep 2002 01:33:49 +0000 (01:33 +0000) | ||
committer | richard <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 | patch | blob | history |
diff --git a/doc/customizing.txt b/doc/customizing.txt
index ae9bfc47446d8ef6bb5b16e8e6e1e2229c580022..62f03f60142b26f01d41257e8df82e01998a7542 100644 (file)
--- a/doc/customizing.txt
+++ b/doc/customizing.txt
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
============================================
.. _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
# 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).
-------------------