Go to the documentation of this file.00001
00002
00003 """
00004 usage: %(progname)s [args]
00005 """
00006
00007 import nstart
00008
00009 import os, sys, string, time, getopt, re
00010 from pyclearsilver.log import *
00011
00012 import neo_cgi, neo_util, neo_cs
00013
00014 from pyclearsilver import CSPage
00015 from pyclearsilver import odb
00016
00017 import MBPage
00018 import db_webui
00019 import webutil
00020
00021
00022 class MyPage(MBPage.MBPage):
00023 def setup(self, hdf):
00024 self.db = db_webui.initSchema()
00025
00026 def display(self, hdf):
00027 webutil.grabTopics(hdf, [])
00028 pass
00029
00030
00031 def run(context):
00032 return MyPage(context, pagename="index", nologin=False)
00033
00034 def main():
00035 context = CSPage.Context()
00036 run(context).start()
00037
00038 if __name__ == "__main__":
00039 main()