Main Page
Namespaces
Classes
Files
File List
src
webui
mod
webui
cgibin
ping.py
Go to the documentation of this file.
1
#! /usr/bin/env python
2
3
from
pyclearsilver
import
CSPage
4
import
MBPage
5
6
class
MyPage
(
MBPage.MBPage
):
7
def
setup
(self, hdf):
8
pass
9
10
def
display
(self, hdf):
11
pass
12
13
def
run
(context):
14
return
MyPage(context, pagename=
"ping"
, nologin=
False
)
15
16
def
main
():
17
context = CSPage.Context()
18
run
(context).
start
()
19
20
if
__name__ ==
"__main__"
:
21
main
()
webui.mod.webui.cgibin.ping.run
def run(context)
Definition:
ping.py:13
webui.mod.webui.cgibin.ping.MyPage.setup
def setup(self, hdf)
Definition:
ping.py:7
webui.mod.webui.cgibin.ping.MyPage.display
def display(self, hdf)
Definition:
ping.py:10
webui.startcgi.start
start
Definition:
startcgi.py:4
webui.MBPage.MBPage
Definition:
MBPage.py:18
webui.mod.webui.cgibin.ping.MyPage
Definition:
ping.py:6
webui.mod.webui.cgibin.ping.main
def main()
Definition:
ping.py:16
webui
Author(s): Scott Hassan
autogenerated on Mon Jun 10 2019 15:51:24