# HG changeset patch # User Cameron Blackwood # Date 1077769245 0 # Node ID f804d466ed91a3e03a5cdcae827ae7f48286600c # Parent bd79245fc30ccabf0bdca56da312b51efa9f7f8e *** empty log message *** diff -r bd79245fc30c -r f804d466ed91 doc/FAQ.txt --- a/doc/FAQ.txt Thu Feb 26 04:15:04 2004 +0000 +++ b/doc/FAQ.txt Thu Feb 26 04:20:45 2004 +0000 @@ -2,7 +2,7 @@ Roundup FAQ =========== -:Version: $Revision: 1.15 $ +:Version: $Revision: 1.16 $ .. contents:: @@ -60,14 +60,11 @@ # General Roundup RewriteRule ^/Roundup$ Roundup/ [R] - RewriteRule ^/Roundup/(.*) http://foohost.com:8888/$1 [P] - - # Redirect to Foo Issues - RewriteRule ^/Roundup/foo_issues(.*) FooIssues$1 [R] + RewriteRule ^/Roundup/(.*)$ http://foohost.com:8888/$1 [P,L] # Handle Foo Issues RewriteRule ^/FooIssues$ FooIssues/ [R] - RewriteRule ^/FooIssues/(.*) http://foohost.com:8888/foo_issues/$1 [P] + RewriteRule ^/FooIssues/(.*)$ http://foohost.com:8888/foo_issues/$1 [P,L] diff -r bd79245fc30c -r f804d466ed91 roundup/backends/sessions.py --- a/roundup/backends/sessions.py Thu Feb 26 04:15:04 2004 +0000 +++ b/roundup/backends/sessions.py Thu Feb 26 04:20:45 2004 +0000 @@ -1,4 +1,4 @@ -#$Id: sessions.py,v 1.9 2004-02-26 04:15:04 richard Exp $ +#$Id: sessions.py,v 1.10 2004-02-26 04:20:45 drkorg Exp $ """This module defines a very basic store that's used by the CGI interface to store session and one-time-key information. @@ -7,7 +7,7 @@ """ __docformat__ = 'restructuredtext' -import anydbm, whichdb, os, marshal +import anydbm, whichdb, os, marshal, time class BasicDatabase: ''' Provide a nice encapsulation of an anydbm store.