aboutsummaryrefslogtreecommitdiff
path: root/customize.cgi
blob: afaced7933291c53400a89303c6338de4d4a5be6 (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
#!/usr/bin/env ruby

############################################################################
# Copyright 2009-2019 Benjamin Kellermann                                  #
#                                                                          #
# This file is part of Dudle.                                              #
#                                                                          #
# Dudle is free software: you can redistribute it and/or modify it under   #
# the terms of the GNU Affero General Public License as published by       #
# the Free Software Foundation, either version 3 of the License, or        #
# (at your option) any later version.                                      #
#                                                                          #
# Dudle is distributed in the hope that it will be useful, but WITHOUT ANY #
# WARRANTY; without even the implied warranty of MERCHANTABILITY or        #
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public     #
# License for more details.                                                #
#                                                                          #
# You should have received a copy of the GNU Affero General Public License #
# along with dudle.  If not, see <http://www.gnu.org/licenses/>.           #
############################################################################


if __FILE__ == $0

$:.push("..")
require_relative "dudle"

$d = Dudle.new


$d << "<h2>" + _("Customize personal settings") + "</h2>"
$d << _("You need <a href='https://en.wikipedia.org/wiki/HTTP_cookie'>cookies</a> enabled in order to personalize your settings.")

def choosetable(options, cursetting)
	ret = <<HEAD
<table>
	<tr>
HEAD
	ret += "<th>" + _("Current setting") + "</th>"
	ret += "<th>" + _("Description") + "</th>"
	ret += "</tr>"
	options.each{|description,href,title|
		selected = href == cursetting
		ret += "<tr><td>"
		ret += YES if selected
		ret += "</td><td class='settingstable' title='#{title}'>"
		ret += "<a href='?#{href}'>" unless selected
		ret += description
		ret += "</a>" unless selected
		ret += "</td></tr>"
	}
	ret += "</table>"
	ret
end


a = [[_("Use special characters") + " (#{UTFCHARS})","utf", _("Use this option if you see the characters in the parenthesis.")],
     [_("Use only normal strings"),"ascii",_("Use this option if you have problems with some characters.")]]
$d.html.add_cookie("ascii","true","/",Time.now + (1*60*60*24*365 * ($USEUTF ? -1 : 1 )))
$d << "<div id='charset'>"
$d << "<h3>" + _("Charset")+ "</h3>"
$d << choosetable(a,$USEUTF ? "utf" : "ascii")
$d << "</div>"

$d << "<div id='config_stylesheet'>"
$d << "<h3>" + _("Stylesheet") + "</h3>"
$d << choosetable($d.css.collect{|href| [href.scan(/([^\/]*)\.css/).flatten[0],"css=#{href}"]},"css=#{$d.user_css}")
$d << "</div>"


username = $cgi.cookies["username"][0]
if $cgi.include?("delete_username")
	$d.html.add_cookie("username","","/",Time.now - 1*60*60*24*365)
	username = ""
elsif $cgi.include?("username") && $cgi["username"] != ""
	$d.html.add_cookie("username",$cgi["username"],"/",Time.now + 1*60*60*24*365)
end



defaultuserstr = _("Default Username")
usernamestr = _("Username:")
$d << <<CHARSET
<div id='config_user'>
<h3>#{defaultuserstr}</h3>
<form method='get' action='' accept-charset='utf-8'>
	<table>
		<tr id='usernamesetting'>
			<td>
				<label for='username'>#{usernamestr} </label>
			</td>
			<td class='settingstable'>
CHARSET

if username && !$cgi.include?("edit")
	$d << <<CHARSET
				<span>#{CGI.escapeHTML(username)}</span>
				<input type='hidden' value="#{CGI.escapeHTML(username)}" name='username' />
				<input type='hidden' value="true" name='edit' />
			</td>
		</tr>
		<tr>
			<td></td>
			<td class='settingstable'>
CHARSET
	$d << "<input id='username' type='submit' value='" + _("Edit") + "' />"
else
	$d << <<CHARSET
				<input id='username' type='text' value="#{CGI.escapeHTML(username.to_s)}" name='username' />
			</td>
		</tr>
		<tr>
			<td></td>
			<td class='settingstable'>
CHARSET
	$d << "<input type='submit' value='" + _("Save") + "' />"
end

$d.html << "<input type='submit' name='delete_username' value='" + _("Delete") + "' />" if username

$d << <<CHARSET
			</td>
		</tr>
	</table>
</form>
</div>
CHARSET

$d.out
end