Mercurial > p > roundup > code
changeset 2054:f804d466ed91
*** empty log message ***
| author | Cameron Blackwood <drkorg@users.sourceforge.net> |
|---|---|
| date | Thu, 26 Feb 2004 04:20:45 +0000 |
| parents | bd79245fc30c |
| children | ba1d54edc53f |
| files | doc/FAQ.txt roundup/backends/sessions.py |
| diffstat | 2 files changed, 5 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- 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] </IfModule>
--- 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.
