summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* * eval.c, intern.h (rb_proc_call, rb_obj_method, rb_method_call):nobu2005-07-114-49/+172
| | | | | | | | | | export. * ext/enumerator/enumerator.c (enumerator_with_index): [EXPERIMENTAL] added a new method Enumerator#with_index. [ruby-talk:147728] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8750 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * regparse.c (fetch_escaped_value): mask values following \c innobu2005-07-102-3/+8
| | | | | | | regexp. fixed: [ruby-dev:26500] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8748 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/xmlrpc/server.rb (XMLRPC::Server): Switch from GServer over tomneumann2005-07-102-96/+49
| | | | | | | | WEBrick. This makes file lib/xmlrpc/httpserver.rb obsolete (at least it is no further used by the XML-RPC library). git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8747 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/webrick/cgi.rb (WEBrick::CGI::Socket#request_line):gotoyuzo2005-07-102-2/+8
| | | | | | | | mistook to merge the patch of [ruby-dev:26235] at revision 1.11. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8744 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/pathname.rb (Pathname#unlink): try Dir.unlink first toakr2005-07-102-2/+8
| | | | | | | | avoid unlink a directory by root. cf. [ruby-dev:26237] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8743 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2005-07-11akr2005-07-101-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8742 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/debug.rb (debug_command): added a deficient format specifier.nobu2005-07-102-4/+9
| | | | | | | fixed: [ruby-core:05419] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8741 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2005-07-10nobu2005-07-101-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8740 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2005-07-09suke2005-07-091-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8739 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* convert dispid in Ruby and C by INT2NUM and NUM2INT.suke2005-07-094-3/+24
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8738 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * win32/win32.c (StartSockets): iSockOpt is no longer used.nobu2005-07-081-5/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8735 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/rss/rss.rb (RSS::VERSION): 0.1.4 -> 0.1.5.kou2005-07-085-28/+30
| | | | | | | | | | | | | | | * test/rss/test_version.rb (RSS::TestVersion#test_version): ditto. * lib/rss/0.9.rb (RSS::Rss::Channel::Item::Category): domain attribute of <category> is optional. Thanks to Chris Lee <clee@kde.org>. * test/rss/test_parser.rb (RSS::TestParser#test_category20): adjusted test case. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8734 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2005-07-08kou2005-07-081-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8733 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * object.c (rb_obj_pattern_match): now returns nil.matz2005-07-064-488/+96
| | | | | | | | | | | | | [ruby-core:05391] * sample/svr.rb: service can be stopped by ill-behaved client; use tsvr.rb instead. * missing/erf.c: original erf.c by prof. Okumura is confirmed to be public domain. reverted BSD implementation. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8732 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * win32/win32.c (open_ifs_socket): new function.usa2005-07-063-26/+62
| | | | | | | | | * win32/win32.c (StartSockets, rb_w32_socket): use open_ifs_socket() instead of socket(). all changes are derived from [ruby-core:5388]. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8731 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/nkf/lib/kconv.rb: fix typo.naruse2005-07-051-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8730 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/nkf/nkf-utf8/{nkf.c,utf8tbl.c,config.h}:naruse2005-07-055-19/+1118
| | | | | | | | | imported nkf.c 1.70 (support UTF-8-MAC) * ext/nkf/lib/kconv.rb: add :utf8mac and :internalunicode git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8729 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2005-07-06naruse2005-07-051-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8728 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * instruby.rb: expand source library path.nobu2005-07-052-3/+7
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8727 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_thread_save_context): must not switch contexts duringnobu2005-07-052-2/+7
| | | | | | | re-allocating stack. fixed: [ruby-core:05219] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8726 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * array.c (sort_2): get rid of yet another bcc's bug.nobu2005-07-052-7/+12
| | | | | | | fixed: [ruby-core:05152] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8725 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/tk/tkutil/tkutil.c: fix typo.nagai2005-07-052-2/+6
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8724 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/tk/tcltklib.c: bug fix on treating Unicode strings.nagai2005-07-0513-94/+375
| | | | | | | | | | | | | | | | | | | | | | | | | | * ext/tk/tcltklib.c: add methods to treat encoding mode. * ext/tk/MANUAL_tcltklib.eng: add description of TclTkLib#encoding, encoding_system, and so on. * ext/tk/MANUAL_tcltklib.eucj: ditto. * ext/tk/tkutil/tkutil.c: fail to create a Tcl's list string from an array including multiple kind of encoded strings. * ext/tk/lib/tk.rb: ditto. * ext/tk/lib/multi-tk.rb: 2nd arg of _{to|from}UTF8 is omissible. * ext/tk/lib/remote-tk.rb: ditto. * ext/tk/lib/tk.rb: override TclTkLib#encoding and encoding= to use TkCore::INTERP.encoding and encoding=. * ext/tk/lib/tk.rb: when "require 'tk'" and $KCODE=='NONE', check DEFAULT_TK_ENCODING to decide Ruby/Tk's system encoding mode. * ext/tk/lib/tk/encodedstr.rb: check both of Tk.encoding and Tk.encoding_system. Tk.encoding has higher priority. * ext/tk/lib/tk/optiondb.rb: ditto. * ext/tk/lib/tk/spinbox.rb: ditto. * ext/tk/lib/tk/validation.rb: ditto. * ext/tk/lib/tk/namespace.rb: arguemnts for TclTkIp#_merge_tklist should be UTF-8 strings. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8722 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2005-07-05nagai2005-07-051-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8721 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/set.rb: test change to follow revision 1.28. (duck typing?)ocean2005-07-042-2/+6
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8719 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/{dbm,gdbm,sdbm}/test_{dbm,gdbm,sdbm}.rb: skip some testsusa2005-07-044-1/+38
| | | | | | | which using fork on fork-less platforms. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8717 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2005-07-04eban2005-07-031-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8714 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* testeban2005-07-030-0/+0
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8713 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* testeban2005-07-030-0/+0
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8712 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* cosmetic.nahi2005-07-031-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8711 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/wsdl/document/test_rpc.rb: compare formatted time string ofnahi2005-07-032-2/+11
| | | | | | | | Time objects instead of comparing Time objects itself to avoid unintended conflict of usec part. [ruby-dev:26220] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8710 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* avoid some race conditionakr2005-07-031-1/+6
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8709 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* 2005-07-03akr2005-07-031-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8708 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* doc fix.akr2005-07-021-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8705 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* use CMSG_LEN.akr2005-07-021-2/+2
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8704 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/socket/socket.c (unix_send_io, unix_recv_io): support x86-64 andakr2005-07-023-25/+48
| | | | | | | IA64. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8702 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * 2005-07-02eban2005-07-021-3/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8698 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* fix indent.akr2005-07-021-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8697 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * defines.h (FLUSH_REGISTER_WINDOWS): defined for IA64.akr2005-07-024-3/+27
| | | | | | | | | | | (flush_register_windows): declare flush_register_windows. * eval.c (flush_register_windows): new function. * ruby.h (NOINLINE): move up to be effective in defines.h. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8696 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * configure.in: check select_large_fdset.akr2005-07-023-1/+18
| | | | | | | | * eval.c: use select_large_fdset to support large file descriptors on Solaris. [ruby-dev:26404] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8695 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * bignum.c (rb_big_neg): may be accessing bogus pointer value.matz2005-07-013-9/+11
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8694 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ChangeLog: typo.usa2005-07-011-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8691 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * missing/erf.c: need to include some headers for some platforms.usa2005-07-013-0/+17
| | | | | | | | * win32/win32.c (copysign, scalb): define for compatibility with other platforms. [ruby-dev:26430] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8690 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * missing/crypt.c: modified to make it compilable on platformsmatz2005-07-013-2/+122
| | | | | | | | | other than BSD. [ruby-dev:26430] * missing/erf.c: ditto. code from <exp.c> merged. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8689 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/open-uri.rb (OpenURI.open_http): refine post_connection_checkakr2005-07-012-3/+13
| | | | | | | call. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8688 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * missing/crypt.c: replaced with 4.4BSD version.matz2005-07-014-317/+1309
| | | | | | | | | | * missing/erf.c: ditto. * missing/vsnprintf.c: removed the third provision from the old BSD license. [ruby-core:05177] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8687 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * 2005-07-01eban2005-06-301-4/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8686 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * enum.c (enum_min, enum_max): must not return Qundef.nobu2005-06-302-0/+7
| | | | | | | fixed: [ruby-core:05299] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8685 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/delegate.rb (Delegator::respond_to): respond_to? must checkmatz2005-06-302-0/+14
| | | | | | | destination object. [ruby-talk:146894] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8684 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * signal.c (trap): non-string trap hander was ignored.nobu2005-06-302-1/+9
| | | | | | | fixed: [ruby-dev:26417] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8682 b2dd03c8-39d4-4d8f-98ff-823fe69b080e