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
|
#!/usr/bin/env ruby
=begin
helloerb2.cgi - Sample script for CGI/ERB
Set locale/charset automaticaly.
(from HTTP_ACCEPT_LANGUAGE, HTTP_ACCEPT_CHARSET sended by web browser).
Recommanded to set UTF-8 forcely because some web browser
doesn't send HTTP_ACCEPT_CHARSET correctly.(See helloerb.cgi)
Copyright (C) 2005 Masao Mutoh
You may redistribute it and/or modify it under the same
license terms as Ruby.
=end
begin
require 'rubygems'
rescue LoadError
end
require 'gettext/cgi'
require 'gettext/erb'
class SimpleContainer2
include GetText::ErbContainer
def initialize(domainname, domainpath = nil, locale = nil, charset = nil)
bindtextdomain(domainname, domainpath, locale)
@domainname = domainname
end
def description
_("Sample script for CGI/ERB (Auto-Detect charset).")
end
def to_html(path)
eval_file(path)
end
end
print "Content-type:text/html; charset=#{Locale.charset}\n\n"
con = SimpleContainer2.new("helloerb2", "locale")
print con.to_html("helloerb.rhtml")
|