summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b680e61)
raw | patch | inline | side by side (parent: b680e61)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 20 Jan 2004 00:05:07 +0000 (00:05 +0000) | ||
committer | richard <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 | patch | blob | history | |
doc/index.txt | patch | blob | history | |
roundup/__init__.py | patch | blob | history |
diff --git a/doc/customizing.txt b/doc/customizing.txt
index 35019973e8f04b6bbcffcd826edb41438d48ccba..43864ed80196da0b6fc54297223c51ebb222d1f3 100644 (file)
--- a/doc/customizing.txt
+++ b/doc/customizing.txt
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
''' 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::
diff --git a/doc/index.txt b/doc/index.txt
index e7d384e21a2e901a6ed5ce6487dae8821f6e3b22..cd01ea614df35a583ae61f985059919626bf66b2 100644 (file)
--- a/doc/index.txt
+++ b/doc/index.txt
Titus Brown,
Godefroid Chapelle,
Roch'e Compaan,
+Kelley Dagley,
Paul F. Dubois,
Jeff Epler,
Tom Epperly,
James Kew,
Sheila King,
Bastian Kleineidam,
+Axel Kollmorgen,
Detlef Lannert,
Andrey Lebedev,
Henrik Levkowetz,
diff --git a/roundup/__init__.py b/roundup/__init__.py
index 564590cb13cc61bb88b74de5322ffaeb4f63c3bd..24f50c4a03b72ceb5a4502e9ddc0ddf7ced823bc 100644 (file)
--- a/roundup/__init__.py
+++ b/roundup/__init__.py
# 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.
much prettier cake :)
'''
-__version__ = '0.6.0'
+__version__ = '0.7.0b1'
# vim: set filetype=python ts=4 sw=4 et si