* ChangeLog: tabified.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9253 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2005-09-20 14:59:51 +00:00
parent c59306cccb
commit 66e67afd45

View File

@ -186,13 +186,13 @@ Sat Sep 17 20:58:56 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
Thread.new {
loop do
STDOUT.write(".") # busy on console (this is worst case though)
STDOUT.write(".") # busy on console (this is worst case though)
end
}
# socket operation took long time. (sometimes timed out)
Net::HTTP.start("www.ruby-lang.org") do |http|
http.get("/cgi-bin/cvsweb.cgi/ruby/array.c?rev=1.179")
http.get("/cgi-bin/cvsweb.cgi/ruby/array.c?rev=1.179")
end
Sat Sep 17 14:54:40 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
@ -327,10 +327,10 @@ Thu Sep 15 23:25:21 2005 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp>
* SOAP
* allow to configure an envelope namespace of SOAP request. (#124)
TemporaryNamespace = 'http://www.w3.org/2003/05/soap-envelope'
@client.options["soap.envelope.requestnamespace"] =
TemporaryNamespace = 'http://www.w3.org/2003/05/soap-envelope'
@client.options["soap.envelope.requestnamespace"] =
TemporaryNamespace
@client.options["soap.envelope.responsenamespace"] =
@client.options["soap.envelope.responsenamespace"] =
TemporaryNamespace
@client.do_proc(...)
@ -9653,7 +9653,7 @@ Tue Jun 22 19:24:59 2004 NAKAMURA Usaku <usa@ruby-lang.org>
Tue Jun 22 15:28:12 2004 Michal Rokos <michal@ruby-lang.org>
* compar.c: Remove explicit NIL_P() checks since rb_cmpint() does it
again in the exactly same manner.
again in the exactly same manner.
Tue Jun 22 01:32:40 2004 GOTOU Yuuzou <gotoyuzo@notwork.org>
@ -9746,7 +9746,7 @@ Sun Jun 13 00:23:04 2004 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
* ext/tcltklib/extconf.rb: [EXPERIMENTAL] MacOS X (darwin) support
* ext/tcltklib/tcltklib.c: fix thread trouble on callback proc, and
eliminate warning about instance variable access
eliminate warning about instance variable access
* ext/tk/lib/tk/menubar.rb: improve supported menu_spec
@ -10010,7 +10010,7 @@ Tue May 18 21:21:43 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp>
if cell.is_null # Cell#is_null
p "(NULL)"
else
p cell.data # Cell#data
p cell.data # Cell#data
end
end
end
@ -10035,7 +10035,7 @@ Tue May 18 21:21:43 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp>
parameter "r", "w", "rb", and "wb". CSV.parse and CSV.generate open
file with "r" and "w".
setting mode properly is user's responsibility now.
setting mode properly is user's responsibility now.
* lib/csv.rb: accepts String as a fs (field separator/column separator)
and rs (record separator/row separator)