Skip to content

Commit 777d598

Browse files
author
Richard Jones
committed
merge from HEAD
1 parent 3916eab commit 777d598

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-4
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Fixed:
77
- roundup-server -g option not recognised (sf bug 952310)
88
- HTML templating isset() inverted (sf bug 951779)
99
- otks manager missing (sf bug 952931)
10+
- mention DEFAULT_TIMEZONE requirement in upgrading doc (sf bug 952932)
1011

1112

1213
2004-05-07 0.7.1

doc/upgrading.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,20 @@ steps.
1313

1414
.. contents::
1515

16+
Migrating from 0.7.0 to 0.7.2
17+
=============================
18+
19+
0.7.2 DEFAULT_TIMEZONE is now required
20+
--------------------------------------
21+
22+
The DEFAULT_TIMEZONE configuration variable is now required. Add the
23+
following to your tracker's ``config.py`` file::
24+
25+
# You may specify a different default timezone, for use when users do not
26+
# choose their own in their settings.
27+
DEFAULT_TIMEZONE = 0 # specify as numeric hour offest
28+
29+
1630
Migrating from 0.7.0 to 0.7.1
1731
=============================
1832

roundup/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: __init__.py,v 1.30.2.1 2004-05-06 23:04:01 richard Exp $
18+
# $Id: __init__.py,v 1.30.2.2 2004-05-13 00:26:07 richard Exp $
1919

2020
'''Roundup - issue tracking for knowledge workers.
2121
@@ -68,6 +68,6 @@
6868
'''
6969
__docformat__ = 'restructuredtext'
7070

71-
__version__ = '0.7.1'
71+
__version__ = '0.7.2'
7272

7373
# vim: set filetype=python ts=4 sw=4 et si

roundup/cgi/actions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#$Id: actions.py,v 1.27 2004-05-06 03:18:03 richard Exp $
1+
#$Id: actions.py,v 1.27.2.1 2004-05-13 00:21:32 richard Exp $
22

33
import re, cgi, StringIO, urllib, Cookie, time, random
44

@@ -558,10 +558,10 @@ def handle(self):
558558
"otk" performs the reset.
559559
560560
"""
561+
otks = self.db.getOTKManager()
561562
if self.form.has_key('otk'):
562563
# pull the rego information out of the otk database
563564
otk = self.form['otk'].value
564-
otks = self.db.getOTKManager()
565565
uid = otks.get(otk, 'uid')
566566
if uid is None:
567567
self.client.error_message.append("""Invalid One Time Key!

0 commit comments

Comments
 (0)