aboutsummaryrefslogtreecommitdiff
path: root/customize.rb
blob: 068f946fb0e2a59061dbb0f443b83677424b0383 (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
133
134
135
136
137
138
139
140
#!/usr/bin/env ruby

############################################################################
# Copyright 2009 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 "dudle"

$d = Dudle.new("Customize")


$d << <<END
<h2>Customize Personal Settings</h2>
You need cookies enabled in order to personalize your settings.
END

def choosetable(tablesummary, options, cursetting)
	ret = <<HEAD 
<table summary='#{tablesummary}'>
	<tr>
		<th>Current Setting</th>
		<th>Description</th>
	</tr>
HEAD
	options.each{|description,href,title|
		selected = href == cursetting
		ret += "<tr><td>"
		ret += CROSS 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 normal strings","ascii"], 
     ["Use special characters (#{UTFCHARS})","utf", "Use this options if you see the characters in the parenthesis."]]
$d.html.add_cookie("utf","true","/",Time.now + (1*60*60*24*365 * (USEUTF ? 1 : -1 )))
$d << <<CHARSET
<div id='charset'>
<h3>Charset</h3>
#{choosetable("Charset settings",a,USEUTF ? "utf" : "ascii")}
</div>
CHARSET

css = $cgi.cookies["css"][0]
css = $cgi["css"] if $cgi.include?("css")
css ||= "dudle.css"
$d.html.add_cookie("css",css,"/",Time.now + (1*60*60*24*365 * (css == "dudle.css" ? -1 : 1 )))
$d << <<CSS
<div id='config_stylesheet'>
<h3>Stylesheet</h3>
#{choosetable("Stylesheet settings",$d.css.collect{|href| [href.scan(/([^\/]*)\.css/).flatten[0],"css=#{href}"]},"css=#{css}")}
</div>
CSS


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


$d << <<CHARSET
<div id='config_user'>
<h3>Default Username</h3>
<form method='get' action=''>
	<table summary="Set default username">
		<tr>
			<td>
				<label for='username'>Username: </label>
			</td>
			<td class='settingstable'>
CHARSET

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

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

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

$d.out($cgi)
end