Skip to content

Commit 2a6fa7f

Browse files
author
Cameron Blackwood
committed
*** empty log message ***
1 parent 7def044 commit 2a6fa7f

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

doc/FAQ.txt

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Roundup FAQ
33
===========
44

5-
:Version: $Revision: 1.15 $
5+
:Version: $Revision: 1.16 $
66

77
.. contents::
88

@@ -60,14 +60,11 @@ Then add::
6060

6161
# General Roundup
6262
RewriteRule ^/Roundup$ Roundup/ [R]
63-
RewriteRule ^/Roundup/(.*) http://foohost.com:8888/$1 [P]
64-
65-
# Redirect to Foo Issues
66-
RewriteRule ^/Roundup/foo_issues(.*) FooIssues$1 [R]
63+
RewriteRule ^/Roundup/(.*)$ http://foohost.com:8888/$1 [P,L]
6764

6865
# Handle Foo Issues
6966
RewriteRule ^/FooIssues$ FooIssues/ [R]
70-
RewriteRule ^/FooIssues/(.*) http://foohost.com:8888/foo_issues/$1 [P]
67+
RewriteRule ^/FooIssues/(.*)$ http://foohost.com:8888/foo_issues/$1 [P,L]
7168

7269
</IfModule>
7370

roundup/backends/sessions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#$Id: sessions.py,v 1.9 2004-02-26 04:15:04 richard Exp $
1+
#$Id: sessions.py,v 1.10 2004-02-26 04:20:45 drkorg Exp $
22
"""This module defines a very basic store that's used by the CGI interface
33
to store session and one-time-key information.
44
@@ -7,7 +7,7 @@
77
"""
88
__docformat__ = 'restructuredtext'
99

10-
import anydbm, whichdb, os, marshal
10+
import anydbm, whichdb, os, marshal, time
1111

1212
class BasicDatabase:
1313
''' Provide a nice encapsulation of an anydbm store.

0 commit comments

Comments
 (0)