Enable identity tracking
authorAaron Bentley <abentley@panoramicfeedback.com>
Tue, 11 Apr 2006 16:03:28 +0000 (12:03 -0400)
committerAaron Bentley <abentley@panoramicfeedback.com>
Tue, 11 Apr 2006 16:03:28 +0000 (12:03 -0400)
Bugs-Everywhere-Web/beweb/app.cfg
Bugs-Everywhere-Web/beweb/model.py
Bugs-Everywhere-Web/dev.cfg

index 0035ffbfc9584dc7d6bfde85594b22bef68187b6..024fa8a8ab07640d54e7a68a92d216d3abe6a209 100644 (file)
@@ -31,7 +31,7 @@
 # --------------
 
 # Enable Visit tracking
-# visit.on=False
+visit.on=True
 
 # Number of minutes a visit may be idle before it expires.
 # visit.timeout=20
 # --------
 
 # Switch to turn on or off the Identity management module
-# identity.on=False
+identity.on=True
 
 # [REQUIRED] URL to which CherryPy will internally redirect when an access
 # control check fails. If Identity management is turned on, a value for this
 # option must be specified.
-# identity.failure_url=None
+identity.failure_url="/login"
 
 # The IdentityProvider to use -- defaults to the SqlObjectIdentityProvider which
 # pulls User, Group, and Permission data out of your model database.
-identity.provider="sqlobject"
+identity.provider="sqlobject"
 
 # The names of the fields on the login form containing the visitor's user ID
 # and password. In addition, the submit button is specified simply so its
 # existence may be stripped out prior to passing the form data to the target
 # controller.
-identity.form.user_name="user_name"
-identity.form.password="password"
-identity.form.submit="login"
+identity.form.user_name="user_name"
+identity.form.password="password"
+identity.form.submit="login"
 
 # What sources should the identity provider consider when determining the
 # identity associated with a request? Comma separated list of identity sources.
 # Valid sources: form, visit, http_auth
-identity.source="form,http_auth,visit"
+identity.source="form,http_auth,visit"
 
 
 # SqlObjectIdentityProvider
index e20d1cea04846c6be7ef3d9a8218d392baac4f1e..33d2d2f3958832e92547999ec85c6a12cfcefb9b 100644 (file)
@@ -1,7 +1,7 @@
 from sqlobject import *
 from turbogears.database import PackageHub
 # Uncomment the following line if you wish to use Identity and SO_Provider
-from turbogears.identity.soprovider import TG_User, TG_Group, TG_Permission
+from turbogears.identity.soprovider import TG_User, TG_Group, TG_Permission
 
 hub = PackageHub("beweb")
 __connection__ = hub
index e985b4bf6d4eb7c60b47e4c033174c33481096ea..2d9433fe4e6254da09e57c3ff02c68b8dab59ad1 100644 (file)
@@ -9,7 +9,7 @@
 # pick the form for your database
 # sqlobject.dburi="postgres://username@hostname/databasename"
 # sqlobject.dburi="mysql://username:password@hostname:port/databasename"
-# sqlobject.dburi="sqlite:///file_name_and_path"
+sqlobject.dburi="sqlite:////home/abentley/be/be/Bugs-Everywhere-Web/database.sqlite"
 
 # if you are using a database or table type without transactions
 # (MySQL default, for example), you should turn off transactions