Module application
source code
DAP server WSGI application.
This module implements a DAP server over the WSGI specification. For
more information, read http://www.python.org/peps/pep-0333.html.
|
__author__ = 'Roberto De Almeida <rob@pydap.org>'
|
|
index_tmpl = '<?xml version="1.0" encoding="UTF-8"?>\n<!DOCTYPE h...
|
|
parser = optparse.OptionParser()
|
|
pwd = os.environ ['PWD']
|
|
app = DapServerApplication(root)
|
Imports:
sys,
re,
paste.httpexceptions.HTTPException,
paste.httpexceptions.HTTPNotFound,
paste.request.construct_url,
paste.deploy.converters.asbool,
pkg_resources.iter_entry_points,
Cheetah.Template.Template,
dap,
plugins.lib.loadplugins,
plugins.lib.loadhandler,
server.BaseHandler,
server.SimpleHandler,
os,
optparse,
paste.httpserver.serve
__author__
None
-
- Value:
'Roberto De Almeida <rob@pydap.org>'
|
|
index_tmpl
None
-
- Value:
'''<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w
3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head><title>$title</title></head>
<body>
<h1>DODS directory for $location</h1>
<hr />
...
|
|
app
None
-
- Value:
DapServerApplication(root)
|
|