summaryrefslogtreecommitdiff
path: root/tools/mmd/mmd.wsgi
diff options
context:
space:
mode:
authorJogi Hofmüller <jogi@mur.at>2011-08-01 17:16:59 +0000
committerJogi Hofmüller <jogi@mur.at>2011-08-01 17:16:59 +0000
commitd6e5bde11d06c846035d1670b4800cf574d2420d (patch)
tree541b478c9dc049704d4284d4cceb469b94d48546 /tools/mmd/mmd.wsgi
parent- found a way to handle encoding (diff)
- finished registration procedure
- user can sign up now - registration needs confirmation (email sent) - registration can also be canceled git-svn-id: https://svn.spreadspace.org/mur.sat@88 7de4ea59-55d0-425e-a1af-a3118ea81d4c
Diffstat (limited to 'tools/mmd/mmd.wsgi')
-rw-r--r--tools/mmd/mmd.wsgi6
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/mmd/mmd.wsgi b/tools/mmd/mmd.wsgi
index 4c0d3ee..4227f7c 100644
--- a/tools/mmd/mmd.wsgi
+++ b/tools/mmd/mmd.wsgi
@@ -62,6 +62,12 @@ def application (environ, response):
body = submit (session)
elif cmd == 'viewlog':
body = viewlog (session)
+ elif cmd == 'confirmRegistration':
+ body = confirmRegistration (session)
+ elif cmd == 'completeRegistration':
+ body = completeRegistration (session)
+ elif cmd == 'cancelRegistration':
+ body = cancelRegistration (session)
elif cmd == 'mmdtest':
body = mmdtest (environ, cookie)
content_type = 'text/plain'