aboutsummaryrefslogtreecommitdiff
path: root/charset.rb
diff options
context:
space:
mode:
authorBenjamin Kellermann <Benjamin.Kellermann@gmx.de>2009-11-19 23:39:54 +0100
committerBenjamin Kellermann <Benjamin.Kellermann@gmx.de>2009-11-19 23:39:54 +0100
commit7effadace31c5c9efee2708e28acc4359b534b25 (patch)
tree85a859a8deeb616f88b83fed18f35702b6b0026e /charset.rb
parent0e8d1d9d28d127704897bb9fb4ea06105a1d0f84 (diff)
better code structure
Diffstat (limited to 'charset.rb')
-rw-r--r--charset.rb8
1 files changed, 3 insertions, 5 deletions
diff --git a/charset.rb b/charset.rb
index ad6c836..d713759 100644
--- a/charset.rb
+++ b/charset.rb
@@ -4,10 +4,8 @@
# see License #
################################
-utfcookie = CGI::Cookie.new("utf", "true")
-utfcookie.path = "/"
if ($cgi.include?("utf") || $cgi.cookies["utf"][0]) && !$cgi.include?("ascii")
- utfcookie.expires = Time.now+1*60*60*24*365
+ expiretime = Time.now+1*60*60*24*365
UTFASCII = "<a href='?ascii' style='text-decoration:none'>Change Charset to plain ASCII</a>"
YES = CGI.escapeHTML('✔')
@@ -23,7 +21,7 @@ if ($cgi.include?("utf") || $cgi.cookies["utf"][0]) && !$cgi.include?("ascii")
EDIT = CGI.escapeHTML("✍")
DELETE = CGI.escapeHTML("⌧")
else
- utfcookie.expires = Time.now-1*60*60*24*36
+ expiretime = Time.now-1*60*60*24*36
UTFASCII = "<a href='?utf' style='text-decoration:none'>If you see all these characters: #{CGI.escapeHTML('✔✘?–↞←→↠✍⌧')} you can safely change the charset to UTF-8</a>"
YES = CGI.escapeHTML('OK')
@@ -39,4 +37,4 @@ else
EDIT = CGI.escapeHTML("edit")
DELETE = CGI.escapeHTML("delete")
end
-$html.header["cookie"] = utfcookie
+$html.add_cookie("utf","true","/",expiretime)