navigation_stage_index.py
Go to the documentation of this file.
00001 #! /usr/bin/env python
00002 
00003 """
00004 usage: %(progname)s [args]
00005 """
00006 
00007 import os, sys, string, time, getopt, re
00008 import neo_cgi, neo_util, neo_cs
00009 from pyclearsilver.log import *
00010 from pyclearsilver import CSPage, odb
00011 
00012 from webui import MBPage
00013 
00014 class MyPage(MBPage.MBPage):
00015   def setup(self, hdf):
00016     pass
00017     
00018   def display(self, hdf):
00019     pass
00020     
00021 
00022 def run(context):
00023   return MyPage(context, pagename="index", nologin=1)
00024 
00025 def main():
00026   context = CSPage.Context()
00027   run(context).start()
00028 
00029 if __name__ == "__main__":
00030   main()


navigation_application
Author(s): Scott Hassan
autogenerated on Thu Jan 2 2014 11:46:07