summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
...
* * test/fileutils/test_fileutils.rb (setup): support BSD style directory ↵aamine2005-01-261-0/+8
| | | | | | | | | group inheritance. [ruby-dev:25440] * test/fileutils/fileasserts.rb (assert_same_entry): show entry difference. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7833 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/Setup*: remove tcltklib.usa2005-01-261-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7831 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/tk/extconf.rb: support new tk scheme on mswin32.usa2005-01-261-0/+5
| | | | | | | fixed: [ruby-dev:25535] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7830 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * win32/win32.c (flock_winnt, flock_win95): unlock file even ifusa2005-01-261-0/+5
| | | | | | | LOCK_NB is specified. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7827 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/tk: merge tcltklib for Ruby/Tk installation controlnagai2005-01-251-0/+6
| | | | | | | * ext/tcltklib: remove git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7826 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ruby.c (proc_options): correct -T option in RUBYOPT.usa2005-01-251-0/+5
| | | | | | | fixed: [ruby-dev:25512] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7824 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/tcltklib/tcltklib.c: fix SEGV bug; trouble on canceling remainednagai2005-01-251-0/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | after scripts [ruby-dev:25479]: NULL current namespce when deleting Tk interpreter [ruby-talk:126225] * ext/tcltklib/extconf.rb: bug fix; TCL_ENABLE_THREAD flag is inverted [ruby-talk:126360] * ext/tcltklib/extconf.rb: add yet another native-thread check * ext/tk/tkutil.c: fix SEGV bug; NULL string pointer when finalize Ruby interpreter * ext/tk/lib/multi-tk.rb: avoid warning for deleted safeTk ip frame * ext/tk/lib/tk/bindtag.rb: bug fix; new method of named bindtag doesn't return the created object [ruby-dev:25479] * ext/tk/lib/tk/menu.rb: bug on treating arguments [ruby-dev:25479] * ext/tk/lib/tk.rb: bug fix; cannot accept a callback ID string for a command argument [ruby-dev:25479] * ext/tk/lib/multi-tk.rb: ditto * ext/tk/lib/tk/*.rb: ditto * ext/tk/lib/tkextlib/*.rb: ditto * ext/tk/sample/demos-jp/anilabel.rb: new demo script * ext/tk/sample/demos-en/anilabel.rb: ditto * ext/tk/sample/tkHTML/ss.rb: local variable scope bug fix [ruby-dev:25479] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7821 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Mon Jan 24 16:00:53 2005 NARUSE, Yui <naruse@ruby-lang.org>naruse2005-01-241-0/+5
| | | | | | | | * ext/nkf/lib/kconv.rb (guess_old): not use NKF.guess_old but NKF.guess1. fixed: [ruby-dev:25491] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7817 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/soap/wsdlDriver.rb: from 1.5.3-ruby1.8.2, operation which hasnahi2005-01-231-0/+11
| | | | | | | | | | | | | capitalized name (such as KeywordSearchRequest in AWS) is defined as a method having uncapitalized name. (converted with GenSupport.safemethodname to handle operation name 'foo-bar'). it introduced serious incompatibility; in the past, it was defined as a capitalized. define capitalized method as well under that circumstance. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7811 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/openssl/ossl_ocsp.c (ossl_ocspreq_to_der): should callgotoyuzo2005-01-221-0/+5
| | | | | | | GetOCSPReq at first. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7810 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* (accept) rescue SSLError. [druby-ja:110]seki2005-01-221-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7808 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* fail if UNIXFileOwner is set. [druby-ja:111]seki2005-01-221-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7807 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/resolv.rb (Resolv::DNS::Config.resolv): don't raise ResolvError.akr2005-01-211-0/+5
| | | | | | | reported by Sam Roberts. [ruby-talk:127133] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7804 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ChangeLog: fixed typo.shugo2005-01-211-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7803 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/net/imap.rb (decode_utf7): use pack("U*") to encode UTF-8.shugo2005-01-211-0/+8
| | | | | | | | * lib/net/imap.rb (encode_utf7): use unpack("U*") to decode UTF-8. * test/net/imap/test_imap.rb: added tests for Net::IMAP. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7800 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/net/imap.rb (u8tou16): fixed typo. fixed: [ruby-lis:40546]shugo2005-01-211-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7797 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/syck/rubyext.c (syck_parser_bufsize_set): avoid VC++ warningocean2005-01-201-0/+5
| | | | | | | "local variable 'size' used without having been initialized". git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7794 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/ipaddr.rb (to_s, test_to_s): too many colons with some cases.usa2005-01-191-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7788 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/resolv.rb (Resolv::DNS::Config.parse_resolv_conf): ignoreakr2005-01-181-0/+6
| | | | | | | | domain and search directive without an argument. reported by Sam Roberts. [ruby-talk:126781] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7786 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * configure.in (aix): fix typo. [ruby-talk:126401]nobu2005-01-171-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7782 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/readline/readline.c: suppress warnings.nobu2005-01-161-1/+16
| | | | | | | | | | | | | | | | * lib/irb/extend-command.rb (IRB::ContextExtender.def_extend_command): ditto. * lib/irb/ext/history.rb (IRB::Context::set_last_value): ditto. * lib/irb/ext/history.rb (IRB::Context::eval_history): ditto. * lib/irb/locale.rb (IRB::Locale::real_load): ditto. * lib/irb/slex.rb (SLex::Node::create_subnode): remove garbage. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7781 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* ChangeLog: typo fix.eban2005-01-161-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7779 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/uri/common.rb (PORT): typo fix. fiex: [ruby-core:04256]eban2005-01-161-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7777 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ruby.c (proc_options): ignore trailing CRs at the end of shortnobu2005-01-151-1/+6
| | | | | | | options as well as long options. fixed: [ruby-core:04232] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7775 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/rss/rss.rb (RSS::VERSION): 0.1.2 -> 0.1.3.kou2005-01-151-0/+6
| | | | | | | * lib/rss/rss.rb: accept inheritance. [ruby-talk:126104] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7774 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * object.c (rb_class_superclass): superclass of singleton class alsonobu2005-01-111-0/+5
| | | | | | | should be a singleton class. fixed: [ruby-list:40519] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7768 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * io.c (remain_size): use buffered data instead of unreading to avoidnobu2005-01-111-0/+5
| | | | | | | inconsistency of text mode. fixed: [ruby-dev:25446] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7767 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * numeric.c (Init_Numeric): turn off floating point exceptionsocean2005-01-111-0/+5
| | | | | | | on bcc32. "1e300".to_f had crashed by overflow. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7765 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * variable.c (rb_autoload): hide internal data from ruby level.nobu2005-01-101-0/+5
| | | | | | | fixed: [ruby-dev:25373] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7761 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/webrick/cgi.rb (WEBrick::CGI::Socket#request_line): shouldgotoyuzo2005-01-101-0/+15
| | | | | | | | | | | | | | | | | escape SCRIPT_NAME and PATH_INFO before being parsed as a URI. * lib/webrick/httputils.rb (WEBrick::HTTPUtils#escape_path): add new method to escape URI path component. * lib/webrick/ssl.rb (WEBrick::Config::SSL): the default value of :SSLEnable is false. * test/webrick/{test_cgi.rb,webrick.cgi}: new file. * test/webrick/utils.rb: require "webrick/https.h". git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7758 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * io.c (rb_f_select): IO list could be altered. [ruby-dev:25312]nobu2005-01-091-2/+6
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7756 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/webrick/test_server.rb (test_daemon): delete an assertiongotoyuzo2005-01-081-0/+5
| | | | | | | which has possibility to fail by race condition. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7755 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/fileutils/test_fileutils.rb (test_copy_entry): copy_entry copies only ↵aamine2005-01-081-0/+5
| | | | | | file type, not mtime. [ruby-dev:25383] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7753 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* fix typo.akr2005-01-081-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7750 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/yaml.rb: Kernel#y requires an argument.why2005-01-071-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7747 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* add ML ref. [ruby-dev:25426]akr2005-01-071-0/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7745 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * random.c (rand_init): use ALLOC_N instead of ALLOCA_Nakr2005-01-071-0/+4
| | | | | | | by TAMURA Takashi. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7744 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/webrick/httpproxy.rb (WEBrick::HTTPProxyServer#proxy_service):gotoyuzo2005-01-071-0/+17
| | | | | | | | | | | | | | | | | | | should delete trailing LF from the result of pack("m*"). * lib/webrick/httpproxy.rb (WEBrick::HTTPProxyServer#proxy_connect): - should delete trailing LF from the result of pack("m*"). - clear Request-Line not to send the sesponse by HTTPServer#run. * lib/webrick/httputils (WEBrick::HTTPUtils.parse_qvalues): refine regexp (and change the name of a local variable). * lib/webrick/server.rb (WEBrick::Daemon.start): prepared stdio don't allow changing its mode. * test/webrick/*, sample/webrick/httpproxy.rb: add new files. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7743 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * gc.c (mark_locations_array): avoid core dump with -O3.akr2005-01-071-0/+5
| | | | | | | [ruby-dev:25424] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7741 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/zlib/zlib.c (zstream_end): should return value.usa2005-01-061-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7739 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* set ML numberocean2005-01-061-0/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7738 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * win32/win32.c (rb_w32_close): didn't close socket handle.ocean2005-01-061-0/+7
| | | | | | | | * win32/win32.c (rb_w32_open_osfhandle): bcc32's _open_osfhandle never set EMFILE. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7737 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * random.c (random_seed): O_NONBLOCK isn't defined on someocean2005-01-061-0/+5
| | | | | | | platforms. [ruby-dev:25417] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7736 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/time.rb: recognize +00:00 and GMT as a localtime.akr2005-01-061-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7734 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Allow for colons in DOS file namesdave2005-01-051-0/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7733 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* use MockClock.sleep instead of Kernel.sleep [ruby-dev:25387]seki2005-01-051-0/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7731 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * random.c (limited_big_rand): didn't work if SIZEOF_BDIGITS == 2.akr2005-01-051-0/+7
| | | | | | | | | [ruby-dev:25408] * random.c (random_seed): refined. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7730 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * parse.y (BITSTACK_POP): workaround for bcc32 compiler's bug.ocean2005-01-051-0/+9
| | | | | | | | | | | shift assignment operator '>>=' for __int64 in struct may generate collapsed code. [ruby-dev:25342] * win32/win32.[ch]: failed to compile on bcc32 (and probably wince) [ruby-dev:25306] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7729 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_thread_initialize): Thread objects cannot be initializednobu2005-01-051-3/+8
| | | | | | | again. fixed: [ruby-core:04067] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7728 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * random.c (init_by_array): imported from mt19937ar-cok.tgz.akr2005-01-041-0/+13
| | | | | | | | | | | | | | | (genrand_int32): ditto. (genrand_real): replaced with genrand_res53 in mt19937ar-cok. (rand_init): support bignum for longer seed. (random_seed): generate longer seed. (make_mask): new function. (limited_rand): ditto. (limited_big_rand): ditto. (rb_f_rand): call limited_rand and limited_big_rand. [ruby-dev:25403] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7723 b2dd03c8-39d4-4d8f-98ff-823fe69b080e