1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/cgi.rb (nOE_element_def): fix error when cascade methods which

don't have arguments. Patch by Takeyuki Fujioka. [ruby-dev:35964]

* lib/cgi.rb (blockquote): String#collect (this depends on
  String#each) is no longer exists.
  Patch by Takeyuki Fujioka. [ruby-dev:35946]

* lib/cgi.rb (blockquote): ditto.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18860 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2008-08-26 02:42:27 +00:00
parent 3c66a5b25e
commit ae86df99f7
2 changed files with 16 additions and 4 deletions

View file

@ -1,3 +1,14 @@
Tue Aug 26 11:33:30 2008 NARUSE, Yui <naruse@ruby-lang.org>
* lib/cgi.rb (nOE_element_def): fix error when cascade methods which
don't have arguments. Patch by Takeyuki Fujioka. [ruby-dev:35964]
* lib/cgi.rb (blockquote): String#collect (this depends on
String#each) is no longer exists.
Patch by Takeyuki Fujioka. [ruby-dev:35946]
* lib/cgi.rb (blockquote): ditto.
Tue Aug 26 03:06:48 2008 Tanaka Akira <akr@fsij.org>
* io.c (make_writeconv): copy invalid/undef flags.

View file

@ -1283,6 +1283,7 @@ class CGI
# - O EMPTY
def nOE_element_def(element, append = nil)
s = <<-END
attributes={attributes=>nil} if attributes.kind_of?(String)
"<#{element.upcase}" + attributes.collect{|name, value|
next unless value
" " + CGI::escapeHTML(name) +
@ -1389,11 +1390,11 @@ class CGI
#
# blockquote("http://www.example.com/quotes/foo.html") { "Foo!" }
# #=> "<BLOCKQUOTE CITE=\"http://www.example.com/quotes/foo.html\">Foo!</BLOCKQUOTE>
def blockquote(cite = nil) # :yield:
def blockquote(cite = {}) # :yield:
attributes = if cite.kind_of?(String)
{ "CITE" => cite }
else
cite or ""
cite
end
if block_given?
super(attributes){ yield }
@ -1413,11 +1414,11 @@ class CGI
#
# caption("left") { "Capital Cities" }
# # => <CAPTION ALIGN=\"left\">Capital Cities</CAPTION>
def caption(align = nil) # :yield:
def caption(align = {}) # :yield:
attributes = if align.kind_of?(String)
{ "ALIGN" => align }
else
align or ""
align
end
if block_given?
super(attributes){ yield }