--- a/.hgtags Fri Mar 11 11:03:27 2016 +0100
+++ b/.hgtags Fri Mar 11 14:47:16 2016 +0100
@@ -7,3 +7,4 @@
dc3f8366729d02a15fdd861bfff1460dac342e20 00.00.02
ae8bf1fd7bf9330bd108c945dce64bed93e423f0 00.00.03
d24c889021e32e7cbd5a5cd9af9c7a8da62e1a06 00.00.04
+6a2f764b851fb75462bfa92590b0ebb4522ef23b 00.00.05
--- a/server/src/metaeducation/__init__.py Fri Mar 11 11:03:27 2016 +0100
+++ b/server/src/metaeducation/__init__.py Fri Mar 11 14:47:16 2016 +0100
@@ -1,4 +1,4 @@
-VERSION = (0, 0, 4, "final", 0)
+VERSION = (0, 0, 5, "final", 0)
VERSION_STR = ".".join(map(lambda i:"%02d" % (i,), VERSION[:2]))
--- a/server/src/metaeducation/middleware.py Fri Mar 11 11:03:27 2016 +0100
+++ b/server/src/metaeducation/middleware.py Fri Mar 11 14:47:16 2016 +0100
@@ -19,5 +19,5 @@
context = request.GET["context"]
response = redirect(settings.LOGIN_URL)
print(path)
- response["LOCATION"] += "?"+urlencode({"context": context, "next": settings.URL_SUBDIRECTORY+"/"+path})
+ response["LOCATION"] += "?"+urlencode({"context": context, "next": settings.BASE_URL+path})
return response