From 6ca9f988fb9bfaaf08ffd0c4264d2128bb624fa8 Mon Sep 17 00:00:00 2001 From: drkorg Date: Thu, 26 Feb 2004 04:20:45 +0000 Subject: [PATCH] *** empty log message *** git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@2123 57a73879-2fb5-44c3-a270-3262357dd7e2 --- doc/FAQ.txt | 9 +++------ roundup/backends/sessions.py | 4 ++-- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/doc/FAQ.txt b/doc/FAQ.txt index a96f9ba..62a7dbe 100644 --- a/doc/FAQ.txt +++ b/doc/FAQ.txt @@ -2,7 +2,7 @@ Roundup FAQ =========== -:Version: $Revision: 1.15 $ +:Version: $Revision: 1.16 $ .. contents:: @@ -60,14 +60,11 @@ Then add:: # 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 --git a/roundup/backends/sessions.py b/roundup/backends/sessions.py index a0f3f50..5f9a79b 100644 --- a/roundup/backends/sessions.py +++ b/roundup/backends/sessions.py @@ -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 @@ class. It's now also used for One Time Key handling too. """ __docformat__ = 'restructuredtext' -import anydbm, whichdb, os, marshal +import anydbm, whichdb, os, marshal, time class BasicDatabase: ''' Provide a nice encapsulation of an anydbm store. -- 2.30.2