~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to src/console/python-console

  • Committer: drtomc
  • Date: 2007-12-19 23:11:49 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:88
More work on the console.

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
urls = (
47
47
    '/',            'index',
48
48
    '/(.*\.js)',    'jscript',
 
49
    '/(.*\.css)',   'style',
49
50
    '/chat',        'chat')
50
51
 
51
52
# The global 'magic' is the secret that the client and server share
72
73
    def GET(self, name):
73
74
        web.output(file(name, "r").read())
74
75
 
 
76
class style:
 
77
    def GET(self, name):
 
78
        web.output(file(name, "r").read())
 
79
 
75
80
class chat:
76
81
    def POST(self):
77
82
        inp = web.input()