Code

*** empty log message ***
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 20 Feb 2003 07:11:39 +0000 (07:11 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 20 Feb 2003 07:11:39 +0000 (07:11 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1533 57a73879-2fb5-44c3-a270-3262357dd7e2

CHANGES.txt
doc/upgrading.txt
roundup/__init__.py

index e1879208eedd139e138d193863934c0175204d52..b2008b5a82bae37a64f6c8cf2d588324969a7950 100644 (file)
@@ -56,6 +56,7 @@ are given with the most recent entry first.
   (e.g. images). They are accessible naturally: _file/images/img.gif
 - altered Class.create() and FileClass.create() methods to make "content"
   property available in auditors
+- re-worked detectors initialisation - woohoo, no more cross-importing!
 
 
 2003-??-?? 0.5.6
index 8b722239d65adcc0c914912c625b237d1792634b..9ba63c766921b44b20ea0bcc9b7916f9c1019365 100644 (file)
@@ -23,6 +23,14 @@ Migrating from 0.5 to 0.6
 
      "Foo Bar EMAIL_FROM_TAG" <issue_tracker@tracker.example>
 
+I've altered the mechanism in the detectors __init__.py module so that it
+doesn't cross-import detectors from other trackers (if you run more than one
+in a single roundup-server). This change means that you'll need to copy the
+__init__.py from roundup/templates/classic/detectors/__init__.py to your
+<tracker home>/detectors/__init__.py. Don't worry, the "classic" __init__ is a
+one-size-fits-all, so it'll work even if you've added/removed detectors.
+
+
 0.6.0 Form handling changes
 ---------------------------
 
index 65418fad4ddff5e31910353ea3984039f5fcbfe2..e46226e61f87009c71e2687f09b93a94b0063ec7 100644 (file)
@@ -15,7 +15,7 @@
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-# $Id: __init__.py,v 1.18 2003-01-09 22:59:20 richard Exp $
+# $Id: __init__.py,v 1.19 2003-02-20 07:11:39 richard Exp $
 
 ''' Roundup - issue tracking for knowledge workers.
 
@@ -67,6 +67,6 @@ written by Ka-Ping Yee in the "doc" directory. If nothing else, it has a
 much prettier cake :)
 '''
 
-__version__ = '0.5.4'
+__version__ = '0.6.0'
 
 # vim: set filetype=python ts=4 sw=4 et si