Skip to content

Commit 1d9647b

Browse files
author
Richard Jones
committed
remove SHA hashes from source ([SF#827510]
1 parent 528cd41 commit 1d9647b

File tree

8 files changed

+14
-17
lines changed

8 files changed

+14
-17
lines changed

CHANGES.txt

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,14 @@ are given with the most recent entry first.
33

44
2003-10-?? 0.6.3
55
Fixed:
6-
- Fixed detectors fix incorrectly fixed in bugfix release 0.6.2
7-
- Added note to upgrading doc for detectors fix in 0.6.2
6+
- fixed detectors fix incorrectly fixed in bugfix release 0.6.2
7+
- added note to upgrading doc for detectors fix in 0.6.2
88
- added script to help migrating queries from pre-0.6 trackers
9-
- Fixed "documentation" of getnodeids in roundup.hyperdb
9+
- fixed "documentation" of getnodeids in roundup.hyperdb
1010
- added flush() to DevNull (sf bug #835365)
1111
- fixed javascript for help window for only one checkbox case
12-
- Date arithmetic was utterly broken, and has been for a long time.
13-
Date +/- Interval now works, and Date - Date also works (produces
14-
an Interval.
12+
- Date +/- Interval now works, and Date - Date also works
13+
- handle socket timeout exception (thanks Marcus Priesch)
1514

1615

1716
2003-09-29 0.6.2

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.25.2.2 2003-09-29 08:08:31 richard Exp $
18+
# $Id: __init__.py,v 1.25.2.3 2003-11-11 22:25:00 richard Exp $
1919

2020
''' Roundup - issue tracking for knowledge workers.
2121
@@ -67,6 +67,6 @@
6767
much prettier cake :)
6868
'''
6969

70-
__version__ = '0.6.2'
70+
__version__ = '0.6.3'
7171

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

roundup/scripts/roundup_server.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#
1717
""" HTTP Server that serves roundup.
1818
19-
$Id: roundup_server.py,v 1.26.2.1 2003-09-04 23:30:28 richard Exp $
19+
$Id: roundup_server.py,v 1.26.2.2 2003-11-11 22:25:00 richard Exp $
2020
"""
2121

2222
# python version check
@@ -78,6 +78,10 @@ def run_cgi(self):
7878
self.send_error(404, self.path)
7979
except client.Unauthorised:
8080
self.send_error(403, self.path)
81+
except socket.timeout:
82+
s = StringIO.StringIO()
83+
traceback.print_exc(None, s)
84+
self.log_message(str(s.getvalue()))
8185
except:
8286
# it'd be nice to be able to detect if these are going to have
8387
# any effect...

templates/classic/detectors/userauditor.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1919
# SOFTWARE.
2020
#
21-
#$Id: userauditor.py,v 1.1 2003-06-24 04:16:35 richard Exp $
21+
#$Id: userauditor.py,v 1.1.2.1 2003-11-11 22:25:00 richard Exp $
2222

2323
def audit_user_fields(db, cl, nodeid, newvalues):
2424
''' Make sure user properties are valid.
@@ -42,4 +42,3 @@ def init(db):
4242
db.user.audit('create', audit_user_fields)
4343

4444
# vim: set filetype=python ts=4 sw=4 et si
45-
#SHA: d4aea7465d4b7ca78de71ed9e73e09ce29b1b111

templates/classic/html/_generic.help.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,3 @@
7575
</form>
7676
</body>
7777
</html>
78-
<!-- SHA: 97d46e2f10096a13afc6e5c48a3e6175ada9738f -->

templates/classic/html/style.css

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -356,5 +356,3 @@ table.otherinfo th {
356356
font-weight: bold;
357357
text-align: left;
358358
}
359-
/* SHA: 1c2bdea9d2295da079168403292e5c9039bb5088 */
360-
/* SHA: 35d16ca4398e028f1b19902aadff924ffec27146 */

templates/minimal/detectors/userauditor.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1919
# SOFTWARE.
2020
#
21-
#$Id: userauditor.py,v 1.1 2003-06-24 04:16:35 richard Exp $
21+
#$Id: userauditor.py,v 1.1.2.1 2003-11-11 22:25:00 richard Exp $
2222

2323
def audit_user_fields(db, cl, nodeid, newvalues):
2424
''' Make sure user properties are valid.
@@ -42,4 +42,3 @@ def init(db):
4242
db.user.audit('create', audit_user_fields)
4343

4444
# vim: set filetype=python ts=4 sw=4 et si
45-
#SHA: d4aea7465d4b7ca78de71ed9e73e09ce29b1b111

templates/minimal/html/_generic.help.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,3 @@
7575
</form>
7676
</body>
7777
</html>
78-
<!-- SHA: 97d46e2f10096a13afc6e5c48a3e6175ada9738f -->

0 commit comments

Comments
 (0)