Mercurial > p > roundup > code
diff roundup/cgi_client.py @ 322:62f5f2c404ec
Some cleanup.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 23 Oct 2001 23:06:39 +0000 |
| parents | e18dd7227780 |
| children | c4a5922ffb74 |
line wrap: on
line diff
--- a/roundup/cgi_client.py Tue Oct 23 22:57:52 2001 +0000 +++ b/roundup/cgi_client.py Tue Oct 23 23:06:39 2001 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: cgi_client.py,v 1.39 2001-10-23 01:00:18 richard Exp $ +# $Id: cgi_client.py,v 1.40 2001-10-23 23:06:39 richard Exp $ import os, cgi, pprint, StringIO, urlparse, re, traceback, mimetypes import base64, Cookie, time @@ -644,7 +644,7 @@ # now figure which function to call path = self.split_path if not path or path[0] in ('', 'index'): - self.index() + return self.index() elif not path: raise 'ValueError', 'Path not understood' @@ -656,30 +656,25 @@ # is correct, but doesn't actually use it. action = path[0] if action == 'login_action': - self.login_action() - return + return self.login_action() # make sure anonymous are allowed to register if self.ANONYMOUS_REGISTER == 'deny' and self.user is None: return self.login() if action == 'newuser_action': - self.newuser_action() - return + return self.newuser_action() # make sure totally anonymous access is OK if self.ANONYMOUS_ACCESS == 'deny' and self.user is None: return self.login() if action == 'list_classes': - self.classes() - return + return self.classes() if action == 'login': - self.login() - return + return self.login() if action == 'logout': - self.logout() - return + return self.logout() m = dre.match(action) if m: self.classname = m.group(1) @@ -696,8 +691,7 @@ func = getattr(self, 'show%s'%self.classname) except AttributeError: raise NotFound - func() - return + return func() m = nre.match(action) if m: self.classname = m.group(1) @@ -705,8 +699,7 @@ func = getattr(self, 'new%s'%self.classname) except AttributeError: raise NotFound - func() - return + return func() self.classname = action try: self.db.getclass(self.classname) @@ -852,6 +845,13 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.39 2001/10/23 01:00:18 richard +# Re-enabled login and registration access after lopping them off via +# disabling access for anonymous users. +# Major re-org of the htmltemplate code, cleaning it up significantly. Fixed +# a couple of bugs while I was there. Probably introduced a couple, but +# things seem to work OK at the moment. +# # Revision 1.38 2001/10/22 03:25:01 richard # Added configuration for: # . anonymous user access and registration (deny/allow)
