Mercurial > p > roundup > code
diff roundup/backends/rdbms_common.py @ 1467:378081f066cc
registration is now a two-step process with confirmation from the
email address supplied in the registration form
fixed [SF#687771] too (now handle all cases of @/:)
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 25 Feb 2003 10:19:32 +0000 |
| parents | b42fa71754c9 |
| children | 5a01e90b7dc9 |
line wrap: on
line diff
--- a/roundup/backends/rdbms_common.py Mon Feb 24 15:38:51 2003 +0000 +++ b/roundup/backends/rdbms_common.py Tue Feb 25 10:19:32 2003 +0000 @@ -1,4 +1,4 @@ -# $Id: rdbms_common.py,v 1.34 2003-02-18 01:57:39 richard Exp $ +# $Id: rdbms_common.py,v 1.35 2003-02-25 10:19:32 richard Exp $ ''' Relational database (SQL) backend common code. Basics: @@ -33,7 +33,7 @@ # support from blobfiles import FileStorage from roundup.indexer import Indexer -from sessions import Sessions +from sessions import Sessions, OneTimeKeys # number of rows to keep in memory ROW_CACHE_SIZE = 100 @@ -53,6 +53,7 @@ self.classes = {} self.indexer = Indexer(self.dir) self.sessions = Sessions(self.config) + self.otks = OneTimeKeys(self.config) self.security = security.Security(self) # additional transaction support for external files and the like
