summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* * lib/optparse.rb (OptionParser::Completion::complete): allow leastnobu2003-11-171-0/+5
| | | | | | | common completion for three or more candidates. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4972 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/test/unit/autorunner.rb (keyword_display): sort keywords.nobu2003-11-171-1/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4971 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/test/unit/ui/tk/testrunner.rb,nobu2003-11-171-0/+8
| | | | | | | | | | lib/test/unit/ui/gtk/testrunner.rb: run GUI main loop in sub thread. * lib/test/unit/ui/gtk2/testrunner.rb: imported from rough. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4970 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_eval): iterator should return value from next insidenobu2003-11-161-3/+8
| | | | | | | begin/rescue/end. (ruby-bugs:PR#1218) git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4969 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (eval): prepend error position in evaluating string tomatz2003-11-161-0/+6
| | | | | | | | "mesg" attribute string only when it's available and is a string. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4967 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/net/protocol.rb: logging response body. [experimental] [ruby-list:38800]aamine2003-11-161-0/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4966 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/thread.rb (Thread.exclusive): wrap method definition ingsinclair2003-11-161-0/+5
| | | | | | | class Thread to enable rdoc to process. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4965 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/net/http.rb (set_debug_output): warn if method is called after #start. ↵aamine2003-11-161-0/+5
| | | | | | [ruby-dev:38798] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4963 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (eval): do not re-raise exception to avoid unnecessarymatz2003-11-151-0/+9
| | | | | | | | | | | exception copying, instead modify exception and internal information to adjust eval(). * eval.c (backtrace): can return the current frame information only if lev < -1. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4962 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * /ext/openssl/ossl_x509ext.c (ossl_x509extfactory_create_ext):gotoyuzo2003-11-151-0/+5
| | | | | | | refine error message. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4961 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/open-uri.rb (OpenURI.open_loop, OpenURI::HTTP#proxy_open):akr2003-11-151-0/+6
| | | | | | | | refactored to support options. (Buffer): maintain size by this class. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4959 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_method_node): new API to retrieve method body.matz2003-11-141-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4957 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/tcltklib/tcltklib.c: fix (en-bugged at 2003/11/07)nagai2003-11-141-0/+7
| | | | | | | * ext/tk/lib/tkdialog.rb: TkDialog.new accepts the parent widget [ruby-talk:85066] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4955 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* inconsistency of the arguments for respond_to? in previous change is fixed.akr2003-11-131-1/+1
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4954 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/open-uri.rb (Kernel[#.]open): hard coded URI schemes removed.akr2003-11-131-0/+6
| | | | | | | [ruby-ext:02251] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4952 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/test/unit/ui/tk/testrunner.rb: use grid and panedwindow (if available)nagai2003-11-131-0/+5
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4951 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/open-uri.rb (OpenURI.open_uri): use File::RDONLY.akr2003-11-131-0/+5
| | | | | | | reported by Take_tk <ggb03124@nifty.ne.jp>. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4950 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/openssl/ossl_x509req.c (ossl_x509req_to_der): add function forgotoyuzo2003-11-131-0/+5
| | | | | | | X509::Request#to_der. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4949 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/optparse.rb (OptionParser::Completion#complete): prior shorternobu2003-11-131-0/+5
| | | | | | | name to containing longer name. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4947 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/tk/lib/tk.rb,multi-tk.rb: stop freezing some classesnagai2003-11-121-0/+6
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4946 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/test/unit/assertions.rb (assert_throws, assert_nothing_thrown):nobu2003-11-121-4/+12
| | | | | | | | | | uncaught throw in sub thread raises ThreadError. * lib/test/unit/ui/tk/testrunner.rb (setup_ui): "expand" is not necessary. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4945 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/monitor/test_monitor.rb: fix the timing problem by Queue.shugo2003-11-121-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4944 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/monitor/test_monitor.rb: added.shugo2003-11-121-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4943 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/monitor.rb: refactored. Thanks, Gennady Bystritsky.shugo2003-11-121-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4941 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/openssl/ossl.c (ossl_x509_sk2ary, ossl_x509crl_sk2ary): addgotoyuzo2003-11-111-1/+13
| | | | | | | | | | | | | | functions to convert STACK into Array. * ext/openssl/ossl.h: add prototypes. * ext/openssl/ossl_pkcs7.c (ossl_pkcs7_set_certificates, ossl_pkcs7_get_certificates, ossl_pkcs7_get_crls, ossl_pkcs7_set_crls): add functions for PKCS7#certificates= PKCS7#certificates, PKCS7#crls= and PKCS7#crls. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4940 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/test/unit/ui/testrunnermediator.rb: should require 'test/unit'.ntalbott2003-11-111-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4939 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/test/unit/ui/gtk/testrunner.rb: added a rescue clause to handlentalbott2003-11-111-0/+5
| | | | | | | the case when the requested font is not available. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4938 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * io.c (appendline): file may not end with newline. a bug ifmatz2003-11-111-0/+5
| | | | | | | READ_DATA_PENDING_PTR is defined. [ruby-talk:84925] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4937 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/tk/lib/tk.rb: raise an exception when creating TkWindownagai2003-11-111-0/+5
| | | | | | | object, because TkWindow class is an abstract class. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4934 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/ext/openssl/ossl_conf.c (ossl_config_get_value): return nilgotoyuzo2003-11-101-0/+8
| | | | | | | | | | if the specified value doesn't exist. * lib/ext/openssl/ossl_conf.c (ossl_config_get_section): return a empty hash if the specified section doesn't exist. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4933 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/monitor.rb (wait): return true on signal/broadcastfalse andshugo2003-11-101-0/+5
| | | | | | | false on timeout. Thanks Gennady Bystritsky. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4932 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * parse.y (primary): primary_value may be 0 when syntax error.nobu2003-11-091-3/+8
| | | | | | | [ruby-talk:84893] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4930 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/test/unit/assertions.rb: un-deprecated #assert_not_nil tontalbott2003-11-081-0/+8
| | | | | | | | | | maintain symmetry with #assert_nil. Also added better output for #assert_kind_of. * test/testunit/tc_assertions.rb: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4929 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * test/wsdl/raa/*: add new testcase for WSDL loading, parsing and reading.nahi2003-11-081-0/+19
| | | | | | | | | | | | | | | | * test/soap/marshal/*: backport from soap4r/1.5.1. all differences are for ruby/1.6. * lib/soap/*: backport from soap4r/1.5.1. all differences are for ruby/1.6. * lib/wsdl/data.rb, lib/wsdl/xmlSchema/data.rb: move definition of ArrayTypeAttrName from ::WSDL::XMLSchema::* to ::WSDL::*. [ruby-talk:84813] * lib/wsdl/soap/definitions.rb: element name typo in custom exception struct definition which is needed for wsdlDriver; camelCase -> underscore_name. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4925 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * configure.in: improvement of pthread checknagai2003-11-081-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4923 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* Add DL.win32_last_error and DL.last_error.ttate2003-11-081-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4922 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/tcltklib/tcltklib.c: To fix 'pthread-enabled Tcl/Tk' problem,nagai2003-11-071-0/+8
| | | | | | | | TclTkIp#_eval calls Tcl_Eval() on the mainloop thread only (queueing a handler to the EventQueue). git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4921 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* (Pathname#parent): if self is `.', return `..'.akr2003-11-071-1/+7
| | | | | | | | | | | (Pathname#children): if self is `.', don't prepend self for a pathname in a result. (Pathname#join): re-implemented using Pathname#+. (Pathname#find): if self is `.', remove `./' prefix of yielding pathname. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4920 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* lib/pathname.rb (Pathname#+): if self or the argument is `.', return another.akr2003-11-071-2/+3
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4918 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/pathname.rb (Pathname#+): return the argument if self is `.'.akr2003-11-071-0/+4
| | | | git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4917 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/socket/socket.c (make_hostent): get rid of SEGV on aliasesnobu2003-11-071-1/+6
| | | | | | | lookup failure. (ruby-bugs:PR#1215) git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4915 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/zlib/zlib.c (Init_zlib): define Zlib::GzipReader#each_line as an alias ↵katsu2003-11-061-0/+5
| | | | | | of Zlib::GzipReader#each. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4914 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_load): save and restore rb_prohibit_interrupt.matz2003-11-061-0/+5
| | | | | | | [ruby-dev:21857] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4913 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * io.c (rb_io_inspect): show the path also at a closed file.nobu2003-11-061-0/+5
| | | | | | | [ruby-dev:21851] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4911 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * eval.c (rb_load): allow interrupt during loaded programmatz2003-11-061-0/+12
| | | | | | | | | | | | | | evaluation. [ruby-dev:21834] * hash.c (rb_hash_fetch): always warn if default argument and a block are supplied at the same time. [ruby-dev:21842] * hash.c (env_fetch): ditto. * array.c (rb_ary_fetch): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4910 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * win32/win32.c (make_cmdvector): process backslashes even if a quotenobu2003-11-061-1/+4
| | | | | | | is not enclosed. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4909 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * lib/optparse.rb (OptionParser::Completion#complete): default not tonobu2003-11-061-1/+4
| | | | | | | ignore case on completion. [ruby-talk:84726] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * ext/stringio/stringio.c (strio_set_string, strio_reopen): checknobu2003-11-061-3/+16
| | | | | | | | | | | | | | | tainted. * ext/stringio/stringio.c (strio_copy, strio_ungetc, strio_write, strio_putc): add infection. * ext/stringio/stringio.c (strio_path): just nil. [ruby-dev:21846] * ruby.c (proc_options): reserve searched script path in the source file name table. [ruby-list:38765] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4906 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* * sample/openssl/gen_csr.rb: there (at least) is a CA which does not accept DNnahi2003-11-051-0/+5
| | | | | | | in UTF8STRING format. it's a sample. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4905 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
* configure.in, eval.c, signal.c: : add '--with-pthread-ext' optionnagai2003-11-051-0/+13
| | | | | | | | | | | to fix the pthread trouble on 'tcltklib' ext/tcltklib/README.1st: add the description of '--with-pthread-ext' ext/tk/lib/tktext.rb : add TkText#text_copy, text_cut, text_paste to support Tcl/Tk8.4's tk_textCopy, tk_textCut, tk_textPaste ext/tk/lib/tk.rb : add TkMenu#set_focus support Tcl/Tk's tk_menuSetFocus git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4904 b2dd03c8-39d4-4d8f-98ff-823fe69b080e