projects
/
zzz-floof.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Search for usernames literally, not with func.lower().
[zzz-floof.git]
/
floof
/
lib
/
base.py
diff --git
a/floof/lib/base.py
b/floof/lib/base.py
index
169493c
..
b42d2be
100644
(file)
--- a/
floof/lib/base.py
+++ b/
floof/lib/base.py
@@
-3,8
+3,9
@@
Provides the BaseController class for subclassing.
"""
from pylons.controllers import WSGIController
Provides the BaseController class for subclassing.
"""
from pylons.controllers import WSGIController
+from pylons.controllers.util import abort, redirect
from pylons.templating import render_mako as render
from pylons.templating import render_mako as render
-from pylons import config, session, tmpl_context as c
+from pylons import config,
request,
session, tmpl_context as c
from routes import request_config
from floof import model
from routes import request_config
from floof import model
@@
-34,3
+35,11
@@
class BaseController(WSGIController):
return WSGIController.__call__(self, environ, start_response)
finally:
model.Session.remove()
return WSGIController.__call__(self, environ, start_response)
finally:
model.Session.remove()
+
+
+ def redirect_to_referrer(self):
+ """Performs a redirect_to to wherever we came from. Used for stuff
+ like logging in.
+ """
+ referrer = request.headers.get('REFERER', '/')
+ redirect(referrer, code=302)