Changeset 777
- Timestamp:
- 11/01/05 15:22:11
- Files:
-
- trunk/cherrypy/_cphttptools.py (modified) (1 diff)
- trunk/cherrypy/test/test_config.py (modified) (1 diff)
- trunk/cherrypy/test/test_core.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/_cphttptools.py
r775 r777 306 306 objectPathList = tpath.split('/') 307 307 if objectPathList == ['global']: 308 objectPathList = [' _global']308 objectPathList = ['global_'] 309 309 objectPathList = ['root'] + objectPathList + ['index'] 310 310 trunk/cherrypy/test/test_config.py
r768 r777 7 7 return cherrypy.config.get(key, "None") 8 8 index.exposed = True 9 _global= index9 global_ = index 10 10 xyz = index 11 11 trunk/cherrypy/test/test_core.py
r776 r777 18 18 andnow.exposed = True 19 19 20 def _global(self):20 def global_(self): 21 21 pass 22 _global.exposed = True22 global_.exposed = True 23 23 24 24 cherrypy.root = Root()

