summaryrefslogtreecommitdiffstats
path: root/editparams.cgi
blob: a0a400419ac9ab43e08d51f2d85c0791142b7875 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#! /usr/bonsaitools/bin/mysqltcl
# -*- Mode: tcl; indent-tabs-mode: nil -*-
#
# The contents of this file are subject to the Mozilla Public License
# Version 1.0 (the "License"); you may not use this file except in
# compliance with the License. You may obtain a copy of the License at
# http://www.mozilla.org/MPL/
# 
# Software distributed under the License is distributed on an "AS IS"
# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
# License for the specific language governing rights and limitations
# under the License.
# 
# The Original Code is the Bugzilla Bug Tracking System.
# 
# The Initial Developer of the Original Code is Netscape Communications
# Corporation. Portions created by Netscape are Copyright (C) 1998
# Netscape Communications Corporation. All Rights Reserved.
# 
# Contributor(s): Terry Weissman <terry@mozilla.org>


source "CGI.tcl"
source "defparams.tcl"

confirm_login

puts "Content-type: text/html\n"

if {![cequal [Param "maintainer"] $COOKIE(Bugzilla_login)]} {
    puts "<H1>Sorry, you aren't the maintainer of this system.</H1>"
    puts "And so, you aren't allowed to edit the parameters of it."
    exit
}


PutHeader "Edit parameters" "Edit parameters"

puts "This lets you edit the basic operating parameters of bugzilla.  Be careful!"
puts "<p>"
puts "Any item you check Reset on will get reset to its default value."

puts "<form method=get action=doeditparams.cgi><table>"

set rowbreak "<tr><td colspan=2><hr></td></tr>"
puts $rowbreak

foreach i $param_list {
    puts "<tr><th align=right valign=top>$i:</th><td>$param_desc($i)</td></tr>"
    puts "<tr><td valign=top><input type=checkbox name=reset-$i>Reset</td><td>"
    set value [Param $i]
    switch $param_type($i) {
	t {
	    puts "<input size=80 name=$i value=\"[value_quote $value]\">"
	}
	l {
	    puts "<textarea wrap=hard name=$i rows=10 cols=80>[value_quote $value]</textarea>"
	}
    }
    puts "</td></tr>"
    puts $rowbreak
}

puts "</table>"

puts "<input type=reset value=\"Reset form\"><br>"
puts "<input type=submit value=\"Submit changes\">"

puts "</form>"

puts "<p><a href=query.cgi>Skip all this, and go back to the query page</a>"