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

« back to all changes in this revision

Viewing changes to www/plugins/console/template.html

  • Committer: dcoles
  • Date: 2008-07-18 02:40:58 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:912
Makeuser: Makeuser will now chown all files in a users home directory to the
unixid provided by the database. This means remakeallusers.py can be used to
update everyones unixids after a database change. The makeuser script will also 
no longer generate a random unixid when one is not given on the command line.

Database: Change to database so that a sequence is used by default. The allowed  
range is 1000-29999 (let's start at 5000, because 1000+ is used by adduser.  
Reference: http://www.debian.org/doc/debian-policy/ch-opersys.html)
See SF Bug '[ 2012190 ] Student UID generation'
Migration script will reallocate all users a new unixid from the sequence.

Usermgt-Server: Now no longer generates a random unixid. Rely on the database 
to come up with a new sequence number.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<html xmlns="http://www.w3.org/1999/xhtml"
2
 
      xmlns:xi="http://www.w3.org/2001/XInclude"
3
 
      xmlns:py="http://genshi.edgewall.org/" py:strip="">
4
 
      
5
 
  <body py:strip="">
6
 
    <div id="console_body">
7
 
      <div id="console_heading">Python Console<span py:if="windowpane" 
8
 
          class="console_button minimize">
9
 
          <a onclick="console_minimize()"
10
 
              title="Minimize the Python console">
11
 
            <img src="${minimize_path}" />
12
 
          </a>
13
 
        </span>
14
 
      </div>
15
 
      <div id="console_body2">
16
 
        <pre id="console_output" class='outputMsg'></pre>
17
 
        <div id="console_input">
18
 
          <div id="console_inputArea">
19
 
          </div>
20
 
          <label id="console_prompt">&gt;&gt;&gt; </label>
21
 
          <input id="console_inputText" type="text" size="80" 
22
 
              onkeypress="return catch_input(event.keyCode)" />
23
 
          <input type='button' value='Interrupt' onclick='set_interrupt();'/>
24
 
          <input type='button' value='Clear Output' onclick='return clear_output();'/>
25
 
          <input type='button' value='Reset' onclick='console_reset();'/>
26
 
          <span py:if="windowpane" class="console_button maximize">
27
 
            <a onclick="console_maximize()"
28
 
                title="Open up the Python console">
29
 
              <img src="${maximize_path}" />
30
 
            </a>
31
 
          </span>
32
 
        </div>
33
 
      </div>
34
 
    </div>
35
 
    <div py:if="windowpane" id="console_filler">
36
 
    <!-- Console filler, provides extra vertical space to stop the console
37
 
                                            covering over the bottom content -->
38
 
    </div>
39
 
  </body>
40
 
</html>