Go to the documentation of this file.00001
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 import webutil
00015
00016 class MyPage(MBPage.MBPage):
00017 def setup(self, hdf):
00018 pass
00019
00020 def display(self, hdf):
00021 webutil.grabTopics(hdf, ['/chatter:more'])
00022
00023
00024 def run(context):
00025 return MyPage(context, pagename="index", nologin=1)
00026
00027 def main():
00028 context = CSPage.Context()
00029 run(context).start()
00030
00031 if __name__ == "__main__":
00032 main()