Changeset 4228
- Timestamp:
- 11/11/07 12:47:20 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/nuxleus/Scripts/openid/gateway/openidgateway/__init__.py
r4227 r4228 159 159 def forms(self, environ, start_response): 160 160 form = '''<form id="openid-login" method="get" 161 action="http:// gateway.openid.amp.fm/login" target="_top">161 action="http://dev.amp.fm/gatekeeper/login" target="_top"> 162 162 <input id="openid-text" type="text" 163 163 name="uname" class="single-input" trunk/nuxleus/Scripts/openid/gateway/server.py
r4227 r4228 11 11 'log.access_file': './access.log', 12 12 'log.error_file': './error.log', 13 'checker.on': False,} 13 'checker.on': False, 14 'tools.proxy.on': True, 15 'tools.proxy.base': 'http://dev.amp.fm'} 14 16 15 17 cherrypy.config.update(global_conf) … … 18 20 app_conf = { 19 21 'debug': True, 20 'base_url': 'http:// gateway.openid.amp.fm/',22 'base_url': 'http://dev.amp.fm/gatekeeper', 21 23 'xsltemplate_namespace': 'http://amp.fm/python/xsltemplates/', 22 24 }
