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

« back to all changes in this revision

Viewing changes to console/index.html

  • Committer: Matt Giuca
  • Date: 2010-07-28 06:09:00 UTC
  • Revision ID: matt.giuca@gmail.com-20100728060900-6a0lcuexcv1juh5r
ivle/webapp/submit/submit.html: Rewrote error message when an offering could not be found to submit to. This can have one of several causes, and the old error assumed it was because you weren't in a subject dir. Now enumerates the possible reasons. (LP: #526853)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
 
                      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
 
<html>
4
 
 <head>
5
 
  <title>IVLE Python Console</title>
6
 
  <script type='text/javascript' src='scripts/console.js'></script>
7
 
  <style type='text/css'>
8
 
    div.output {
9
 
        border: solid blue 1pt;
10
 
        height: 24em;
11
 
        overflow: scroll;
12
 
        margin-bottom: 4pt;
13
 
    }
14
 
    div.errors {
15
 
        border: solid red 1pt;
16
 
        height: 6em;
17
 
        overflow: scroll;
18
 
        margin-bottom: 4pt;
19
 
    }
20
 
    div.input {
21
 
        
22
 
        border: solid green 1pt;
23
 
    }
24
 
  </style>
25
 
 </head>
26
 
 <body>
27
 
  <div class='output'>
28
 
  </div>
29
 
  <div class='errors'>
30
 
  </div>
31
 
  <div class='input'>
32
 
   <input type='text' size='80'/>
33
 
  </div>
34
 
 </body>
35
 
</html>