[pypy-svn] r40468 - in pypy/dist/pypy/tool/build: . web

guido at codespeak.net guido at codespeak.net
Wed Mar 14 11:14:23 CET 2007


Author: guido
Date: Wed Mar 14 11:14:19 2007
New Revision: 40468

Modified:
   pypy/dist/pypy/tool/build/config.py
   pypy/dist/pypy/tool/build/web/app.py
Log:
Accidentally checked in test config at some point, rolling back, and fixing the
/serverstatus page (the same object is now used for / and /serverstatus).


Modified: pypy/dist/pypy/tool/build/config.py
==============================================================================
--- pypy/dist/pypy/tool/build/config.py	(original)
+++ pypy/dist/pypy/tool/build/config.py	Wed Mar 14 11:14:19 2007
@@ -3,7 +3,7 @@
 packageparent = py.magic.autopath().dirpath().dirpath().dirpath().dirpath()
 
 # general settings, used by both server and client
-server = 'localhost'
+server = 'codespeak.net'
 port = 12321
 testport = 32123
 path = [str(packageparent)]

Modified: pypy/dist/pypy/tool/build/web/app.py
==============================================================================
--- pypy/dist/pypy/tool/build/web/app.py	(original)
+++ pypy/dist/pypy/tool/build/web/app.py	Wed Mar 14 11:14:19 2007
@@ -221,7 +221,7 @@
     """ the application root """
     def __init__(self, config):
         self.style = FsFile(mypath.join('theme/style.css'), 'text/css')
-        self.index = ServerStatusPage(config)
+        self.index = self.serverstatus = ServerStatusPage(config)
         self.buildersinfo = BuildersInfoPage(config)
         self.builds = Builds(config)
     



More information about the Pypy-commit mailing list