aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--charset.rb12
-rwxr-xr-xcustomize.rb4
2 files changed, 8 insertions, 8 deletions
diff --git a/charset.rb b/charset.rb
index fa77164..a279b6f 100644
--- a/charset.rb
+++ b/charset.rb
@@ -17,13 +17,13 @@
# along with dudle. If not, see <http://www.gnu.org/licenses/>. #
############################################################################
-USEUTF = true
-USEUTF = false if $cgi.user_agent =~ /.*MSIE [56]\..*/
-USEUTF = false if $cgi.cookies["ascii"][0]
-USEUTF = true if $cgi.include?("utf")
-USEUTF = false if $cgi.include?("ascii")
+$USEUTF = true
+$USEUTF = false if $cgi.user_agent =~ /.*MSIE [56]\..*/
+$USEUTF = false if $cgi.cookies["ascii"][0]
+$USEUTF = true if $cgi.include?("utf")
+$USEUTF = false if $cgi.include?("ascii")
-if USEUTF
+if $USEUTF
NOSORT = CGI.escapeHTML('▾▴')
SORT = CGI.escapeHTML('▴')
REVERSESORT = CGI.escapeHTML('▾')
diff --git a/customize.rb b/customize.rb
index 3f9bb6e..97e6a42 100755
--- a/customize.rb
+++ b/customize.rb
@@ -58,11 +58,11 @@ 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.html.add_cookie("ascii","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")}
+#{choosetable("Charset settings",a,$USEUTF ? "utf" : "ascii")}
</div>
CHARSET