2003-09-15 14:07:42 +04:00
|
|
|
Mon Sep 15 19:02:52 2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
|
|
|
|
|
|
|
|
* lib/csv.rb: add extra pamameter to specify row(record) separater
|
|
|
|
character. To parse Mac's CR separated CSV, do like this.
|
|
|
|
CSV.open("mac.csv", "r", ?,, ?\r) { |row| p row.to_a }
|
|
|
|
The 3rd parameter in this example ?, is for column separater and the
|
|
|
|
4th ?\r is for row separater. Row separater is nil by default. Nil
|
|
|
|
separater means "\r\n" or "\n".
|
|
|
|
|
|
|
|
* test/csv/test_csv.rb: add tests for above feature.
|
|
|
|
|
|
|
|
* test/csv/mac.csv: added. Sample CR separated CSV file.
|
|
|
|
|
2003-09-12 17:46:48 +04:00
|
|
|
Fri Sep 12 22:41:48 2003 Michal Rokos <m.rokos@sh.cvut.cz>
|
|
|
|
|
|
|
|
* ext/openssl/ossl.c: move ASN.1 stuff to ossl_asn1.[ch]
|
|
|
|
|
|
|
|
* ext/openssl/ossl.c: move BIO stuff to ossl_bio.[ch]
|
|
|
|
|
|
|
|
* ext/openssl/ossl_asn1.[ch]: new files
|
|
|
|
|
|
|
|
* ext/openssl/ossl_bio.[ch]: new files
|
|
|
|
|
2003-09-12 07:30:45 +04:00
|
|
|
Fri Sep 12 12:30:41 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
|
|
|
|
* intern.h (rb_disable_super, rb_enable_super): replace with dummy
|
|
|
|
expressions instead of prototypes. the functions remain yet for
|
|
|
|
binary compatibility. [ruby-talk:81758]
|
|
|
|
|
2003-09-12 07:16:31 +04:00
|
|
|
Fri Sep 12 12:09:54 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|
|
|
|
|
|
|
* bignum.c (rb_big_and): convert argument using 'to_int'.
|
|
|
|
|
|
|
|
* bignum.c (rb_big_or): ditto.
|
|
|
|
|
|
|
|
* bignum.c (rb_big_xor): ditto.
|
|
|
|
|
2003-09-12 02:13:50 +04:00
|
|
|
Fri Sep 11 22:06:14 2003 David Black <dblack@superlink.net>
|
|
|
|
|
2003-09-12 02:15:58 +04:00
|
|
|
* lib/scanf.rb: Took out useless @matched_item variable; some small
|
|
|
|
refactoring.
|
2003-09-12 02:13:50 +04:00
|
|
|
|
2003-09-12 07:16:31 +04:00
|
|
|
Thu Sep 11 08:43:44 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|
|
|
|
|
|
|
* eval.c (rb_f_require): allow "require" on $SAFE>0, if feature
|
|
|
|
name is not tainted.
|
|
|
|
|
2003-09-12 07:30:45 +04:00
|
|
|
* lib/rexml/parsers/baseparser.rb (REXML::Parsers::BaseParser::stream):
|
2003-09-12 07:16:31 +04:00
|
|
|
Supports StringIO.
|
|
|
|
|
2003-09-10 17:58:31 +04:00
|
|
|
Wed Sep 10 22:47:30 2003 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
|
|
|
|
|
|
|
* ext/openssl/ossl.h: define OSSL_NO_CONF_API for win32 platform.
|
|
|
|
libeay32.dll doesn't export functions defined in conf_api.h.
|
|
|
|
this workaround is to avoid link error.
|
|
|
|
|
|
|
|
* ext/openssl/ossl_config.c (ossl_config_initialize): ditto.
|
|
|
|
|
|
|
|
* ext/openssl/ossl_config.c (ossl_config_add_value): ditto.
|
|
|
|
|
2003-09-12 07:30:45 +04:00
|
|
|
* ext/openssl/ossl_config.c (set_conf_section_i): should check
|
2003-09-10 17:58:31 +04:00
|
|
|
if the argument is Array.
|
|
|
|
|
2003-09-10 17:43:27 +04:00
|
|
|
Wed Sep 10 22:41:54 2003 Tietew <tietew@tietew.net>
|
|
|
|
|
|
|
|
* eval.c (win32_get_exception_list): avoid VC7 warning.
|
|
|
|
[ruby-win32:577]
|
|
|
|
|
2003-09-09 05:39:58 +04:00
|
|
|
Tue Sep 9 10:39:51 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
|
|
|
|
* eval.c (struct tag): dst should be VALUE.
|
|
|
|
|
|
|
|
Tue Sep 9 10:39:51 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
|
|
|
|
* eval.c (localjump_destination): stop at the scope where the current
|
|
|
|
block was created. [ruby-dev:21353]
|
|
|
|
|
2003-09-09 00:19:01 +04:00
|
|
|
Tue Sep 9 05:17:04 2003 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
|
|
|
|
|
|
|
* ext/openssl/ossl_config.rb: avoid compile error in OpenSSL-0.9.6.
|
|
|
|
|
2003-09-12 17:46:48 +04:00
|
|
|
Tue Sep 9 02:41:35 2003 Michal Rokos <m.rokos@sh.cvut.cz>
|
|
|
|
|
|
|
|
* ext/openssl/ossl_config.c: Refine compatibility.
|
|
|
|
|
2003-09-08 20:57:25 +04:00
|
|
|
Tue Sep 9 01:50:45 2003 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
|
|
|
|
|
|
|
* lib/webrick/httpserver.rb (HTTPServer#access_log): add "\n" to
|
|
|
|
the message.
|
|
|
|
|
2003-09-09 05:39:58 +04:00
|
|
|
* lib/webrick/log.rb (BasicLog#log): add "\n" only if needed.
|
2003-09-08 20:57:25 +04:00
|
|
|
|
2003-09-09 05:44:16 +04:00
|
|
|
Mon Sep 8 22:15:33 2003 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
2003-09-08 17:16:57 +04:00
|
|
|
|
2003-09-09 05:39:58 +04:00
|
|
|
* ext/tk/lib/multi-tk.rb: modify security check at creating
|
2003-09-08 17:21:16 +04:00
|
|
|
a new interpreter
|
2003-09-08 17:16:57 +04:00
|
|
|
|
2003-09-08 15:00:17 +04:00
|
|
|
Mon Sep 8 20:00:12 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
|
|
|
|
* lib/optparse.rb, lib/optparse/version.rb: search also all
|
|
|
|
capital versions.
|
|
|
|
|
2003-09-08 14:28:46 +04:00
|
|
|
Mon Sep 8 19:26:33 2003 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
|
|
|
|
|
|
|
* ext/openssl/ossl.h: include openssl/conf.h and openssl/conf_api.h.
|
|
|
|
|
|
|
|
* ext/openssl/ossl_config.c: refine all with backward compatibility.
|
|
|
|
|
|
|
|
* ext/openssl/ossl_config.h: export GetConfigPtr() and DupConfigPtr().
|
|
|
|
|
2003-09-08 14:31:38 +04:00
|
|
|
* ext/openssl/ossl_x509.c: added new constants under X509 module.
|
|
|
|
DEFAULT_CERT_AREA, DEFAULT_CERT_DIR, DEFAULT_CERT_FILE,
|
|
|
|
DEFAULT_CERT_DIR_ENV, DEFAULT_CERT_FILE_ENV and DEFAULT_PRIVATE_DIR.
|
2003-09-08 14:28:46 +04:00
|
|
|
|
|
|
|
* ext/openssl/ossl_x509ext.c (ossl_x509extfactory_free): don't free
|
|
|
|
the members of the struct. it's left to GC.
|
|
|
|
|
|
|
|
* ext/openssl/ossl_x509ext.c (ossl_x509_set_config): add for config=.
|
|
|
|
|
2003-09-08 15:00:17 +04:00
|
|
|
* ext/openssl/ossl_x509ext.c (Xossl_x509extfactory_initialize):
|
2003-09-08 14:28:46 +04:00
|
|
|
add attr readers: issuer_certificate, subject_certificate,
|
|
|
|
subject_request, crl and config.
|
|
|
|
|
2003-09-08 13:52:34 +04:00
|
|
|
Mon Sep 8 18:26:41 2003 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
|
|
|
|
|
|
|
* lib/webrick/accesslog.rb (AccessLog::setup_params): use req.port
|
|
|
|
instead of config[:Port] or req.request_uri.port.
|
|
|
|
|
|
|
|
* lib/webrick/httprequest.rb (HTTPRequest#meta_vars): ditto.
|
|
|
|
|
|
|
|
* lib/webrick/httpservlet/filehandler.rb (FileHandler#dir_list): ditto.
|
|
|
|
|
2003-09-08 15:00:17 +04:00
|
|
|
* lib/webrick/config.rb: :Listen option never be used.
|
2003-09-08 13:52:34 +04:00
|
|
|
|
|
|
|
* lib/webrick/server.rb (GenericServer#initialize): don't use :Listen
|
|
|
|
option and add warning message.
|
|
|
|
|
|
|
|
* lib/webrick/log.rb (BasicLog#<<): shortcut of log(INFO, ...).
|
|
|
|
|
|
|
|
* lib/webrick/httpserver.rb (HTTPServer#accesslog): use << for logging.
|
|
|
|
|
2003-09-09 05:44:16 +04:00
|
|
|
Sun Sep 7 16:08:28 2003 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
2003-09-07 11:10:44 +04:00
|
|
|
|
|
|
|
* ext/tcltklib/tcltklib.c (lib_mainloop_core): fixed signal-trap bug
|
|
|
|
|
|
|
|
* ext/tk/lib/*.rb : Ruby/Tk works at $SAFE == 4
|
|
|
|
|
2003-09-06 21:27:58 +04:00
|
|
|
Fri Sep 6 02:26:34 2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
|
|
|
|
|
|
|
|
* test/ruby/test_*.rb: assert_same, assert_match, and so on.
|
|
|
|
|
2003-09-06 20:18:02 +04:00
|
|
|
Sat Sep 6 18:45:46 2003 Mauricio Fernandez <batsman.geo@yahoo.com>
|
|
|
|
|
|
|
|
* parse.y (assignable): call rb_compile_error(), not rb_bug().
|
|
|
|
[ruby-core:01523]
|
|
|
|
|
2003-09-06 12:56:09 +04:00
|
|
|
Sat Sep 6 17:40:41 2003 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
|
|
|
|
2003-09-08 15:00:17 +04:00
|
|
|
* ext/openssl/ruby_missing.c: rid of unnecessary backward
|
2003-09-06 12:56:09 +04:00
|
|
|
compatibility stuff. and remove DEFINE_ALLOC_WRAPPER from
|
|
|
|
all sources.
|
|
|
|
|
|
|
|
* ext/openssl/ossl_x509ext.c (X509::Extension.new): new method.
|
|
|
|
|
|
|
|
* ext/openssl/ossl_x509ext.c (X509::Extension#oid=): new method.
|
|
|
|
|
|
|
|
* ext/openssl/ossl_x509ext.c (X509::Extension#value=): new method.
|
|
|
|
|
|
|
|
* ext/openssl/ossl_x509ext.c (X509::Extension#critical=): new method.
|
|
|
|
|
2003-09-05 20:25:55 +04:00
|
|
|
Sat Sep 6 01:23:22 2003 NAKAMURA Usaku <usa@ruby-lang.org>
|
|
|
|
|
|
|
|
* win32/win32.c (CreateChild): need to quote cmd if RUBYSHELL is set.
|
|
|
|
|
|
|
|
* win32/win32.c (CreateChild): fix condition about whether to call
|
|
|
|
shell or not.
|
|
|
|
|
2003-09-05 19:36:21 +04:00
|
|
|
Sat Sep 6 00:36:20 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net>
|
2003-09-05 19:21:59 +04:00
|
|
|
|
|
|
|
* Makefile.in (test): phony target.
|
2003-09-05 19:15:43 +04:00
|
|
|
|
2003-09-05 19:36:21 +04:00
|
|
|
* lib/mkmf.rb (have_library, find_library): configure by library
|
|
|
|
name.
|
|
|
|
|
2003-09-05 19:15:43 +04:00
|
|
|
* lib/optparse.rb (OptionParser#order, #permute, #parse): allow an
|
|
|
|
array as argument.
|
|
|
|
|
|
|
|
* test/ruby/test_*.rb: moved invariants to left side in
|
|
|
|
assert_equal, and use assert_nil, assert_raises and so on.
|
|
|
|
|
2003-09-05 19:00:33 +04:00
|
|
|
* win32/win32.c (isInternalCmd): distinguish command.com and
|
|
|
|
cmd.exe.
|
|
|
|
|
|
|
|
* win32/win32.c (make_cmdvector): a character just after wildcard
|
|
|
|
was ignored. [ruby-core:01518]
|
|
|
|
|
2003-09-05 15:28:27 +04:00
|
|
|
Fri Sep 5 20:27:08 2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
|
|
|
|
|
|
|
|
* test/ruby/test_*.rb: replace 'assert(a == b)' with assert_equal(a, b)'
|
|
|
|
|
2003-09-05 13:08:40 +04:00
|
|
|
Fri Sep 5 18:00:51 2003 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
|
|
|
|
|
|
|
* ext/openssl/lib/openssl/x509.rb: new method X509::Name::parse.
|
|
|
|
|
|
|
|
* ext/openssl/ossl_digest.c: add ossl_digest_new().
|
|
|
|
|
|
|
|
* ext/openssl/ossl_digest.h: ditto.
|
|
|
|
|
|
|
|
* ext/openssl/ossl_cipher.c: add ossl_cipher_new().
|
|
|
|
|
|
|
|
* ext/openssl/ossl_cipher.h: ditto.
|
|
|
|
|
2003-09-05 10:32:07 +04:00
|
|
|
Fri Sep 5 15:32:04 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
|
|
|
|
* misc/ruby-mode.el (ruby-font-lock-maybe-here-docs): should not
|
|
|
|
search delimiter forward if found in backward.
|
|
|
|
|
2003-09-05 08:32:51 +04:00
|
|
|
Fri Sep 5 13:32:48 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
|
|
|
|
* test/runner.rb: arguments should be keys.
|
|
|
|
|
2003-09-05 07:12:29 +04:00
|
|
|
Fri Sep 5 12:09:55 2003 WATANABE Hirofumi <eban@ruby-lang.org>
|
|
|
|
|
|
|
|
* test/ruby/test_system.rb (test_system): check existence of ruby
|
|
|
|
interpreter.
|
|
|
|
|
2003-09-05 06:32:24 +04:00
|
|
|
Fri Sep 5 11:32:17 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
|
|
|
|
* lib/optparse.rb (--version): fix assignment/reference order.
|
|
|
|
|
|
|
|
* lib/optparse.rb (OptionParser#help): new; OptionParser#to_s may
|
|
|
|
be deprecated in future.
|
|
|
|
|
|
|
|
* lib/optparse/version.rb (OptionParser#show_version): hide Object.
|
|
|
|
|
|
|
|
* test/runner.rb: fix optparse usage.
|
|
|
|
|
|
|
|
* test/runner.rb: glob all testsuits if no tests given.
|
|
|
|
|
2003-09-05 05:47:41 +04:00
|
|
|
Fri Sep 5 10:42:58 2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
|
|
|
|
|
|
|
|
* test/runner.rb: added. gets testcases from command line and runs it.
|
|
|
|
|
|
|
|
* test/ruby/test_gc.rb: remove useless part which was for dumping test
|
|
|
|
result.
|
|
|
|
|
2003-09-05 04:36:47 +04:00
|
|
|
Fri Sep 5 09:28:59 2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
|
|
|
|
|
|
|
|
* test/ruby/test_gc.rb: added. splitter.rb which I made to split
|
|
|
|
sample/test.rb into test/ruby/test_* kindly removed GC test (the
|
|
|
|
last section in the original test) to reduce things to be worried.
|
|
|
|
|
2003-09-04 22:00:09 +04:00
|
|
|
Fri Sep 5 03:00:04 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
|
|
|
|
* test/ruby/test_iterator.rb (test_block_in_arg): add no block
|
|
|
|
given tests.
|
|
|
|
|
|
|
|
* test/ruby/test_iterator.rb (test_ljump): uncomment LocalJumpError
|
|
|
|
test.
|
|
|
|
|
2003-09-04 20:18:59 +04:00
|
|
|
Wed Sep 5 01:10:11 2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
|
|
|
|
|
|
|
|
* test/ruby: tests for ruby itself.
|
|
|
|
|
|
|
|
* test/ruby/test_*.rb: split sample/test.rb into 28 test/unit testcases.
|
|
|
|
some tests could not be translates... search '!!' mark to see it.
|
|
|
|
|
|
|
|
* test/csv/test_csv.rb: should require 'csv', not '../lib/csv'. test
|
|
|
|
runner should set load path correctly.
|
|
|
|
|
2003-09-04 20:06:41 +04:00
|
|
|
Wed Sep 5 01:03:59 2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
|
|
|
|
|
|
|
|
* test/csv/test_csv.rb: close opened files for CSV::IOBuf explicitly.
|
|
|
|
opened file cannot be removed under win32 box.
|
|
|
|
|
2003-09-04 18:59:43 +04:00
|
|
|
Thu Sep 4 23:59:40 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
|
|
|
|
* parse.y (tokadd_string): newlines have no special meanings in
|
|
|
|
%w/%W, otherwise they are ignored only when interpolation is
|
|
|
|
enabled. [ruby-dev:21325]
|
|
|
|
|
2003-09-04 14:39:29 +04:00
|
|
|
Wed Sep 4 19:38:25 2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
|
|
|
|
|
|
|
|
* ext/io/wait/.cvsignore: added.
|
|
|
|
|
|
|
|
* ext/openssl/.cvsignore: added.
|
|
|
|
|
2003-09-04 14:31:29 +04:00
|
|
|
Wed Sep 4 19:28:24 2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
|
|
|
|
|
|
|
|
* sample/openssl: added. Sample of standard distribution library
|
|
|
|
should be locate in sample/{module_name}/*.
|
|
|
|
|
|
|
|
* ext/openssl/sample/*: removed. move to sample/openssl/*.
|
|
|
|
|
2003-09-04 13:08:30 +04:00
|
|
|
Wed Sep 4 18:02:15 2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
|
|
|
|
|
|
|
|
* test/csv/test_csv.rb: use remove_const to reduce warnings. use
|
|
|
|
Dir.tmpdir to locate working files.
|
|
|
|
|
2003-09-04 12:41:34 +04:00
|
|
|
Thu Sep 4 17:41:31 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
|
|
|
|
* misc/ruby-mode.el (ruby-here-doc-beg-re): underscore also is
|
|
|
|
valid delimiter.
|
|
|
|
|
|
|
|
* misc/ruby-mode.el (ruby-here-doc-end-match): must quote
|
|
|
|
arbitrary string to use as regexp.
|
|
|
|
|
|
|
|
* misc/ruby-mode.el (ruby-font-lock-maybe-here-docs): must not
|
|
|
|
call `ruby-here-doc-end-match' unless `ruby-here-doc-beg-re'
|
|
|
|
matched.
|
|
|
|
|
2003-09-04 10:41:00 +04:00
|
|
|
Wed Sep 4 15:40:07 2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
|
|
|
|
|
|
|
|
* test/csv/test_csv.rb: run on test/unit original layer.
|
|
|
|
|
2003-09-03 22:58:27 +04:00
|
|
|
Thu Sep 4 12:54:50 2003 why the lucky stiff <ruby-cvs@whytheluckystiff.net>
|
|
|
|
|
|
|
|
* ext/syck/token.c: headerless documents with root-level spacing now
|
|
|
|
honored.
|
|
|
|
|
2003-09-05 09:07:54 +04:00
|
|
|
Thu Sep 4 00:06:14 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|
|
|
|
|
|
|
* eval.c (mark_frame_adj): need to adjust argv pointer if using
|
|
|
|
system's alloca. [ruby-core:01503]
|
|
|
|
|
2003-09-03 16:45:36 +04:00
|
|
|
Wed Sep 3 21:33:20 2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
|
2003-09-04 10:41:00 +04:00
|
|
|
|
2003-09-03 16:45:36 +04:00
|
|
|
* test: add test directory. Test::Unit aware testcases and needed
|
|
|
|
files should be located in this directory. dir/file name convention;
|
|
|
|
test/{module_name}/test_{testcase_name}.rb
|
|
|
|
test/{module_name}/{needed_files}
|
|
|
|
someday, someone will write testrunner which searches test_*.rb and
|
|
|
|
run testcases automatically.
|
2003-09-04 10:41:00 +04:00
|
|
|
|
2003-09-03 16:45:36 +04:00
|
|
|
* test/csv/*: add testcase for lib/csv.rb.
|
|
|
|
|
2003-09-05 09:07:54 +04:00
|
|
|
Wed Sep 3 01:37:09 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|
|
|
|
|
|
|
* io.c (rb_f_gets): should call next_argv() before type check
|
|
|
|
current_file. [ruby-list:38336]
|
|
|
|
|
2003-09-02 15:41:33 +04:00
|
|
|
Tue Sep 2 20:37:15 2003 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
|
|
|
|
|
|
|
* ext/openssl/lib/net/protocols.rb (SSLIO#ssl_connect): warning
|
|
|
|
for skipping server verification.
|
|
|
|
|
2003-09-05 09:07:54 +04:00
|
|
|
Tue Sep 2 23:36:57 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|
|
|
|
|
|
|
* eval.c (proc_invoke): should retrieve retval when pcall is true.
|
|
|
|
|
2003-09-02 09:12:39 +04:00
|
|
|
Tue Sep 2 14:09:20 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|
|
|
|
|
|
|
* ext/socket/extconf.rb: check s6_addr8 in in6_addr (Tru64 UNIX).
|
|
|
|
the patch is submitted by nmu <nmu@users.sourceforge.jp>.
|
|
|
|
|
|
|
|
* ext/socket/getaddrinfo.c (getaddrinfo): should use in6_addr8 on
|
|
|
|
some platforms.
|
|
|
|
|
|
|
|
* ext/socket/getnameinfo.c (getnameinfo): ditto.
|
|
|
|
|
2003-09-09 05:44:16 +04:00
|
|
|
Tue Sep 2 14:02:19 2003 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
2003-09-02 09:04:30 +04:00
|
|
|
|
|
|
|
* ext/tcltklib/tcltklib.c (ip_invoke): fixed bug on passing a exception
|
|
|
|
|
2003-09-04 12:41:34 +04:00
|
|
|
* ext/tk/lib/{tk.rb, tkcanvas.rb, tkfont.rb, tktext.rb} :
|
2003-09-02 09:04:30 +04:00
|
|
|
bug fix and improvement of font control
|
|
|
|
|
2003-09-02 04:51:39 +04:00
|
|
|
Tue Sep 2 09:51:36 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
|
|
|
|
* eval.c (rb_eval): should not handle exceptions within rescue
|
|
|
|
argument. [ruby-talk:80804]
|
|
|
|
|
2003-09-01 19:44:39 +04:00
|
|
|
Tue Sep 2 00:44:37 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
|
|
|
|
* re.c (rb_memsearch): fix overrun. [ruby-talk:80759]
|
|
|
|
|
2003-09-01 19:41:31 +04:00
|
|
|
Tue Sep 2 00:41:27 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
|
|
|
|
* ext/iconv/iconv.c (map_charset): use lower case keys.
|
|
|
|
|
|
|
|
* ext/iconv/iconv.c (iconv_fail): just yield error and return the
|
|
|
|
result if a block is given.
|
|
|
|
|
|
|
|
* ext/iconv/iconv.c (iconv_convert): yield error and append the
|
|
|
|
result if a block is given.
|
|
|
|
|
|
|
|
* ext/iconv/charset_alias.rb (charset_alias): optional third
|
|
|
|
argument.
|
|
|
|
|
|
|
|
* ext/iconv/charset_alias.rb (charset_alias): use CP932 instead of
|
|
|
|
SHIFT_JIS on cygwin.
|
|
|
|
|
2003-09-01 13:34:30 +04:00
|
|
|
Mon Sep 1 18:34:25 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
|
|
|
|
* eval.c (rb_eval): make tail recursion in ELSE clause of
|
|
|
|
RESCUE a jump.
|
|
|
|
|
2003-09-01 13:02:43 +04:00
|
|
|
Mon Sep 1 18:00:02 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|
|
|
|
|
|
|
* parse.y (aref_args): forgot to call NEW_SPLAT(). reported by
|
|
|
|
Dave Butcher.
|
|
|
|
|
|
|
|
* eval.c (Init_Thread): protect thgroup_default. suggested by Guy
|
|
|
|
Decoux in [ruby-talk:80623]
|
|
|
|
|
2003-09-01 11:59:18 +04:00
|
|
|
Mon Sep 1 16:59:10 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
|
|
|
|
* eval.c (rb_thread_switch): add RESTORE_EXIT; exit by another
|
|
|
|
thread termination.
|
|
|
|
|
|
|
|
* eval.c (rb_thread_start_0): should not error_print() within
|
|
|
|
terminated thread, because $stderr used by it might be
|
|
|
|
overriden now. [ruby-dev:21280]
|
|
|
|
|
2003-08-31 17:47:48 +04:00
|
|
|
Sun Aug 31 22:46:55 2003 WATANABE Hirofumi <eban@ruby-lang.org>
|
|
|
|
|
|
|
|
* eval.c (TAG_DST()): take no argument.
|
|
|
|
|
2003-08-31 17:57:38 +04:00
|
|
|
* process.c (p_gid_sw_ensure): return VALUE.
|
|
|
|
|
2003-09-09 05:44:16 +04:00
|
|
|
Sun Aug 31 22:27:10 2003 Hidetoshi NAGAI <nagai@dumbo.ai.kyutech.ac.jp>
|
2003-08-31 17:29:54 +04:00
|
|
|
|
|
|
|
* process.c (p_gid_sw_ensure): lack of function type
|
|
|
|
|
2003-08-31 07:25:11 +04:00
|
|
|
Sun Aug 31 12:25:06 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net>
|
|
|
|
|
|
|
|
* lib/optparse.rb: --version takes an optional argument; "all" or
|
|
|
|
a list of package names.
|
|
|
|
|
2003-08-31 05:26:29 +04:00
|
|
|
Sun Aug 31 10:17:02 2003 Tadayoshi Funaba <tadf@dotrb.org>
|
|
|
|
|
|
|
|
* lib/date/format.rb: yyyy/mm is not an acceptable format.
|
|
|
|
|
|
|
|
* lib/time.rb: follow above.
|
|
|
|
|
2003-08-30 09:26:47 +04:00
|
|
|
Sat Aug 30 14:25:43 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|
|
|
|
|
|
|
* eval.c (rb_iter_break): should not call TAG_JUMP directly.
|
|
|
|
|
2003-08-30 04:04:02 +04:00
|
|
|
Sat Aug 30 03:58:21 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|
|
|
|
|
|
|
* eval.c (struct BLOCK): remove BLOCKTAG, use scope instead.
|
|
|
|
|
|
|
|
* eval.c (POP_TAG): no longer propagate retval. retval is now set
|
|
|
|
directly by localjump_destination().
|
|
|
|
|
|
|
|
* eval.c (localjump_destination): new function to cast
|
|
|
|
return/break local jump.
|
|
|
|
|
|
|
|
* eval.c (rb_yield_0): stop TAG_RETURN/TAG_BREAK escaping.
|
|
|
|
|
2003-08-29 17:37:44 +04:00
|
|
|
Fri Aug 29 22:35:00 2003 Shigeo Kobayashi <shigek@ruby-lang.org>
|
|
|
|
|
|
|
|
* bigdecimal.c *.html: The 2nd arg. for add,sub,mult, and div is 0,
|
|
|
|
then result will be the same as +,-,*,/ respectively.
|
|
|
|
|
2003-08-29 12:34:14 +04:00
|
|
|
Fri Aug 29 17:30:15 2003 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
|
|
|
|
|
|
|
* process.c: bug fix
|
|
|
|
|
|
|
|
* process.c: add rb_secure(2) to methods of Process::{UID,GID,Sys}
|
|
|
|
|
2003-09-01 11:59:18 +04:00
|
|
|
* process.c: deny handling IDs during evaluating the block given to
|
2003-08-29 12:34:14 +04:00
|
|
|
the Process::{UID,GID}.switch method
|
|
|
|
|
|
|
|
* ext/tcltklib/tcltklib.c : some methods have no effect if on slave-IP
|
|
|
|
|
|
|
|
* ext/tcltklib/tcltklib.c : can create a interpreter without Tk
|
|
|
|
|
|
|
|
* ext/tcltklib/tcltklib.c : bug fix on handling exceptions
|
|
|
|
|
|
|
|
* ext/tcltklib/MANUAL.euc : modify
|
|
|
|
|
|
|
|
* ext/tk/lib/tk.rb : freeze some core modules
|
|
|
|
|
|
|
|
* ext/tk/lib/multi-tk.rb : more secure
|
|
|
|
|
2003-09-01 11:59:18 +04:00
|
|
|
* ext/tk/lib/tk.rb: TkVariable.new(array) --> treat the array as the
|
2003-08-29 12:34:14 +04:00
|
|
|
Tk's list
|
|
|
|
|
|
|
|
* ext/tk/lib/tk.rb: improve accessibility of TkVariable object
|
|
|
|
|
2003-09-01 11:59:18 +04:00
|
|
|
* ext/tk/lib/tk.rb, ext/tk/lib/tkfont.rb, ext/tk/lib/tkcanvas.rb,
|
2003-08-29 12:34:14 +04:00
|
|
|
ext/tk/lib/tktext.rb : fix bug of font handling
|
|
|
|
|
|
|
|
* ext/tk/lib/tkfont.rb TkFont.new() accepts compound fonts
|
2003-09-01 11:59:18 +04:00
|
|
|
|
2003-08-30 04:04:02 +04:00
|
|
|
Thu Aug 28 22:07:12 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|
|
|
|
|
|
|
* variable.c (rb_autoload_load): call const_missing if autoloading
|
|
|
|
constant is not defined to allow hook.
|
|
|
|
|
|
|
|
* eval.c (rb_eval): use rb_const_get_from() instead of
|
|
|
|
rb_const_get_at().
|
|
|
|
|
|
|
|
* eval.c (is_defined): forgot to check NODE_COLON3.
|
|
|
|
|
2003-08-28 12:35:43 +04:00
|
|
|
Thu Aug 28 17:30:24 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|
|
|
|
|
|
|
* variable.c (rb_const_get_0): should check constants defined in
|
|
|
|
included modules, if klass is Object. [ruby-talk:79302]
|
|
|
|
|
|
|
|
* numeric.c (check_uint): check should be done using UINT_MAX, not
|
2003-09-02 09:12:39 +04:00
|
|
|
INT_MAX. this fix is submitted by Lyle Johnson
|
|
|
|
<lyle@knology.net> in [ruby-core:01486]
|
2003-08-28 12:35:43 +04:00
|
|
|
|
2003-08-28 00:04:23 +04:00
|
|
|
Thu Aug 28 05:02:52 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|
|
|
|
|
|
|
* parse.y (singleton): typo fixed (ruby-bugs-ja PR#562)
|
|
|
|
|
2003-08-27 23:43:50 +04:00
|
|
|
Thu Aug 28 02:37:45 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|
|
|
|
|
|
|
* eval.c (rb_eval): *a = [1,2] now assigns [[1,2]] to a.
|
|
|
|
consistent with *a = [1], which set [[1]] to a.
|
|
|
|
|
|
|
|
* node.h: merge NODE_RESTARY to NODE_SPLAT.
|
|
|
|
|
|
|
|
* parse.y: rules simplified a bit by removing NODE_RESTARY.
|
|
|
|
|
|
|
|
* sample/test.rb: updated for new assignment behavior.
|
|
|
|
|
2003-08-27 17:33:27 +04:00
|
|
|
Wed Aug 27 22:33:24 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
|
|
|
|
* error.c (rb_bug): should not use other methods; this function is
|
|
|
|
not for ordinary use. [ruby-dev:21259]
|
|
|
|
|
2003-08-27 10:08:14 +04:00
|
|
|
Wed Aug 27 15:07:57 2003 Minero Aoki <aamine@loveruby.net>
|
|
|
|
|
|
|
|
* lib/net/smtp.rb (check_response): AUTH CRAM-MD5 returns 334
|
|
|
|
response. [ruby-list:38279]
|
|
|
|
|
* win32/win32.c (map_errno): support winsock error.
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime):
pass errno to map_errno().
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
rb_w32_fclose, rb_w32_close): use map_errno().
* win32/win32.h: add winsock errors.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4447 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-08-27 00:17:18 +04:00
|
|
|
Wed Aug 27 05:10:15 2003 NAKAMURA Usaku <usa@ruby-lang.org>
|
|
|
|
|
|
|
|
* win32/win32.c (map_errno): support winsock error.
|
|
|
|
|
|
|
|
* win32/win32.c (pipe_exec, CreateChild, poll_child_status, waitpid,
|
|
|
|
kill, link, rb_w32_rename, unixtime_to_filetime, rb_w32_utime):
|
|
|
|
pass errno to map_errno().
|
|
|
|
|
|
|
|
* win32/win32.c (rb_w32_select, rb_w32_accept, rb_w32_bind,
|
|
|
|
rb_w32_connect, rb_w32_getpeername, rb_w32_getsockname,
|
|
|
|
rb_w32_getsockopt, rb_w32_ioctlsocket, rb_w32_listen, rb_w32_recv,
|
|
|
|
rb_w32_recvfrom, rb_w32_send, rb_w32_sendto, rb_w32_setsockopt,
|
|
|
|
rb_w32_shutdown, rb_w32_socket, rb_w32_gethostbyaddr,
|
|
|
|
rb_w32_gethostbyname, rb_w32_gethostname, rb_w32_getprotobyname,
|
|
|
|
rb_w32_getprotobynumber, rb_w32_getservbyname, rb_w32_getservbyport,
|
|
|
|
rb_w32_fclose, rb_w32_close): use map_errno().
|
|
|
|
|
|
|
|
* win32/win32.h: add winsock errors.
|
|
|
|
|
2003-08-26 18:54:51 +04:00
|
|
|
Tue Aug 26 23:53:23 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|
|
|
|
|
|
|
* lib/ostruct.rb (OpenStruct::method_missing): prohibit modifying
|
|
|
|
frozen OpenStruct. [ruby-talk:80214]
|
|
|
|
|
2003-08-26 15:03:53 +04:00
|
|
|
Tue Aug 26 20:03:50 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
|
|
|
|
* lib/mkmf.rb (create_tmpsrc): add the hook for source.
|
|
|
|
[ruby-list:38122]
|
|
|
|
|
2003-08-26 11:02:19 +04:00
|
|
|
Tue Aug 26 15:59:53 2003 why the lucky stiff <ruby-cvs@whytheluckystiff.net>
|
|
|
|
|
2003-08-26 15:03:53 +04:00
|
|
|
* implicit.c (syck_type_id_to_taguri): corrected detection of
|
|
|
|
x-private types.
|
2003-08-26 11:02:19 +04:00
|
|
|
|
2003-08-23 20:06:25 +04:00
|
|
|
Sun Aug 24 01:02:48 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
2003-08-23 19:44:05 +04:00
|
|
|
|
|
|
|
* file.c (file_expand_path): performance improvement.
|
|
|
|
[ruby-talk:79748]
|
|
|
|
|
2003-08-23 21:06:55 +04:00
|
|
|
Sat Aug 23 23:41:16 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|
|
|
|
|
|
|
* file.c (rb_file_s_expand_path): avoid calling rb_scan_args() for
|
|
|
|
apparent cases. [ruby-talk:79748]
|
|
|
|
|
2003-08-23 13:56:56 +04:00
|
|
|
Sat Aug 23 18:56:53 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
|
|
|
|
* ext/nkf/nkf.c (rb_nkf_putchar): should use rb_str_resize() to just
|
2003-08-23 14:13:44 +04:00
|
|
|
resize a string, rb_str_cat() disallows NULL. [ruby-dev:21237]
|
2003-08-23 13:56:56 +04:00
|
|
|
|
2003-08-23 11:51:19 +04:00
|
|
|
Sat Aug 23 16:48:41 2003 Keiju Ishitsuka <keiju@ishitsuka.com>
|
2003-08-23 13:56:56 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* lib/irb/ruby-lex.rb: bug fix for "foo" !~ /bar/. [ruby-talk:79942]
|
2003-08-23 13:56:56 +04:00
|
|
|
|
2003-08-23 11:00:02 +04:00
|
|
|
Sat Aug 23 15:59:58 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* eval.c (rb_eval, rb_iterate, block_pass): reduce PUSH/POP_TAG and
|
|
|
|
EXEC_TAG() for retry. [ruby-dev:21216]
|
2003-08-22 21:43:57 +04:00
|
|
|
|
2003-08-23 11:00:02 +04:00
|
|
|
Sat Aug 23 02:32:33 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
2003-08-22 21:43:57 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* eval.c (rb_yield_splat): should check if "values" is array.
|
2003-08-23 13:56:56 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* enum.c (each_with_index_i): typo.
|
2003-08-22 21:43:57 +04:00
|
|
|
|
2003-08-22 12:09:58 +04:00
|
|
|
Fri Aug 22 17:07:05 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* enum.c (inject_i): use rb_yield_values.
|
2003-08-22 12:09:58 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* enum.c (each_with_index_i): ditto.
|
2003-08-22 12:09:58 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* eval.c (rb_yield_splat): new function to call "yield *values".
|
2003-08-22 12:09:58 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* string.c (rb_str_scan): use rb_yield_splat().
|
2003-08-22 12:09:58 +04:00
|
|
|
|
2003-08-22 01:16:58 +04:00
|
|
|
Fri Aug 22 06:13:22 2003 why the lucky stiff <ruby-cvs@whytheluckystiff.net>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/syck/rubyext.c: refactoring of the transfer method
|
|
|
|
dispatch. added yaml_org_handler for faster dispatch of
|
|
|
|
transfers to base types.
|
2003-08-22 01:16:58 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* lib/yaml/rubytypes.rb: removed handling of builtins from
|
|
|
|
Ruby library.
|
2003-08-22 01:16:58 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/syck/token.c: quoted and block scalars are now implicit !str
|
2003-08-22 13:34:26 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/syck/implicit.c: empty string detected as !null.
|
2003-08-22 01:16:58 +04:00
|
|
|
|
2003-08-21 20:00:34 +04:00
|
|
|
Fri Aug 22 01:00:31 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* eval.c (block_pass): improve passing current block.
|
2003-08-21 20:00:34 +04:00
|
|
|
|
2003-08-21 19:13:45 +04:00
|
|
|
Tue Aug 21 00:13:00 2003 Shigeo Kobayashi <shigek@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/bigdecimal/bigdecimal.c: Int. overflow bug in multiplication
|
|
|
|
fixed, and VpNmlz() speed up.
|
2003-08-21 19:13:45 +04:00
|
|
|
|
2003-08-20 11:44:53 +04:00
|
|
|
Wed Aug 20 16:44:49 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/socket/socket.c (ruby_connect): many systems seem to have
|
|
|
|
a problem in select() after EINPROGRESS. [ruby-list:38080]
|
2003-08-20 11:44:53 +04:00
|
|
|
|
2003-08-19 20:38:02 +04:00
|
|
|
Wed Aug 20 01:31:17 2003 why the lucky stiff <ruby-cvs@whytheluckystiff.net>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/syck/syck.h: Parser definition problems on HP-UX.
|
|
|
|
[ruby-talk:79389]
|
2003-08-19 20:38:02 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/syck/handler.c (syck_hdlr_get_anchor): Memory leak.
|
2003-08-19 20:38:02 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/syck/syck.s (syck_io_file_read): Bad arguments to fread.
|
2003-08-19 20:38:02 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/syck/rubyext.c: Tainting issues.
|
2003-08-19 20:38:02 +04:00
|
|
|
|
2003-08-19 18:21:13 +04:00
|
|
|
Tue Aug 19 23:20:00 2003 Shigeo Kobayashi <shigek@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/bigdecimal/bigdecimal.c .h .html: to_s("+") implemented.
|
2003-08-19 18:21:13 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/bigdecimal/lib/bigdecimal/math.rb: E implemented.
|
2003-08-19 18:21:13 +04:00
|
|
|
|
2003-08-19 10:00:36 +04:00
|
|
|
Tue Aug 19 07:47:09 2003 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* lib/webrick/ssl.rb: new file; SSL/TLS enhancement for GenericServer.
|
2003-08-19 10:00:36 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* lib/webrick/https.rb: SSLSocket handling is moved to webrick/ssl.rb.
|
2003-08-19 10:00:36 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* lib/webrick/compat.rb (File::fnmatch): remove old migration code.
|
2003-08-19 10:00:36 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* lib/webrick/httpserver.rb (HTTPServer#run): ditto.
|
2003-08-19 10:00:36 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* lib/webrick/server.rb (GenericServer#listen): the body of this
|
|
|
|
method is pull out as Utils::create_lisnteners.
|
2003-08-19 10:00:36 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* lib/webrick/utils.rb (Utils::create_lisnteners): new method.
|
2003-08-19 10:00:36 +04:00
|
|
|
|
2003-09-02 15:41:33 +04:00
|
|
|
* lib/webrick/server.rb (GenericServer#start): should rescue
|
|
|
|
unknown errors. and refine comments.
|
2003-08-19 10:00:36 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/openssl/lib/openssl/ssl.rb (SSLServer#accept): should close
|
|
|
|
socket if SSLSocket raises error.
|
2003-08-19 10:00:36 +04:00
|
|
|
|
2003-08-19 06:21:04 +04:00
|
|
|
Tue Aug 19 11:19:33 2003 Shugo Maeda <shugo@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* io.c (next_argv): should not call GetOpenFile() if rb_stdout is
|
|
|
|
not a IO (T_FILE).
|
2003-08-19 06:21:04 +04:00
|
|
|
|
2003-08-19 02:49:48 +04:00
|
|
|
Tue Aug 19 07:47:09 2003 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/openssl/ossl_ssl.c: sync_close is moved to SSLSocket as
|
|
|
|
a builtin.
|
2003-08-19 02:49:48 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/openssl/lib/openssl/buffering.rb (Buffering#close): ditto.
|
2003-08-19 02:49:48 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/openssl/lib/openssl/buffering.rb (Buffering#puts): should
|
|
|
|
add a return to the tails of each line.
|
2003-08-19 02:49:48 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/openssl/lib/openssl/ssl.rb: new class OpenSSL::SSL::SSLServer.
|
2003-08-19 02:49:48 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/openssl/lib/net/protocols.rb (SSLIO#ssl_connect): use sync_close.
|
2003-08-19 02:49:48 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/openssl/sample/echo_svr.rb: use SSLServer.
|
2003-08-19 02:49:48 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/openssl/sample/echo_cli.rb: add example of SSLSocket#sync_close.
|
2003-08-19 02:49:48 +04:00
|
|
|
|
2003-08-18 20:24:42 +04:00
|
|
|
Tue Aug 19 01:24:34 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/curses/curses.c (_XOPEN_SOURCE_EXTENDED): Mac OS X standard
|
|
|
|
headers are inconsistent at this macro. [ruby-core:01432]
|
2003-08-18 20:24:42 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/curses/extconf.rb: check if _XOPEN_SOURCE_EXTENDED breaks.
|
2003-08-18 20:24:42 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/tcltklib/stubs.c: Status macro in X11/Xthreads.h bothers
|
|
|
|
winspool.h
|
2003-08-18 20:24:42 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* instruby.rb: make list at first instead of iterator.
|
|
|
|
[ruby-talk:79347]
|
2003-08-18 20:24:42 +04:00
|
|
|
|
2003-08-18 06:23:13 +04:00
|
|
|
Mon Aug 18 11:23:11 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* dir.c (glob_helper): preserve raw order for **.
|
2003-08-18 06:23:13 +04:00
|
|
|
|
2003-08-17 18:40:00 +04:00
|
|
|
Sun Aug 17 23:39:55 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/openssl/extconf.rb (HAVE_VA_ARGS_MACRO): need to compile.
|
2003-08-17 18:40:00 +04:00
|
|
|
|
2003-08-17 12:22:45 +04:00
|
|
|
Sun Aug 17 17:10:03 2003 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/openssl/lib/openssl/ssl.rb (SSLSocket#sync_close=): add a
|
|
|
|
method to specify if the underlying IO will be closed in
|
|
|
|
SSLSocket#close.
|
2003-08-17 12:22:45 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/openssl/lib/openssl/buffering.rb: add forwarders to
|
|
|
|
setsockopt, getsockopt and fcntl.
|
2003-08-17 12:22:45 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/openssl/lib/net/protocols.rb: enable sync for SSLSocket.
|
2003-08-17 12:22:45 +04:00
|
|
|
|
2003-08-17 06:32:07 +04:00
|
|
|
Sun Aug 17 11:32:04 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/extmk.rb (extmake): should not force to remake Makefile when
|
|
|
|
installation and so on.
|
2003-08-17 06:32:07 +04:00
|
|
|
|
2003-08-16 18:58:34 +04:00
|
|
|
Sat Aug 16 23:58:18 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* marshal.c (w_symbol, w_object): get rid of warnings.
|
2003-08-16 18:58:34 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* re.c (rb_memsearch): ditto.
|
2003-08-16 18:58:34 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* time.c (time_dump): ditto.
|
2003-08-16 18:58:34 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/extmk.rb (extmake): not continue making when extconf.rb
|
|
|
|
failed.
|
2003-08-16 18:58:34 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/openssl/extconf.rb: check __VA_ARGS__ macro more precisely.
|
2003-08-16 18:58:34 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/openssl/ossl.h: remove version.h dependency.
|
2003-08-16 18:58:34 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/openssl/ruby_missing.h: ditto.
|
2003-08-16 18:58:34 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* lib/mkmf.rb (pkg_config): use --libs output except with
|
|
|
|
only-L for other options. [ruby-list:38099]
|
2003-08-16 18:58:34 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* lib/mkmf.rb (create_makefile): separate rule for static
|
|
|
|
library from shared object.
|
2003-08-16 18:58:34 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* win32/Makefile.sub, bcc32/Makefile.sub, wince/Makefile.sub:
|
|
|
|
define exec_prefix and libdir.
|
2003-08-16 18:58:34 +04:00
|
|
|
|
2003-08-15 18:13:49 +04:00
|
|
|
Fri Aug 15 23:15:00 2003 Shigeo Kobayashi <shigek@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/bigdecimal/bigdecimal.c .h: Bug in combination of limit & div
|
|
|
|
method fixed.
|
2003-08-15 18:13:49 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/bigdecimal/lib/bigdecimal/math.rb: atan() & sqrt() added.
|
2003-08-15 18:13:49 +04:00
|
|
|
|
2003-08-15 07:01:52 +04:00
|
|
|
Fri Aug 15 12:01:43 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* configure.in (HUGE_ST_INO): check whether struct stat.st_ino
|
|
|
|
is larger than long. [ruby-dev:21194]
|
|
|
|
http://www.geocities.co.jp/SiliconValley-PaloAlto/1409/ruby/beos.html
|
2003-08-15 07:01:52 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* error.c (syserr_eqq): errno might exceed Fixnum limit.
|
2003-08-15 07:01:52 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* error.c (Init_Exception): moved base initialization from
|
|
|
|
init_syserr().
|
2003-08-15 07:01:52 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* inits.c (rb_call_inits): postpone initializing errnos until
|
|
|
|
Bignum is available.
|
2003-08-15 07:01:52 +04:00
|
|
|
|
|
|
|
Fri Aug 15 12:01:43 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/curses/curses.c (_XOPEN_SOURCE_EXTENDED): needed to let
|
|
|
|
keyname() and so on be declared.
|
2003-08-15 07:01:52 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/curses/curses.c (curses_resizeterm, window_resize):
|
|
|
|
arguments conflicted with macros in term.h.
|
2003-08-15 07:01:52 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/curses/curses.c (Curses module methods): ensure
|
|
|
|
initialized. [ruby-dev:21191]
|
2003-08-15 07:01:52 +04:00
|
|
|
|
2003-08-14 21:20:14 +04:00
|
|
|
Fri Aug 15 02:08:53 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* gc.c (id2ref): recycle check should be done by klass == 0.
|
|
|
|
[ruby-core:01408]
|
2003-08-14 21:20:14 +04:00
|
|
|
|
2003-09-12 17:46:48 +04:00
|
|
|
Fri Aug 15 01:34:23 2003 Michal Rokos <m.rokos@sh.cvut.cz>
|
|
|
|
|
|
|
|
* ext/openssl/ossl_pkey.c: move generate_cb here
|
|
|
|
|
|
|
|
* ext/openssl/ossl_pkey_{dh|dsa|rsa}.c: adapt to this cb
|
|
|
|
|
|
|
|
* ext/openssl/openssl_missing.[ch]: add (0.9.6x, x<j) missing BN funcs
|
|
|
|
|
|
|
|
* ext/openssl/ossl_bn.c: use supplied funcs from openssl_missing.c
|
|
|
|
|
2003-08-14 19:42:42 +04:00
|
|
|
Fri Aug 15 00:38:00 2003 Shigeo Kobayashi <shigek@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/bigdecimal/bigdecimal.c: Bug in div method fixed.
|
2003-08-14 19:42:42 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/bigdecimal/lib/bigdecimal/math.rb: Newly added.
|
2003-08-14 19:42:42 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/bigdecimal/sample/pi.rb: Changed so as to use math.rb.
|
2003-08-14 19:42:42 +04:00
|
|
|
|
2003-08-14 21:20:14 +04:00
|
|
|
Thu Aug 14 21:19:14 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* eval.c (Init_Thread): Continuation#[] added. [ruby-talk:79028]
|
2003-08-14 21:20:14 +04:00
|
|
|
|
2003-08-14 15:01:43 +04:00
|
|
|
Thu Aug 14 20:03:34 2003 Masaki Suketa <masaki.suketa@nifty.ne.jp>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/win32ole/win32ole.c (OLE_FREE): should not call
|
|
|
|
ole_message_loop.
|
2003-08-23 13:56:56 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/win32ole/win32ole.c (ole_event_free): ditto.
|
2003-08-14 15:01:43 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/win32ole/win32ole.c (ole_initialize): stop calling
|
|
|
|
OleUninitialize at exit.
|
2003-08-14 15:01:43 +04:00
|
|
|
|
2003-08-14 06:28:14 +04:00
|
|
|
Thu Aug 14 11:27:37 2003 NAKAMURA Usaku <usa@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* gc.c (rb_data_object_alloc): check type of 1st argument.
|
|
|
|
[ruby-dev:21192]
|
2003-08-14 06:28:14 +04:00
|
|
|
|
2003-08-14 21:20:14 +04:00
|
|
|
Thu Aug 14 00:21:14 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* parse.y (mlhs_node): should allow "::Foo" (colon3) as lhs.
|
2003-08-14 21:20:14 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* parse.y (lhs): ditto.
|
2003-08-14 21:20:14 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* parse.y (yylex): should return tCOLON3 right after kCLASS.
|
|
|
|
[ruby-talk:78918]
|
2003-08-14 21:20:14 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* error.c (exc_initialize): was converting argument to string too
|
|
|
|
eagerly. Only check was needed. [ruby-talk:78958]
|
2003-08-14 21:20:14 +04:00
|
|
|
|
2003-08-13 18:33:31 +04:00
|
|
|
Wed Aug 13 23:31:00 2003 Shigeo Kobayashi <shigek@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/bigdecimal/bigdecimal.c .h .html: Ambiguity of
|
|
|
|
BigDecimal::limit removed.
|
2003-08-13 18:33:31 +04:00
|
|
|
|
2003-08-13 15:41:13 +04:00
|
|
|
Wed Aug 13 19:21:34 2003 Christian Neukirchen <chneukirchen@yahoo.de>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* lib/webrick/https.rb (HTTPServer#run): should set syncing-mode
|
|
|
|
to SSLSocket. [ruby-talk:78919]
|
2003-08-13 15:41:13 +04:00
|
|
|
|
2003-08-13 14:31:33 +04:00
|
|
|
Wed Aug 13 18:13:49 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* eval.c (POP_BLOCK): turn on BLOCK_LEFT flag when leaving block.
|
2003-08-13 14:31:33 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* eval.c (proc_invoke): unpack return/break destination when block
|
|
|
|
is already left.
|
2003-08-13 14:31:33 +04:00
|
|
|
|
2003-08-13 11:13:45 +04:00
|
|
|
Wed Aug 13 15:58:31 2003 WATANABE Hirofumi <eban@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* object.c (rb_class_s_alloc): add function prototype to avoid VC++
|
|
|
|
warning.
|
2003-08-13 11:13:45 +04:00
|
|
|
|
2003-08-13 08:52:35 +04:00
|
|
|
Wed Aug 13 13:50:59 2003 NAKAMURA Usaku <usa@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/Win32API/Win32API.c (Win32API_initialize): should pass some
|
|
|
|
class to first argument of Data_Wrap_Struct(). (ruby-bugs PR#1109)
|
2003-08-13 08:52:35 +04:00
|
|
|
|
2003-08-12 11:55:14 +04:00
|
|
|
Tue Aug 12 16:55:11 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
2003-08-12 06:12:48 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* Makefile.in: static link libraries to LIBRUBY_SO with static linked
|
|
|
|
ext. [ruby-dev:21157]
|
2003-08-12 06:12:48 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/extmk.rb (extmake): sort extension library initialization order.
|
2003-08-12 06:12:48 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/extmk.rb (extmake): compact $extlibs.
|
2003-08-12 11:55:14 +04:00
|
|
|
|
2003-08-11 21:52:24 +04:00
|
|
|
Tue Aug 12 02:48:56 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* eval.c (THREAD_SAVE_CONTEXT): should explicitly turn off the
|
|
|
|
flag before calling getcontext(2).
|
2003-08-11 22:18:40 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* eval.c (struct thread): add member to save backing store on
|
|
|
|
IA64. (ruby-bugs PR1086)
|
2003-08-11 21:52:24 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* eval.c (thread_mark): mark IA64 backing store region.
|
2003-08-11 21:52:24 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* eval.c (thread_free): free saved IA64 backing store.
|
2003-08-11 21:52:24 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* eval.c (rb_thread_save_context): save IA64 backing store as well.
|
2003-08-11 21:52:24 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* eval.c (rb_thread_restore_context): restore IA64 backing store.
|
2003-08-11 21:52:24 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* eval.c (THREAD_ALLOC): initialize IA64 members.
|
2003-08-11 21:52:24 +04:00
|
|
|
|
2003-08-11 17:41:18 +04:00
|
|
|
Mon Aug 11 22:31:50 2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
|
2003-08-23 13:58:56 +04:00
|
|
|
* lib/debug.rb(debug_command): inspection command should inspect
|
|
|
|
resulting value even if it's nil. [ruby-dev:21180] by OMAE, jun
|
|
|
|
<jun66j5@ybb.ne.jp>.
|
2003-08-11 17:41:18 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* lib/debug.rb(debug_command): incomplete regexp.
|
2003-08-11 17:41:18 +04:00
|
|
|
|
2003-08-11 12:35:54 +04:00
|
|
|
Mon Aug 11 17:33:07 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* eval.c (rb_call_super): do not use rb_block_given_p() for
|
|
|
|
check. [ruby-talk:78656]
|
2003-08-11 12:35:54 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* eval.c (BEGIN_CALLARGS): push ITER_NOT only when ITER_PRE.
|
2003-08-11 12:35:54 +04:00
|
|
|
|
2003-08-10 05:54:05 +04:00
|
|
|
Sun Aug 10 10:43:05 2003 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/openssl/lib/openssl/buffering.rb: increase BLOCK_SIZE
|
|
|
|
from 1k to 16k bytes. [ruby-talk:78603]
|
2003-08-10 05:54:05 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/openssl/ossl_ssl.c (ossl_sslctx_s_alloc): enable
|
|
|
|
partial write to allow interruption in SSLSocket#write.
|
2003-08-10 05:54:05 +04:00
|
|
|
|
2003-08-09 19:36:23 +04:00
|
|
|
Sun Aug 10 00:34:16 2003 WATANABE Hirofumi <eban@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* cygwin/GNUmakefile: remove unnecessary '--drive-name=$(CC)'
|
|
|
|
for ccache.
|
2003-08-09 19:36:23 +04:00
|
|
|
|
2003-08-09 19:19:17 +04:00
|
|
|
Sat Aug 9 10:36:21 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* marshal.c (w_object): do not dump generic instance variable when
|
|
|
|
marshal_dump is defined.
|
2003-08-09 19:19:17 +04:00
|
|
|
|
2003-08-08 19:38:46 +04:00
|
|
|
Sat Aug 9 00:35:00 2003 Shigeo Kobayashi <shigek@ruby-lang.org>
|
2003-08-08 19:37:21 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/bigdecimal.c: F style output(like 1234.56789) implemented
|
|
|
|
to to_s method.
|
|
|
|
* ext/bigdecimal_??.html: F style output(like 1234.56789)
|
|
|
|
implemented to to_s method.
|
2003-08-08 19:37:21 +04:00
|
|
|
|
2003-08-08 07:35:46 +04:00
|
|
|
Fri Aug 8 12:33:17 2003 WATANABE Hirofumi <eban@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* bcc32/Makefile.sub: rubyw.exe should be a Windows GUI program.
|
|
|
|
add the -aa option to WLDFLAGS.
|
2003-08-08 07:35:46 +04:00
|
|
|
|
2003-08-08 07:48:33 +04:00
|
|
|
Fri Aug 8 11:29:26 2003 Koji Arai <jca02266@nifty.ne.jp>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* marshal.c (w_object): should set `c_arg' at first.
|
2003-08-08 07:48:33 +04:00
|
|
|
|
2003-08-07 22:24:27 +04:00
|
|
|
Fri Aug 8 03:22:28 2003 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* lib/webrick/httputils.rb (FormData#list): should not take
|
|
|
|
a side effect for the receiver.
|
2003-08-07 22:24:27 +04:00
|
|
|
|
2003-08-07 09:43:59 +04:00
|
|
|
Thu Aug 7 14:40:37 2003 WATANABE Hirofumi <eban@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* cygwin/GNUmakefile: better --disbale-shared option support.
|
2003-08-07 09:43:59 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* cygwin/GNUmakefile: add forwarding DLL target for cygwin.
|
2003-08-07 11:11:50 +04:00
|
|
|
|
2003-08-07 09:43:59 +04:00
|
|
|
Thu Aug 7 14:21:05 2003 Corinna Vinschen <vinschen@redhat.com>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* configure.in: Fix Cygwin specific naming of libraries to
|
|
|
|
be net distribution compliant. (ruby-bugs PR#1077)
|
|
|
|
cygwin-ruby18.dll -> cygruby18.dll
|
2003-08-07 09:43:59 +04:00
|
|
|
|
2003-08-07 08:09:56 +04:00
|
|
|
Thu Aug 7 12:51:38 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* eval.c (rb_f_at_exit): should not be called without a block.
|
|
|
|
block_given check added.
|
2003-08-07 08:09:56 +04:00
|
|
|
|
2003-08-07 01:50:06 +04:00
|
|
|
Thu Aug 7 06:46:06 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* eval.c (rb_call0): forgot to pop ruby_class.
|
2003-08-07 01:54:46 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* eval.c (rb_call0): update ruby_class as well as ruby_cref.
|
|
|
|
(ruby-bugs-ja PR#540)
|
2003-08-07 01:50:06 +04:00
|
|
|
|
|
|
|
Thu Aug 7 04:52:50 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* eval.c (rb_yield_0): remove ruby_frame->cbase and unify to
|
|
|
|
ruby_cref. [ruby-talk:78141]
|
2003-08-07 01:50:06 +04:00
|
|
|
|
2003-08-06 23:21:24 +04:00
|
|
|
Thu Aug 7 04:19:15 2003 Akinori MUSHA <knu@iDaemons.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* gc.c: FreeBSD/ia64's mcontext_t is a bit different from that of
|
|
|
|
Linux/ia64. This makes gc.c compile but miniruby coredumps for
|
|
|
|
the moment.
|
2003-08-06 23:21:24 +04:00
|
|
|
|
2003-08-06 19:15:41 +04:00
|
|
|
Wed Aug 7 00:15:00 2003 Shigeo Kobayashi <shigek@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/bigdecimal.c: Comparison results adjusted to Float's.
|
|
|
|
* ext/bigdecimal.c: Use rb_num_coerce_????(x,y) instead of own.
|
2003-08-06 19:15:41 +04:00
|
|
|
|
2003-08-06 18:03:21 +04:00
|
|
|
Wed Aug 6 22:58:00 2003 Nathaniel Talbott <ntalbott@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* lib/test/unit/testcase.rb: Added equality checking.
|
|
|
|
* lib/test/unit/testsuite.rb: Added equality checking.
|
|
|
|
* lib/test/unit/assertions.rb: Fixed a warning.
|
2003-08-06 18:03:21 +04:00
|
|
|
|
2003-08-06 12:28:52 +04:00
|
|
|
Wed Aug 6 17:28:10 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
2003-08-06 07:11:14 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/extmk.rb (extmake): pass LIBPATH to make ruby. [ruby-dev:21137]
|
2003-08-06 07:11:14 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/extmk.rb (extmake): set library name as source file name in
|
|
|
|
Init_ext(). [ruby-dev:21137]
|
2003-08-06 07:11:14 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* lib/mkmf.rb (Logging::postpone): postpone logging messages after
|
|
|
|
heading message as the result of the block.
|
2003-08-06 07:11:14 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* lib/mkmf.rb (macro_defined?): append newline to src unless ended
|
|
|
|
with it.
|
2003-08-06 07:11:14 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* lib/mkmf.rb (have_library): treat nil function name as "main".
|
|
|
|
(ruby-bugs:PR#1083)
|
2003-08-06 07:11:14 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* lib/mkmf.rb (pkg_config): should append additional libraries to
|
|
|
|
$libs but not $LIBS. [ruby-dev:21137]
|
2003-08-06 07:11:14 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/io/wait/extconf.rb: check DOSISH macro instead of platform.
|
2003-08-06 07:11:14 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/digest/sha1/extconf.rb: have_library already appends library
|
|
|
|
name.
|
2003-08-06 07:11:14 +04:00
|
|
|
|
2003-08-07 01:50:06 +04:00
|
|
|
Wed Aug 6 17:23:57 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* eval.c: initialize /* OK */ variables by Qnil to stop warnings.
|
2003-08-07 01:50:06 +04:00
|
|
|
|
2003-08-05 23:58:43 +04:00
|
|
|
Wed Aug 6 04:58:32 2003 NAKAMURA Usaku <usa@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* ext/Setup*: add io/wait and openssl.
|
2003-08-05 23:58:43 +04:00
|
|
|
|
2003-08-07 01:50:06 +04:00
|
|
|
Wed Aug 6 01:13:38 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* eval.c (rb_f_autoload): use ruby_cbase instead of ruby_class.
|
2003-08-07 01:50:06 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* eval.c (rb_f_autoload_p): ditto.
|
2003-08-07 01:50:06 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* class.c (rb_mod_init_copy): no longer implements independent
|
|
|
|
clone and dup methods. override "initialize_copy" instead.
|
|
|
|
[ruby-core:01352]
|
2003-08-07 01:50:06 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* object.c (rb_class_s_alloc): define Class allocation function.
|
|
|
|
this makes Classes to follow clone framework that uses
|
|
|
|
initialize_copy.
|
2003-08-07 01:50:06 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* object.c (rb_class_initialize): separate instantiation and
|
|
|
|
initialization.
|
2003-08-07 01:50:06 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* object.c (rb_obj_alloc): prohibit instantiation from
|
|
|
|
uninitialized class.
|
2003-08-07 01:50:06 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* object.c (rb_class_superclass): check uninitialized class.
|
2003-08-07 01:50:06 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* array.c (rb_ary_fill): wrong index processing with block. this
|
|
|
|
fix was done by Koji Arai <JCA02266@nifty.ne.jp> [ruby-list:38029]
|
2003-08-07 01:50:06 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* marshal.c (w_object): should preserve generic ivar for nil,
|
|
|
|
true, false, symbols, and fixnums.
|
2003-08-07 01:50:06 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* marshal.c (w_uclass): base_klass check should be done after
|
|
|
|
rb_class_real().
|
2003-08-07 01:50:06 +04:00
|
|
|
|
2003-08-05 20:12:05 +04:00
|
|
|
Wed Aug 6 01:18:50 2003 Minero Aoki <aamine@loveruby.net>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* lib/net/http.rb: update document.
|
2003-08-05 20:12:05 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* lib/net/pop.rb: ditto.
|
2003-08-05 20:12:05 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* lib/net/protocol.rb: ditto.
|
2003-08-05 20:12:05 +04:00
|
|
|
|
2003-08-07 01:50:06 +04:00
|
|
|
Wed Aug 6 00:48:37 2003 Koji Arai <jca02266@nifty.ne.jp>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* marshal.c (w_object): should recommend marshal_dump rather than
|
|
|
|
_dump_data.
|
2003-08-07 01:50:06 +04:00
|
|
|
|
2003-08-05 13:09:35 +04:00
|
|
|
Tue Aug 5 17:58:57 2003 WATANABE Hirofumi <eban@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* lib/fileutils.rb (install): should preserve timestamp only.
|
2003-08-05 13:09:35 +04:00
|
|
|
|
2003-08-05 13:27:21 +04:00
|
|
|
Tue Aug 5 17:31:59 2003 Ian Macdonald <ian@caliban.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* lib/shell/command-processor.rb (Shell::CommandProcessor::rmdir):
|
|
|
|
simple typo.
|
2003-08-05 13:27:21 +04:00
|
|
|
|
2003-08-05 10:47:37 +04:00
|
|
|
Tue Aug 5 15:47:34 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* eval.c (rb_load): should preserve current source file/line.
|
2003-08-05 10:47:37 +04:00
|
|
|
|
2003-08-05 13:27:21 +04:00
|
|
|
Tue Aug 5 10:04:42 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* string.c (str_new4): ptr may refer null_str.
|
2003-08-05 13:27:21 +04:00
|
|
|
|
2003-08-04 12:31:24 +04:00
|
|
|
Mon Aug 4 17:25:18 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
2003-08-04 09:28:50 +04:00
|
|
|
|
2003-08-23 13:58:56 +04:00
|
|
|
* stable version 1.8.0 released.
|
2003-08-04 09:28:50 +04:00
|
|
|
|
2003-08-04 12:31:24 +04:00
|
|
|
For the changes before 1.8.0, see doc/ChangeLog-1.8.0
|
2003-04-25 12:54:52 +04:00
|
|
|
|
2003-08-26 15:37:45 +04:00
|
|
|
Local variables:
|
2003-07-24 09:18:47 +04:00
|
|
|
add-log-time-format: (lambda ()
|
|
|
|
(let* ((time (current-time))
|
|
|
|
(diff (+ (cadr time) 32400))
|
2003-08-26 15:37:45 +04:00
|
|
|
(lo (% diff 65536))
|
|
|
|
(hi (+ (car time) (/ diff 65536))))
|
2003-08-23 20:06:25 +04:00
|
|
|
(format-time-string "%a %b %e %H:%M:%S %Y" (list hi lo) t)))
|
2003-07-25 08:38:42 +04:00
|
|
|
indent-tabs-mode: t
|
|
|
|
tab-width: 8
|
2003-04-25 12:54:52 +04:00
|
|
|
end:
|