2
# Copyright (C) 2007-2008 The University of Melbourne
4
# This program is free software; you can redistribute it and/or modify
5
# it under the terms of the GNU General Public License as published by
6
# the Free Software Foundation; either version 2 of the License, or
7
# (at your option) any later version.
9
# This program is distributed in the hope that it will be useful,
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
# GNU General Public License for more details.
14
# You should have received a copy of the GNU General Public License
15
# along with this program; if not, write to the Free Software
16
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22
# Console plugin. This "mini-app" can be plugged in to another application.
23
# It exposes two functions: "present" and "insert_scripts_styles".
24
# These should both be called at the appropriate time by the implementing
25
# application. See docs on these functions for details.
27
from common import util
29
def insert_scripts_styles(scripts, styles):
30
"""Given 2 lists of strings: scripts and styles. These lists are lists of
31
pathnames, as expected on the "scripts" and "styles" attributes of a
33
This function appends new strings to the ends of each list, as required by
34
this plugin. It does not add duplicates.
36
_append_if_absent(scripts,
37
"media/common/json2.js",
38
"media/common/md5.js",
39
"media/common/util.js",
40
"media/console/console.js")
41
_append_if_absent(styles,
42
"media/console/console.css")
45
"""Writes the HTML for this plugin into a request stream.
46
May utilise other properties of the Request object in generating the HTML.
48
req.write("""<div id="console_body">
49
<div id="console_output">
51
<div id="console_input">
52
<div id="console_inputArea">
54
<label id="console_prompt">>>> </label>
55
<input id="console_inputText"
56
type="text" size="80" onkeypress="catch_input(event.keyCode)" />
61
def _append_if_absent(list, *values):
62
"""Appends an arbitray number of values to a list, but omits values that
63
are already contained within the list."""