--> --> -->
 
 
AttributeError
Python 2.4.4: /usr/bin/python
Fri Sep 3 23:21:47 2010

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

 /kunden/homepages/5/d199348766/htdocs/roguefalcon/index.cgi
   14 if __name__ == "__main__":
   15 
   16    # Run the app
   17    app = Myapp()
   18    app.run()
app = <__main__.Myapp instance>, app.run = <bound method Myapp.run of <__main__.Myapp instance>>
 /homepages/5/d199348766/htdocs/roguefalcon/lib/cgi_app.py in run(self=<__main__.Myapp instance>)
  125             method = self._dispatch[run_mode]
  126         else:
  127             if callable(getattr(self,run_mode)):
  128                 method = getattr(self,run_mode)
  129             else:
builtin callable = <built-in function callable>, builtin getattr = <built-in function getattr>, self = <__main__.Myapp instance>, run_mode = 'view'

AttributeError: Myapp instance has no attribute 'view'
      args = ("Myapp instance has no attribute 'view'",)