~ubuntu-branches/ubuntu/natty/moin/natty-updates

« back to all changes in this revision

Viewing changes to MoinMoin/support/werkzeug/debug/templates/console.html

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2008-06-22 21:17:13 UTC
  • mto: This revision was merged to the branch mainline in revision 18.
  • Revision ID: james.westby@ubuntu.com-20080622211713-inlv5k4eifxckelr
ImportĀ upstreamĀ versionĀ 1.7.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2
 
  "http://www.w3.org/TR/html4/loose.dtd">
3
 
<html>
4
 
  <head>
5
 
    <title>Console // Werkzeug Debugger</title>
6
 
    <link rel="stylesheet" href="./__debugger__?cmd=resource&amp;f=style.css" type="text/css">
7
 
    <script type="text/javascript" src="./__debugger__?cmd=resource&amp;f=jquery.js"></script>
8
 
    <script type="text/javascript" src="./__debugger__?cmd=resource&amp;f=debugger.js"></script>
9
 
    <script type="text/javascript">
10
 
      var EVALEX = true,
11
 
          CONSOLE_MODE = true;
12
 
    </script>
13
 
  </head>
14
 
  <body>
15
 
    <div class="debugger">
16
 
      <h1>Interactive Console</h1>
17
 
      <div class="explanation">
18
 
        In this console you can execute Python expressions in the context of the
19
 
        application.  The initial namespace was created by the debugger automatically.
20
 
      </div>
21
 
      <div class="console"><div class="inner">The Console requires JavaScript.</div></div>
22
 
      <div class="footer">
23
 
        Brought to you by <strong class="arthur">DON'T PANIC</strong>, your
24
 
        friendly Werkzeug powered traceback interpreter.
25
 
      </div>
26
 
    </div>
27
 
  </body>
28
 
</html>