Make object

This commit is contained in:
Tim Bentley 2013-04-15 18:55:50 +01:00
parent 220681c900
commit 7f78250bb2
1 changed files with 3 additions and 3 deletions

View File

@ -216,7 +216,7 @@ class HttpServer(object):
u'tools.basic_auth.on': False}}
return directory_config
class Public:
class Public(object):
"""
Main access class with may have security enabled on it.
"""
@ -228,7 +228,7 @@ class HttpServer(object):
url = urlparse.urlparse(cherrypy.url())
return self.router.process_http_request(url.path, *args)
class Files:
class Files(object):
"""
Provides access to files and has no security available. These are read only accesses
"""
@ -237,7 +237,7 @@ class HttpServer(object):
url = urlparse.urlparse(cherrypy.url())
return self.router.process_http_request(url.path, *args)
class Stage:
class Stage(object):
"""
Stageview is read only so security is not relevant and would reduce it's usability
"""