Fixed the log in link for xvm-dev by using environ['HOSTNAME']
authorPeter Iannucci <iannucci@mit.edu>
Sat, 21 Feb 2009 03:09:34 +0000 (22:09 -0500)
committerPeter Iannucci <iannucci@mit.edu>
Sat, 21 Feb 2009 03:09:34 +0000 (22:09 -0500)
svn path=/trunk/packages/invirt-web/; revision=2182

code/main.py
code/templates/unauth.tmpl

index dd60e96..b6f7b7f 100755 (executable)
@@ -12,6 +12,7 @@ import simplejson
 import sys
 import time
 import urllib
+import os
 from StringIO import StringIO
 
 def revertStandardError():
@@ -606,7 +607,8 @@ def info(username, state, path, fields):
 
 def unauthFront(_, _2, _3, fields):
     """Information for unauth'd users."""
-    return templates.unauth(searchList=[{'simple' : True}])
+    return templates.unauth(searchList=[{'simple' : True, 
+            'hostname' : os.environ['HOSTNAME'] if 'HOSTNAME' in os.environ else 'xvm.mit.edu'}])
 
 def admin(username, state, path, fields):
     if path == '':
index e8b21ea..0715f2c 100644 (file)
@@ -18,7 +18,7 @@ to any Athena account holder.</p>
 
 <p>MIT users:</p>
 <blockquote><big><a
-href="https://xvm.mit.edu/"><strong><font color="green">&rarr;</font> Log in to XVM now</strong>
+href="https://$hostname/"><strong><font color="green">&rarr;</font> Log in to XVM now</strong>
 </a></big></blockquote>
 <p>You'll need an <a href="http://ca.mit.edu/">MIT personal
 certificate</a>.</p>