aboutsummaryrefslogtreecommitdiffstats
path: root/Bugs-Everywhere-Web/README.txt
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2008-11-19 11:55:40 -0500
committerW. Trevor King <wking@drexel.edu>2008-11-19 11:55:40 -0500
commit5ee35ad5ae30efd17a4c99d3056232b57bd4529b (patch)
tree282fcbc18daa7e835fadb0484dfd435d8714b8ef /Bugs-Everywhere-Web/README.txt
parent3b0bfcb7488132cd40733812da41772f890c99b2 (diff)
downloadbugseverywhere-5ee35ad5ae30efd17a4c99d3056232b57bd4529b.tar.gz
Added identity discussion to BE-Web README.txt & require login to edit bugs.
Diffstat (limited to 'Bugs-Everywhere-Web/README.txt')
-rw-r--r--Bugs-Everywhere-Web/README.txt36
1 files changed, 34 insertions, 2 deletions
diff --git a/Bugs-Everywhere-Web/README.txt b/Bugs-Everywhere-Web/README.txt
index b6b78cf..10774df 100644
--- a/Bugs-Everywhere-Web/README.txt
+++ b/Bugs-Everywhere-Web/README.txt
@@ -1,10 +1,42 @@
Bugs-Everywhere-Web
+This is a TurboGears (http://www.turbogears.org) project. It can be
+started by running the start-beweb.py script.
+
Configure by creating an appropriate beweb/config.py from
beweb/config.py.example. The server will edit the repositories that
it manages, so you should probably have it running on a seperate
branch than your working repository. You can then merge/push
as you require to keep the branches in sync.
-This is a TurboGears (http://www.turbogears.org) project. It can be
-started by running the start-beweb.py script.
+See
+ http://docs.turbogears.org/1.0/Configuration
+For standard turbogears configuration information.
+
+Currently, you need to login for any methods with a
+@identity.require() decorator. The only group in the current
+implementation is 'editbugs'. Basically, anyone can browse around,
+but only registered 'editbugs' members can change things.
+
+Anonymous actions:
+ * See project tree
+ * See buglist
+ * See comments
+Editbugs required actions:
+ * Create new comments
+ * Reply to comments
+ * Update comment info
+
+
+All login attempts will fail unless you have added some valid users. See
+ http://docs.turbogears.org/1.0/GettingStartedWithIdentity
+For a good intro. For the impatient, try something like
+ Bugs-Everywhere-Web$ tg-admin toolbox
+ browse to 'CatWalk' -> 'User' -> 'Add User+'
+or
+ Bugs-Everywhere-Web$ tg-admin sholl
+ >>> u = User(user_name=u'jdoe', email_address=u'jdoe@example.com',
+ display_name=u'Jane Doe', password=u'xxx')
+ >>> g = Group(group_name=u'editbugs', display_name=u'Edit Bugs')
+ >>> g.addUser(u) # BE-Web uses SQLObject
+Exit the tg-admin shell with Ctrl-Z on MS Windows, Ctrl-D on other systems.