From 4396bb0cd1bd2d3ac6943224524b1f5a4b477d30 Mon Sep 17 00:00:00 2001 From: ausiv4 Date: Tue, 28 Jul 2009 17:59:43 +0000 Subject: In this update we use jsPacker.pl to combine and compress javascript files. Instead of sending 6 javascript files totaling about 50KB, we now send 1 file totaling 21.1KB. After modifying any javascript files, run build-pack.sh to update srp.min.js. The login.html and register.html templates have been changed to send the one packed file. The file srp.js was modified so that it would pack properly. Necessary files from the perl version of packer are included, but they shouldn't be included on production web servers. The packer files are released under the LGPL. --- django/srpproject/srp/views.py | 1 + django/srpproject/templates/login.html | 6 ++++-- django/srpproject/templates/register.html | 3 +++ 3 files changed, 8 insertions(+), 2 deletions(-) (limited to 'django') diff --git a/django/srpproject/srp/views.py b/django/srpproject/srp/views.py index 1ad98dc..4200e8c 100644 --- a/django/srpproject/srp/views.py +++ b/django/srpproject/srp/views.py @@ -116,6 +116,7 @@ def verify(request): response = "%s" % hashlib.sha256("%s%s%s" % (request.session["srp_A"], request.session["srp_M"], request.session["srp_S"])).hexdigest() auth.login(request, user) else: + # This should only happen when authentication is successful with SRP, but the user isn't in the auth table. response = "Authentication failed. This is likely a server problem." else: response = "Invalid username or password." diff --git a/django/srpproject/templates/login.html b/django/srpproject/templates/login.html index f949663..6a77b2c 100644 --- a/django/srpproject/templates/login.html +++ b/django/srpproject/templates/login.html @@ -1,11 +1,13 @@ + {% comment %} - - + {% endcomment %} + + + {% endcomment %} +