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

« back to all changes in this revision

Viewing changes to www/apps/consoleservice/__init__.py

  • Committer: drtomc
  • Date: 2008-02-29 03:00:36 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:628
console: Add output based interrupt. This allows users to interrupt long
         running outputs.
         TODO: poll for interrupts from cpu intensive ops.
         TODO: styling bug: the input box overlaps the output box. Matt?

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
    # The path determines which "command" we are receiving
47
47
    if req.path == "start":
48
48
        handle_start(req)
 
49
    elif req.path == "interrupt":
 
50
        handle_chat(req, kind='interrupt')
49
51
    elif req.path == "chat":
50
52
        handle_chat(req)
51
53
    elif req.path == "block":