Code

*** empty log message ***
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Tue, 20 Jan 2004 00:05:07 +0000 (00:05 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Tue, 20 Jan 2004 00:05:07 +0000 (00:05 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@2048 57a73879-2fb5-44c3-a270-3262357dd7e2

doc/customizing.txt
doc/index.txt
roundup/__init__.py

index 35019973e8f04b6bbcffcd826edb41438d48ccba..43864ed80196da0b6fc54297223c51ebb222d1f3 100644 (file)
@@ -2,7 +2,7 @@
 Customising Roundup
 ===================
 
-:Version: $Revision: 1.108 $
+:Version: $Revision: 1.109 $
 
 .. This document borrows from the ZopeBook section on ZPT. The original is at:
    http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx
@@ -3011,15 +3011,14 @@ be able to give a summary of the total time spent on a particular issue.
             ''' Call me with a list of timelog items (which have an
                 Interval "period" property)
             '''
-            total = Interval('')
+            total = Interval('0d')
             for time in times:
                 total += time.period._value
             return total
 
-   Replace the ``pass`` line as we did in step 4 above with the Client
+   Replace the ``pass`` line if one appears in your TemplatingUtils
    class. As indicated in the docstrings, we will be able to access the
-   ``totalTimeSpent`` method via the ``utils`` variable in our
-   templates.
+   ``totalTimeSpent`` method via the ``utils`` variable in our templates.
 
 5. Display the time log for an issue::
 
index e7d384e21a2e901a6ed5ce6487dae8821f6e3b22..cd01ea614df35a583ae61f985059919626bf66b2 100644 (file)
@@ -58,6 +58,7 @@ Seb Brezel,
 Titus Brown,
 Godefroid Chapelle,
 Roch'e Compaan,
+Kelley Dagley,
 Paul F. Dubois,
 Jeff Epler,
 Tom Epperly,
@@ -73,6 +74,7 @@ Tobias Hunger,
 James Kew,
 Sheila King,
 Bastian Kleineidam,
+Axel Kollmorgen,
 Detlef Lannert,
 Andrey Lebedev,
 Henrik Levkowetz,
index 564590cb13cc61bb88b74de5322ffaeb4f63c3bd..24f50c4a03b72ceb5a4502e9ddc0ddf7ced823bc 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.25 2003-08-18 00:21:58 richard Exp $
+# $Id: __init__.py,v 1.26 2004-01-20 00:05:07 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.6.0'
+__version__ = '0.7.0b1'
 
 # vim: set filetype=python ts=4 sw=4 et si