-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
4270 lines (2550 loc) · 137 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Sat Dec 13 09:01:23 2003 Nobuyoshi Nakada <[email protected]>
* configure.in: check ucontext.h.
* eval.c: use getcontext/setcontext() instead of setjmp/longjmp()
on ia64 or with native thread enabled. [ruby-core:01932]
Sat Dec 13 03:09:14 2003 why the lucky stiff <[email protected]>
* lib/yaml/rubytypes.rb: anonymous struct fix. [ruby-core:01946]
* test/yaml/test_yaml.rb: add test.
Fri Dec 12 22:36:44 2003 NAKAMURA, Hiroshi <[email protected]>
* lib/csv.rb: add Cell#to_str and Cell#to_s for /.../ =~ aCell,
"#{aCell}" and so on.
* test/csv/test_csv.rb: add tests.
Fri Dec 12 19:33:06 2003 Minero Aoki <[email protected]>
* lib/fileutils.rb (mkdir): remove trailing `/' from pathes.
* lib/fileutils.rb (rmdir): ditto. [ruby-dev:22238]
* lib/fileutils.rb (rmdir_r): ditto.
* lib/fileutils.rb (fu_copy_dir): check if it is a directory after
mkdir(2).
Fri Dec 12 06:06:09 2003 Nobuyoshi Nakada <[email protected]>
* eval.c (proc_invoke): fix class name in warning message for
define_method. [ruby-dev:22235]
Thu Dec 11 21:24:43 2003 GOTOU Yuuzou <[email protected]>
* ext/openssl/ossl_pkcs12.[ch]: new files. add OpenSSL::PKCS12.
* ext/openssl/ossl.[ch]: ditto.
* ext/openssl/MANIFEST: add ossl_pkcs12.[ch].
Thu Dec 11 20:54:28 2003 Minero Aoki <[email protected]>
* lib/fileutils.rb (mkdir_p): remove trailing `/' befere mkdir(2).
mkdir("nonexistdir/") does not work on NetBSD/Alpha 1.6.1.
* lib/fileutils.rb (fu_list): call to_str for all arguments.
Thu Dec 11 20:07:01 2003 WATANABE Hirofumi <[email protected]>
* lib/ftools.rb (makedirs): sync with fileutils.
Thu Dec 11 19:53:03 2003 Minero Aoki <[email protected]>
* lib/fileutils.rb (mkdir_p): catch all SystemCallErrors.
(mkdir("C:\") causes EACCESS on Windows 2000/NTFS)
Thu Dec 11 19:08:02 2003 Minero Aoki <[email protected]>
* lib/fileutils.rb (mkdir_p): check if it is a directory after
mkdir(2) instead of before mkdir(2), to avoid race condition.
[ruby-talk:87730]
Refer: mkinstalldirs sh script, GNU mkdir(1) (coreutils 5.0)
Thu Dec 11 18:49:30 2003 Minero Aoki <[email protected]>
* lib/fileutils.rb: def m( arg ) -> def m(arg).
Thu Dec 11 11:39:43 2003 Nobuyoshi Nakada <[email protected]>
* configure.in (ieeefp.h), numeric.c: needed for finite() on
Solaris. [ruby-core:01921]
* file.c (rb_stat_inspect): adjust format specifier.
* parse.c (arg_prepend): nodetype() is for debug use.
* ruby.h (ISASCII, etc): cast to int to get rid of warning.
* ruby.h (alloca.h): include even in GCC. [ruby-core:01925]
* ext/bigdecimal/bigdecimal.c (GetVpValue): adjust format
specifier.
* ext/bigdecimal/bigdecimal.c (BigDecimal_prec, BigDecimal_coerce,
BigDecimal_divmod): use rb_assoc_new() to suppress memory usage.
* ext/bigdecimal/bigdecimal.c (BigDecimal_split): ditto.
* ext/dl/sym.c (rb_dlsym_guardcall): guard itself should be
volatile.
* ext/iconv/iconv.c (iconv_convert): ensure actual parameter with
format specifier.
* ext/pty/pty.c (MasterDevice, SlaveDevice, deviceNo): do not
define unless used.
* ext/pty/pty.c (getDevice): get rid of warning.
* ext/socket/socket.c (port_str, sock_s_getaddrinfo,
sock_s_getnameinfo): FIX2INT() now returns long.
* ext/socket/socket.c (init_inetsock_internal): uninitialized
variable.
* ext/syck/rubyext.c (syck_parser_assign_io): add prototype.
* ext/syck/rubyext.c (rb_syck_mktime, yaml_org_handler): use
ISDIGIT() instead of isdigit() to avoid warnings and for
platforms which don't support non-ascii charater.
Wed Dec 10 19:28:56 2003 Nobuyoshi Nakada <[email protected]>
* ext/stringio/stringio.c (strio_read): set EOF flag at short read.
[ruby-dev:22223], [ruby-dev:22224]
Wed Dec 10 18:07:25 2003 Minero Aoki <[email protected]>
* lib/erb.rb: new method ERB#filename(=). [ruby-dev:22208]
Wed Dec 10 17:54:51 2003 Nobuyoshi Nakada <[email protected]>
* ext/stringio/stringio.c (strio_read): do not set EOF flag when
requested length is zero. [ruby-dev:22214]
Wed Dec 10 17:17:18 2003 Yukihiro Matsumoto <[email protected]>
* io.c (read_all): should return given string even if data read is
empty. [ruby-dev:22207]
Wed Dec 10 17:16:06 2003 Nobuyoshi Nakada <[email protected]>
* ext/stringio/stringio.c (strio_read): adjust behavior at reading
beyond EOF to IO. [ruby-dev:22205]
* test/ruby/ut_eof.rb (TestEOF::Seek): test behaviors at reading
beyond EOF.
* test/ruby/test_file.rb, test/stringio/test_stringio.rb: include
TestEOF::Seek test case.
Wed Dec 10 15:01:19 2003 Shugo Maeda <[email protected]>
* test/monitor/test_monitor.rb (test_cond): use Queue#deq
instead of sleep.
Wed Dec 10 14:45:39 2003 WATANABE Hirofumi <[email protected]>
* ext/pty/pty.c (HAVE_SYS_IOCTL_H): need to include <sys/ioctl.h>
for TIOCSCTTY on *BSD. based on gotoyuzo's patch.
(ruby-bugs:PR#1211)
* ext/pty/pty.c (establishShell): should close descriptors if fork
failed.
Wed Dec 10 12:53:05 2003 WATANABE Hirofumi <[email protected]>
* win32/win32.h: define execv() using do_aspawn().
* process.c (proc_exec_v): remove #ifdef's which stopped needing.
Tue Dec 9 23:32:23 2003 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk.rb, ext/tk/lib/tkcanvas.rb, ext/tk/lib/tkdialog.rb,
ext/tk/lib/tkentry.rb, ext/tk/lib/tkscrollbox.rb, ext/tk/lib/tktext.rb,
ext/tk/sample/tkalignbox.rb, ext/tk/sample/tkcombobox.rb,
ext/tk/sample/tkmultilistbox.rb, ext/tk/sample/tkoptdb.rb, ext/tk/sample/tktextframe.rb,
ext/tk/sample/demos-en/dialog1.rb, ext/tk/sample/demos-en/dialog2.rb,
ext/tk/sample/demos-jp/dialog1.rb, ext/tk/sample/demos-jp/dialog2.rb:
overrided instance methods, which are private methods on the super
class, are changed to 'private'
Tue Dec 9 19:53:02 2003 akira yamada <[email protected]>
* lib/uri/generic.rb (URI::Generic#route_from0): make case insensitive
for host-part.
* test/uri/test_generic.rb (test_route): added tests for the above
change.
Tue Dec 9 14:10:48 2003 Tanaka Akira <[email protected]>
* io.c (rb_io_check_readable): don't call io_seek if EOF flag is set,
to avoid clearing EOF flag.
(rb_io_check_writable): ditto.
Tue Dec 9 02:53:55 2003 Hidetoshi NAGAI <[email protected]>
* ext/tk/sample/tkalignbox.rb: new sample script
Tue Dec 9 00:45:00 2003 Nathaniel Talbott <[email protected]>
* lib/test/unit/assertions.rb: renamed #assert_raises to #assert_raise
and made the former call the latter. [ruby-core:01890]
* test/testunit/test_assertions.rb: ditto.
Tue Dec 9 00:07:35 2003 NAKAMURA, Hiroshi <[email protected]>
* lib/soap/rpc/standaloneServer.rb: add 'shutdown' and 'status'
methods as delegates to WEBrick.
* test/soap/calc/{test_calc.rb,test_calc2.rb},
test/soap/helloworld/test_helloworld.rb,
test/wsdl/datetime/test_datetime.rb, test/wsdl/raa/test_raa.rb:
follow the change.
Mon Dec 8 22:48:03 2003 Nobuyoshi Nakada <[email protected]>
* lib/test/unit/autorunner.rb: remove dependency to a particular
runner. [ruby-core:01901], [ruby-list:38869]
* lib/test/unit/ui/testrunnerutilities.rb: moved output level
constants from Console.
* lib/test/unit/ui/console/testrunner.rb: ditto.
* lib/test/unit/ui/{fox,gtk,gtk2,tk}/testrunner.rb (initialize):
accept output_level.
Mon Dec 8 15:03:30 2003 Nobuyoshi Nakada <[email protected]>
* ext/syck/syck.c (syck_io_str_read): get rid of buffer overflow.
Mon Dec 8 13:02:11 2003 Minero Aoki <[email protected]>
* lib/uri/common.rb: new method URI.regexp. [ruby-dev:22121]
* test/uri/test_common.rb: add test for URI.regexp.
Mon Dec 8 12:44:14 2003 Yukihiro Matsumoto <[email protected]>
* pack.c: define swap16 and swap32 only if they are not
defined. OpenBSD defines these macros. [ruby-dev:22181]
Sun Dec 7 20:54:17 2003 Tanaka Akira <[email protected]>
* ext/iconv/iconv.c (map_charset): make case sensitive.
ext/iconv/charset_alias.rb (charset_alias): don't ignore
config.charset's information. sort aliases.
Sat Dec 6 22:58:03 2003 GOTOU Yuuzou <[email protected]>
* ext/openssl/ossl_ssl.c (ossl_start_ssl): new function to wrap
SSL_connect and SSL_accept; if SSL_connect (or SSL_accept) returned
but not finished the handshake process, we should retry it.
* ext/openssl/ossl_ssl.c (ossl_ssl_connect): call ossl_start_ssl.
* ext/openssl/ossl_ssl.c (ossl_ssl_accept): ditto.
* ext/openssl/ossl_ssl.c (ossl_ssl_read): allow signal traps.
Sat Dec 6 21:45:10 2003 WATANABE Hirofumi <[email protected]>
* io.c (flush_before_seek): flush before seek on any platform.
* configure.in: ditto.
Sat Dec 6 17:23:00 2003 NAKAMURA, Hiroshi <[email protected]>
* lib/soap/soap.rb(SOAP::Env.getenv): allow upcase environment variable
as well as downcase one.
* lib/soap/netHttpClient.rb(SOAP::NetHttpClient#proxy=): check URI.
Fri Dec 5 23:22:30 2003 Nobuyoshi Nakada <[email protected]>
* lib/test/unit/assertions.rb (Test::Unit::Assertions::assert_raises,
Test::Unit::Assertions::assert_nothing_raised): use the last
argument as message unless class object.
* test/testunit/test_assertions.rb (test_assert_raises): test for
multiple exception list. [ruby-core:01891]
* test/testunit/test_assertions.rb (test_assert_nothing_raised): test
for non-exception classes.
Fri Dec 5 22:23:04 2003 NAKAMURA, Hiroshi <[email protected]>
* lib/soap/netHttpClient.rb: proxy support did not work. fixed.
* lib/soap/property.rb: add class methods for loading property from
stream/file/propertyfile. propertyfile is a file which is located at
somedir in $:.
* lib/soap/soap.rb, lib/soap/wsdlDriver.rb, lib/soap/rpc/driver.rb,
lib/wsdl/importer.rb: load property from propertyfile 'soap/property'
e.g. /usr/local/lib/ruby/site_ruby/1.8/soap/property.
* test/soap/test_property.rb, test/soap/test_streamhandler.rb: new file.
Fri Dec 5 17:26:23 2003 Nobuyoshi Nakada <[email protected]>
* eval.c (rb_exec_end_proc): maintain tmp_end_procs.
[ruby-dev:22154]
Fri Dec 5 13:36:59 2003 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_exec_end_proc): should not clear end_procs and
ephemeral_end_procs before execution. [ruby-dev:22144]
* eval.c (rb_obj_extend): call Module#extended hook after
extended_object. [ruby-list:38866]
* object.c (Init_Object): Module#extended defined.
Fri Dec 5 13:17:30 2003 Tanaka Akira <[email protected]>
* test/ruby/test_pipe.rb: use IO.pipe instead of IO.popen.
Fri Dec 5 11:54:45 2003 Nobuyoshi Nakada <[email protected]>
* ext/stringio/stringio.c (strio_read): follow IO#read.
* test/ruby/ut_eof.rb, test/ruby/test_file.rb, test/ruby/test_pipe.rb,
test/stringio/test_stringio.rb: add EOF test.
Fri Dec 5 02:49:35 2003 Nobuyoshi Nakada <[email protected]>
* lib/test/unit/assertions.rb (Test::Unit::Assertions::assert_raises):
allow multiple exception list. [ruby-core:01884]
* lib/test/unit/assertions.rb (Test::Unit::Assertions::assert_nothing_raised):
check whether arguments are subclass of Exception.
Thu Dec 4 23:54:00 2003 Rick Ohnemus <[email protected]>
* dln.c (aix_loaderror): should not use member named 'errno' which
might be a macro (e.g. on AIX).
Thu Dec 4 23:32:26 2003 Yukihiro Matsumoto <[email protected]>
* io.c (read_all): do not depend on lseek position.
[ruby-dev:22026]
Thu Dec 4 22:37:26 2003 Nobuyoshi Nakada <[email protected]>
* eval.c (rb_eval): preserve $! value when retry happens in the
rescue clause. [ruby-talk:86697]
Thu Dec 4 21:50:07 2003 Nobuyoshi Nakada <[email protected]>
* lib/drb/drb.rb (DRb::DRbMessage::send_request, send_reply):
should rescue errors and re-raise DRbConnError on write too.
[ruby-dev:22132]
Thu Dec 4 16:41:17 2003 Nobuyoshi Nakada <[email protected]>
* parse.y (exc_list): allow expanding list. [ruby-dev:22134]
Thu Dec 4 14:09:24 2003 Minero Aoki <[email protected]>
* test/fileutils/test_fileutils.rb (test_cp): test if the error is
kind of SystemCallError. It is needless details that which errno
is set on each systems.
Thu Dec 4 13:24:13 2003 Shugo Maeda <[email protected]>
* lib/monitor.rb: use Object#__send__ instead of Object#send.
Thu Dec 4 13:17:45 2003 NAKAMURA, Hiroshi <[email protected]>
* lib/soap/streamHandler.rb: support latest released version of
http-access2.
Thu Dec 4 13:04:44 2003 NAKAMURA, Hiroshi <[email protected]>
* lib/soap/soap.rb: add SOAP::Env module for environment repository
such as HTTP_PROXY.
* lib/soap/property.rb: property implementation.
* lib/soap/streamHandler.rb, lib/soap/wsdlDriver.rb,
lib/soap/rpc/driver.rb: use soap/property.rb.
* lib/wsdl/importer.rb, lib/soap/wsdlDriver.rb, lib/soap/rpc/driver.rb:
use SOAP::Env.
* lib/soap/netHttpClient.rb: add basic_auth, ssl_config, and cookie
management interface, but ignored for now.
* lib/xsd/charset.rb: add XSD::Charset.encoding= interface to set
wiredump charset explicitly. it was fixed to 'utf-8' when iconv or
uconv module was found.
Thu Dec 4 10:43:58 2003 NAKAMURA Usaku <[email protected]>
* ext/dl/sym.c (rb_dlsym_guardcall): __declspec(noinline) is VC7
feature.
Thu Dec 4 10:27:12 2003 Minero Aoki <[email protected]>
* lib/net/http.rb: update hyperlink to the Japanese document.
Thu Dec 4 09:12:43 2003 GOTOU Yuuzou <[email protected]>
* ext/openssl/ossl_asn1.c (asn1time_to_time): should check that
the underlying value of ASN1_TIME isn't NULL. [ruby-core:01881]
Thu Dec 4 08:29:43 2003 GOTOU Yuuzou <[email protected]>
* lib/webrick/server.rb (GenericServer#start): should rescue
Exception to avoid unexpected aborting. [ruby-core:01853]
* lib/webrick/server.rb (GenericServer#start_thread): should check
that peeraddr isn't nil before printing.
* lib/webrick/httpresponse.rb (HTTPResponse#start_thread): should
rescue Exception to avoid unexpected aborting of thread.
Thu Dec 4 03:48:59 2003 Tanaka Akira <[email protected]>
* lib/pathname.rb (Pathname#link, Pathname#symlink): obsoleted.
(Pathname#make_link, Pathname#make_symlink): new method.
Thu Dec 4 01:45:24 2003 Yukihiro Matsumoto <[email protected]>
* io.c (argf_read): should not terminate on empty string; wait
until real EOF. [ruby-dev:21969]
* io.c (argf_read): should adjust length to read, when length is
specified and read spans command line argument files.
Wed Dec 3 19:38:36 2003 Masatoshi SEKI <[email protected]>
* lib/drb/drb.rb: correct fcntl parameter. [ruby-dev:22120]
Wed Dec 3 13:49:07 2003 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk.rb: 'format'==>'Kernel.format' (avoid override trouble)
* ext/tk/lib/tkafter.rb: ditto.
* ext/tk/lib/tkcanvas.rb: ditto.
* ext/tk/lib/tkdialog.rb: ditto.
* ext/tk/lib/tktext.rb: ditto.
Wed Dec 3 13:28:13 2003 Nobuyoshi Nakada <[email protected]>
* Makefile.in (lex.c): try gperf first, and copy from the source
directory if failed. [ruby-dev:22123]
* ext/extmk.rb (MTIMES): let makefiles depend to mkmf.rb.
* lib/mkmf.rb (configuration): DLDFLAGS was duplicated.
Tue Dec 2 23:18:12 2003 Minero Aoki <[email protected]>
* lib/net/http.rb: wrote the warning about HTTP_PROXY environment
variable.
Tue Dec 2 21:31:42 2003 Nobuyoshi Nakada <[email protected]>
* bin/testrb: new test runner. [ruby-core:01845]
* lib/test/unit/autorunner.rb (Test::Unit::AutoRunner.run,
Test::Unit::AutoRunner#process_args): take test list to run and
options.
* lib/test/unit/autorunner.rb (Test::Unit::AutoRunner::RUNNERS,
Test::Unit::AutoRunner#run): should not exit inside a library,
just return the result instead.
* lib/test/unit.rb: ditto.
* test/runner.rb: exit with the test result.
Tue Dec 2 20:18:48 2003 Eric Sunshine <[email protected]>
* configure.in (AC_PROG_YACC): AC_DEFINE(OLD_YACC) if Yacc is found
instead of Bison or byacc.
* parse.y: If OLD_YACC is defined, ensure that YYMAXDEPTH is at least
10000 (Bison's default) since some old versions of Yacc define it as
low as 150 by default, which is too low for Ruby to parse some files,
such as date/format.rb. Among other issues, the parse problem causes
"make test" to fail.
Tue Dec 2 20:03:20 2003 Minero Aoki <[email protected]>
* test/fileutils/test_fileutils.rb: check if Pathnames are usable
for arguments.
Tue Dec 2 04:22:00 2003 Nathaniel Talbott <[email protected]>
* lib/test/unit/assertions.rb: fixed #assert_no_match message.
* test/testunit/test_assertions.rb: ditto.
Tue Dec 2 00:43:00 2003 why the lucky stiff <[email protected]>
* ext/syck/syck.c: string buffering bug. decrementing by full
max_size now. [ruby-core:01834]
Mon Dec 1 21:33:08 2003 Yukihiro Matsumoto <[email protected]>
* numeric.c (num_sadded): prohibit singleton method definition for
Numerics. fill yet another gap between Fixnum and Bignum.
Mon Dec 1 17:33:47 2003 Yukihiro Matsumoto <[email protected]>
* pack.c (htov16): converts endian using swap16. htov32(), hton16,
hton32 as well. [ruby-talk:85377]
* pack.c (swap16): swap 2 bytes no matter how big short is on the
platform. swap32() is also prepared.
* numeric.c (rb_num2int): returns long to preserve information.
rb_fix2int(), rb_num2uint(), rb_fix2uint() as well.
[ruby-talk:85377]
* numeric.c (rb_num2uint): should not check for value range if the
source value is negative.
Mon Dec 1 17:14:34 2003 Nobuyoshi Nakada <[email protected]>
* sample/optparse/opttest.rb: added.
Mon Dec 1 16:10:52 2003 Dave Thomas <[email protected]>
* lib/rdoc/rdoc.rb: (etc) initial merge into main tree.
Mon Dec 1 14:17:49 2003 Minero Aoki <[email protected]>
* lib/fileutils.rb (fu_each_src_dest0): call #to_str to allow
Pathname for arguments. [ruby-core:01795]
* test/fileutils/test_fileutils.rb: does much strict test on
"same" files detecting.
Mon Dec 1 09:28:14 2003 NAKAMURA Usaku <[email protected]>
* bcc32/Makefile.sub, win32/Makefile.sub, wince/Makefile.sub
(XCFLAGS): re-export $(XCFLAGS).
* bcc32/Makefile.sub, win32/Makefile.sub, wince/Makefile.sub
(ARCH_FLAG): export $(ARCH_FLAG) (perhaps empty value).
Mon Dec 1 01:03:27 2003 WATANABE Hirofumi <[email protected]>
* lib/mkmf.rb (TRY_LINK, link_command): added support for DLDFLAGS
and ARCH_FLAG. [ruby-dev:22085]
Sun Nov 30 20:18:07 2003 WATANABE Hirofumi <[email protected]>
* configure.in: keep ARCH_FLAG separate. export ARCH_FLAG.
[ruby-core:01819]
* Makefile.in: add ARCH_FLAG to CFLAGS.
* Makefile.in: add @CPPFLAGS@ to CPPFLAGS.
* lib/mkmf.rb (link_command, cc_command): use ARCH_FLAG.
* lib/mkmf.rb (configuration): add ARCH_FLAG to DLDFLAGS.
* Makefile.in: add ARCH_FLAG to DLDFLAGS.
* configure.in: should put getcwd in AC_CHECK_FUNCS, not
AC_REPLACE_FUNCS. [ruby-core:01826]
Sun Nov 30 18:22:48 2003 WATANABE Hirofumi <[email protected]>
* configure.in: do not override CCDLDFLAGS, LDFLAGS, XLDFLAGS,
DLDFLAGS and LDSHARED.
* configure.in: XCFLAGS for compiling ruby itself. ARCH_FLAG is
reflected in CFLAGS.
* lib/mkmf.rb: ditto. do not import XCFLAGS from config.status.
Sun Nov 30 17:37:36 2003 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk.rb: bug fix [ruby-talk:86746]
Sun Nov 30 13:02:00 2003 NAKAMURA, Hiroshi <[email protected]>
* lib/soap/encodingstyle/soapHandler.rb: refactoring - Simplifying
Conditional Expressions.
* lib/wsdl/soap/definitions.rb: refactoring - Move Method.
* test/xsd/{test_noencoding.rb,noencoding.xml}: new files. test for
encoding unspecified XML file parsing.
* test/wsdl/{test_fault.rb,map,datetime}: new files. test of
SOAPFault, dateTime and Apache's Map.
Sun Nov 30 09:35:14 2003 Nobuyoshi Nakada <[email protected]>
* string.c (rb_str_update): get rid of SEGV at just allocated String.
[ruby-core:01812]
Fri Nov 28 23:19:34 2003 Yukihiro Matsumoto <[email protected]>
* gc.c (gc_mark): explicitly check mark recursion levels, instead
of unreliable stack length.
Fri Nov 28 22:49:56 2003 Masatoshi SEKI <[email protected]>
* lib/rinda/rinda.rb: fix TupleSpaceProxy#read, read_all.
Fri Nov 28 21:44:40 2003 WATANABE Hirofumi <[email protected]>
* test/fileutils/test_fileutils.rb (test_ln_s): should be a file, not
a directory for FreeBSD.
Fri Nov 28 19:37:56 2003 Nobuyoshi Nakada <[email protected]>
* hash.c (env_has_value, env_index): must match exactly.
* test/ruby/test_env.rb (test_has_value, test_index): condition for
aboves.
Fri Nov 28 17:59:20 2003 NAKAMURA Usaku <[email protected]>
* test/ruby/test_env.rb: add tests for ENV.
Fri Nov 28 17:47:46 2003 Masatoshi SEKI <[email protected]>
* lib/drb/drb.rb (DRbMessage#load): rescue Errno::* and raise
DRbConnError.
Fri Nov 28 15:41:15 2003 Tanaka Akira <[email protected]>
* lib/pathname.rb (Pathname#realpath): obsolete the force_absolute
argument.
Fri Nov 28 14:41:52 2003 NAKAMURA, Hiroshi <[email protected]>
* lib/soap/streamHandler.rb: drop unused http parameters.
* lib/soap/encodingstyle/soapHandler.rb, lib/soap/mapping/factory.rb,
lib/soap/mapping/mapping.rb, lib/soap/mapping/registry.rb,
lib/wsdl/soap/complexType.rb: ApacheSOAP's map support was broken
under WSDL dynanic client environment. fixed.
* test/wsdl/raa/*: add tests.
* lib/xsd/datatypes.rb: dateTime precision bug fix (at least, I hope.)
bug of soap4r. XSDDateTimeImple.to_time passed a Float to
Time.local/Time.gm as an usec, and NUM2LONG(rb_num2long for Float)
causes rounding error.
* test/soap/test_basetype.rb, test/xsd/test_xsd.rb: add tests.
Fri Nov 28 04:15:24 2003 Nobuyoshi Nakada <[email protected]>
* eval.c (method_arity): used wrong Proc object. [ruby-talk:86504]
Fri Nov 28 00:47:29 2003 Nobuyoshi Nakada <[email protected]>
* eval.c (rb_f_exit), process.c (rb_f_exit_bang): treat true as
success, false as failure. [ruby-dev:22067]
* eval.c (rb_f_abort, rb_thread_switch), process.c (rb_f_system): use
ANSI macro instead of hard coded value.
* eval.c (rb_f_exit), process.c (rb_f_exit_bang): use VALUEs not but
TYPEs.
Thu Nov 27 22:05:48 2003 Akinori MUSHA <[email protected]>
* eval.c, gc.c: FreeBSD/ia64 currently does not have a way for a
process to get the base address for the RSE backing store, so
hardcode it for the moment.
[submitted by: Marcel Moolenaar <[email protected]>]
Thu Nov 27 17:36:42 2003 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tkafter.rb: bug fix on TkTimer#cancel_on_exception=(mode).
TkTimer#wait recieves the exception of the callback.
The exception is kept on @return_value.
Thu Nov 27 16:58:48 2003 WATANABE Hirofumi <[email protected]>
* win32/win32.c (rb_w32_stat): remove _fullpath() for NUL: device.
Wed Nov 26 15:38:47 2003 WATANABE Hirofumi <[email protected]>
* test/fileutils/test_fileutils.rb (test_ln_s): should take the
existing symbolic link for OpenBSD.
Wed Nov 26 04:48:42 2003 why the lucky stiff <[email protected]>
* ext/syck/token.c: removed YYTOKTMP references which
were causing buffer overflows on large block scalars,
comments, quoted scalars and plain scalars.
* ext/syck/rubyext.c: dynamic changing of buffer size.
* ext/syck/syck.h: default buffer size of 4k.
Wed Nov 26 00:55:30 2003 GOTOU Yuuzou <[email protected]>
* lib/webrick/httpresponse.rb: add HTTPResponse#keep_alive=.
* lib/webrick/httpserver.rb (HTTPServer#run): should pass the
request's keep_alive flag to the response.
Tue Nov 25 21:41:35 2003 NAKAMURA Usaku <[email protected]>
* defines.h (ENV_IGNORECASE): should define when DOSISH without
human68k. [ruby-dev:22047]
* hash.c (env_has_value, env_index): don't ignore case of value.
[ruby-dev:22048]
Tue Nov 25 21:39:37 2003 Yukihiro Matsumoto <[email protected]>
* file.c (path_check_1): honor sticky bits always.
[ruby-talk:86273]
Tue Nov 25 20:02:14 2003 Minero Aoki <[email protected]>
* test/fileutils/test_fileutils.rb: do test in more deep
directory.
* test/fileutils/test_nowrite.rb: ditto.
Tue Nov 25 19:04:23 2003 Tanaka Akira <[email protected]>
* lib/open-uri.rb (URI::Generic#find_proxy): ENV case sensitivity test
refined.
Tue Nov 25 18:13:30 2003 Minero Aoki <[email protected]>
* test/fileutils/test_fileutils.rb: chdir Dir.tmpdir before each
test. [ruby-dev:22045]
* test/fileutils/test_nowrite.rb: ditto.
Tue Nov 25 17:52:11 2003 Tanaka Akira <[email protected]>
* lib/open-uri.rb (URI::Generic#find_proxy): use http_proxy under CGI
if the environment variable is case sensitive.
Tue Nov 25 16:41:33 2003 NAKAMURA, Hiroshi <[email protected]>
* test/wsdl/multiplefault.wsdl, test/wsdl/test_multiplefault.rb:
removed. this test requires extra libraries in soap4r/1.5.*.
Tue Nov 25 16:24:42 2003 NAKAMURA, Hiroshi <[email protected]>
* lib/soap/**/*.rb, lib/wsdl/**/*.rb, lib/xsd/**/*.rb: changed license;
GPL2 -> Ruby's.
* lib/soap/rpc/driver.rb, lib/soap/wsdlDriver.rb,
lib/soap/streamHandler.rb: add interface to streamhandler.
* lib/soap/marshal.rb: raise error if parse fails.
* lib/soap/netHttpClient.rb: add https support. Patched by
Oliver M. Bolzer.
* lib/soap/netHttpClient.rb: dump HTTP response message body by itself.
* lib/soap/rpc/driver.rb, lib/soap/rpc/proxy.rb,
lib/soap/wsdlDriver.rb: add driver#mandatorycharset interface to foce
using charset for parsing response from buggy server.
* lib/soap/encodingstyle/soapHandler.rb: support Apache Axis's half
typed multi-ref array.
* lib/soap/mapping/factory.rb, lib/soap/mapping/registry.rb: map
SOAPStruct which has multi-accessors which name are the same, to an
array.
* lib/soap/rpc/element.rb: fixed illegal parameter order.
* lib/soap/rpc/element.rb: element name of response message could have
the name other than 'return'.
* lib/wsdl/operation.rb, lib/wsdl/operationBinding.rb,
lib/wsdl/soap/classDefCreator.rb, lib/wsdl/soap/methodDefCreator.rb,
lib/wsdl/soap/methodDefCreatorSupport.rb: WSDL/1.1 allows plural
fault definition in a operation. [ruby-talk:84948]
* test/wsdl/multiplefault.wsdl, test/wsdl/test_multiplefault.rb: add
test for above fix.
* lib/wsdl/soap/complexType.rb: support WSDL array definition with
maxOccures="unbound".
* lib/xsd/charset.rb: use cp932 under emx. Patched by
Siena. / SHINAGAWA, Norihide in [ruby-dev:21972]
* lib/xsd/xmlparser/parser.rb: set @charset nil by default. Nil means
'follow encoding declaration in XML'.
* sample/soap/digraph.rb, sample/wsdl/amazon/wsdlDriver.rb,
sample/wsdl/googleSearch/sampleClient.rb,
sample/wsdl/googleSearch/wsdlDriver.rb,
test/wsdl/test_emptycomplextype.rb,
test/wsdl/marshal/test_wsdlmarshal.rb,
test/xsd/test_xmlschemaparser.rb: use File.open(...) { |f| f.read }
instead of File.open(...).read. [ruby-dev:21964]
* test/wsdl/emptycomplextype.wsdl, test/wsdl/test_emptycomplextype.rb:
simplify the test case.
* test/wsdl/axisArray/*: add tests for axis's array encoding.
Tue Nov 25 16:15:29 2003 WATANABE Hirofumi <[email protected]>
* ruby.h: don't treat Cygwin as Windows.
Tue Nov 25 15:18:28 2003 Hidetoshi NAGAI <[email protected]>
* configure.in: change default value of --enable-pthread (default: no)
Tue Nov 25 07:31:16 2003 Nobuyoshi Nakada <[email protected]>
* parse.y (primary): allow newlines just before right argument
parenthesis. (ruby-bugs:PR#1221)
Mon Nov 24 23:32:06 2003 Tanaka Akira <[email protected]>
* lib/open-uri.rb (OpenURI.open_loop, URI::HTTP#proxy_open): use
catch/throw for redirection instead of exception.
(OpenURI.open_loop, OpenURI.redirectable?): restrict redirection.
Mon Nov 24 19:59:48 2003 Tanaka Akira <[email protected]>
* lib/open-uri.rb (URI::Generic#find_proxy): use CGI_HTTP_PROXY
instead of HTTP_PROXY in the CGI environment.
Mon Nov 24 19:32:55 2003 WATANABE Hirofumi <[email protected]>
* ext/etc/extconf.rb: check for pw_passwd in struct passwd and
gr_passwd in struct group for DJGPP.
* ext/etc/etc.c: ditto.
* ext/Setup.dj: support for curses, etc, zlib.
Mon Nov 24 17:00:00 2003 Tanaka Akira <[email protected]>
* lib/open-uri.rb: validate option names.
:content_length_proc and :progress_proc option implemented.
Mon Nov 24 14:53:10 2003 NAKAMURA Usaku <[email protected]>
* bcc32/Makefile.sub, win32/Makefile.sub, wince/Makefile.sub
(XCFLAGS): output empty value instead of `-DRUBY_EXPORT'.
Sat Nov 22 23:09:45 2003 WATANABE Hirofumi <[email protected]>
* configure.in: set enable_pthread to no on MinGW.
Sat Nov 22 22:56:20 2003 Hidetoshi NAGAI <[email protected]>
* configure.in: add --enable-pthread option (default: yes)
Sat Nov 22 22:48:46 2003 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk.rb: add Tk.grab_release and fix bug of TkComposite
* ext/tk/lib/tkafter.rb: bug fix of TkAfter#start
* ext/tk/sample/tkcombobox.rb: new sample script
* ext/tcltklib/tcltklib.c: add native thread check
Sat Nov 22 18:49:47 2003 NAKAMURA Usaku <[email protected]>
* ext/curses/curses.c (window_nodelay): nodelay() of NetBSD's
libcruses returns no value, just like keypad().
Sat Nov 22 17:36:36 2003 NAKAMURA Usaku <[email protected]>
* bcc32/Makefile.sub, win32/Makefile.sub, wince/Makefile.sub
(HAVE_GETCWD): output to config.h.
* bcc32/Makefile.sub, win32/Makefile.sub, wince/Makefile.sub
(XCFLAGS): output to config.status.
Sat Nov 22 13:10:10 2003 Minero Aoki <[email protected]>
* lib/fileutils.rb (have_st_ino?): djgpp has valid st_ino.
Sat Nov 22 11:28:48 2003 Yukihiro Matsumoto <[email protected]>
* gc.c (Init_stack): stack region is far smaller than usual if
pthread is used.
Sat Nov 22 07:30:00 2003 Nathaniel Talbott <[email protected]>
* lib/test/unit/util/backtracefilter.rb: fixed a bug that occurred
when an exception had no backtrace.
* test/testunit/util/test_backtracefilter.rb: ditto.
Fri Nov 21 16:44:18 2003 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tkentry.rb: fix the encoding trouble of percent
substitutions on validatecommand option of TkEntry widget
* ext/tk/lib/tk.rb: fix bug on {pack|grid}_propagate() method
Fri Nov 21 16:12:11 2003 Akinori MUSHA <[email protected]>
* ruby.1: Fix markups and grammar.
Fri Nov 21 14:49:42 2003 Minero Aoki <[email protected]>
* ruby.1: wrote about ruby related environment variables.
Fri Nov 21 12:28:03 2003 Yukihiro Matsumoto <[email protected]>
* marshal.c (w_extended): singleton methods should not be checked
when dumping via marshal_dump() or _dump(). [ruby-talk:85909]
Fri Nov 21 01:40:00 2003 Hidetoshi NAGAI <[email protected]>
* configure.in: check <pthread.h>
* ruby.h: include pthread.h if existence.
define is_ruby_native() macro when not HAVE_NATIVETHREAD
* eval.c: undef is_ruby_native() function when not HAVE_NATIVETHREAD
Fri Nov 21 00:43:00 2003 Nathaniel Talbott <[email protected]>
* lib/test/unit/assertions.rb: use #__send__ instead of #send.
* lib/test/unit/testcase.rb: ditto.
Thu Nov 20 19:19:22 2003 WATANABE Hirofumi <[email protected]>
* configure.in: don't find the Cygwin's pthread library on MinGW.
Thu Nov 20 19:15:50 2003 Minero Aoki <[email protected]>
* lib/fileutils.rb (have_st_ino?): emx (OS/2 with EMX) does not
have st_ino (always 0). [ruby-dev:21972]
* lib/fileutils.rb (rename_cannot_overwrite_file?): emx does not
allow overwriting files by rename(2).
* test/fileutils/test_fileutils.rb: windows? ->
have_drive_letter?, have_file_perm?
Thu Nov 20 17:50:58 2003 Hidetoshi NAGAI <[email protected]>
* ext/tk/sample/tkballoonhelp.rb: new sample script
* ext/tk/sample/tkmultilistbox.rb: ditto
* ext/tk/sample/tktextframe.rb: ditto
Thu Nov 20 13:37:34 2003 Hidetoshi NAGAI <[email protected]>
* ruby.h: define is_ruby_native_thread() for no native thread
environment
* eval.c: ditto
Thu Nov 20 12:42:47 2003 Hidetoshi NAGAI <[email protected]>
* configure.in: always check existence of the pthread library
* ruby.h: define macros for ruby's native thread check
* eval.c: add ruby's native thread check
* gc.c: ditto
Wed Nov 19 14:45:18 2003 Minero Aoki <[email protected]>
* lib/net/http.rb (to_ary): print more friendly warning message.
Wed Nov 19 14:32:08 2003 Minero Aoki <[email protected]>
* lib/fileutils.rb (fu_same?): add djgpp and wince.
* lib/fileutils.rb (cannot_overwrite_file?): add wince.
Wed Nov 19 11:04:47 2003 NAKAMURA Usaku <[email protected]>
* lib/fileutils.rb (cannot_overwrite_file?, have_st_ino?): bccwin32
is same as mswin32.
Wed Nov 19 07:54:00 2003 Nathaniel Talbott <[email protected]>
* lib/test/unit.rb: do not run tests if $! is set.
* lib/test/unit/assertionfailederror.rb: extend StandardError instead
Exception (irb catches the former but not the latter).
Tue Nov 18 23:31:36 2003 WATANABE Hirofumi <[email protected]>
* missing/memmove.c (memmove): take void *, not char *.