--> -->
 
 
AssertionError
Python 2.4.4: /usr/bin/python
Sat Apr 27 13:25:07 2024

A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.

 /opt/Admin/lib/monkeywiki/wiki
  877     #    print 'Error:', inst
  878 
  879 # cgi.test(); sys.exit(0)
  880 
  881 if __name__ == '__main__': main()
__name__ = '__main__', main = <function main>
 /opt/Admin/lib/monkeywiki/wiki in main()
  865     #try:
  866     if 1:
  867         wikipage = WikiPage(**get_wp_args())
  868         #set environment variable for use by any ancillary scripts (e.g. macros)
  869         #that might require a route back to the current wiki page
wikipage undefined, global WikiPage = <class __main__.WikiPage>, global get_wp_args = <function get_wp_args>
 /opt/Admin/lib/monkeywiki/wiki in __init__(self=<__main__.WikiPage instance>, page='wiki/EmacsCppIde', action='', **otherparams={})
  403         self.__dict__ = otherparams
  404         wn = WikiName(page)
  405         assert wn.is_valid(), 'Invalid WikiName'
  406         self.page = wn.name
  407         self.title = wn.spacify()
wn = <__main__.WikiName instance>, wn.is_valid = <bound method WikiName.is_valid of <__main__.WikiName instance>>

AssertionError: Invalid WikiName
      args = ('Invalid WikiName',)