-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
6263 lines (3730 loc) · 201 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
Sun Feb 15 20:56:22 2004 Hirokazu Yamamoto <[email protected]>
* dir.c (push_braces): remove wrong const.
Sun Feb 15 20:41:15 2004 NAKAMURA, Hiroshi <[email protected]>
* sample/soap/calc/httpd.rb, sample/soap/exchange/httpd.rb,
sample/soap/sampleStruct/httpd.rb, sample/wsdl/googleSearch/httpd.rb:
use soap/property instead of getopts for configuring DocumentRoot
and port# of httpd. see samplehttpd.conf below.
* sample/soap/calc/samplehttpd.conf,
sample/soap/exchange/samplehttpd.conf,
sample/soap/sampleStruct/samplehttpd.conf,
sample/wsdl/googleSearch/samplehttpd.conf: added.
Sun Feb 15 19:13:33 2004 Masatoshi SEKI <[email protected]>
* lib/rinda/tuplespace.rb: read(tpl,0), raise RequestExpiredError
if not found.
Sun Feb 15 15:48:57 2004 Masaki Suketa <[email protected]>
* ext/win32ole/win32ole.c: add IDispatch wrapper in val2variant.
Thanks, arton.
Sun Feb 15 15:23:29 2004 Hirokazu Yamamoto <[email protected]>
* ruby.h, dir.c (rb_glob): add const.
Sun Feb 15 01:46:05 2004 GOTOU Yuuzou <[email protected]>
* lib/mkmf.rb: absolute path of ruby is assigned to $(RUBY).
[ruby-dev:22870]
Sat Feb 14 23:59:11 2004 Nobuyoshi Nakada <[email protected]>
* mkconfig.rb: use fileutils.rb instead of ftools.rb.
* bcc32/Makefile.sub, win32/Makefile.sub (config.h): define
STACK_GROW_DIRECTION.
* bcc32/Makefile.sub (config.h): add newer checks.
* wince/Makefile.sub (config.h): define NEED_IO_SEEK_BETWEEN_RW.
Sat Feb 14 23:26:27 2004 WATANABE Hirofumi <[email protected]>
* lib/un.rb: use OptionParser instead of getopts.
Sat Feb 14 11:28:14 2004 Masatoshi SEKI <[email protected]>
* sample/drb/*: import lib/drb/sample
Sat Feb 14 11:14:12 2004 Masatoshi SEKI <[email protected]>
* lib/drb/drb.rb: add pretty_print, thanks gotoken.
Fri Feb 13 21:51:00 2004 Gavin Sinclair <[email protected]>
* lib/fileutils.rb: slighly improved documentation (sync with 1.8)
Fri Feb 13 19:57:01 2004 Kouhei Sutou <[email protected]>
* test/rss/test_trackback.rb: added tests for TrackBack with RSS
2.0.
* test/rss/common.rb: added methods make RSS 2.0.
* lib/rss/trackback.rb: TrackBack API is decided.
* lib/rss/rss.rb: RSS::VERSION 0.0.7 -> 0.0.8.
* lib/rss/parser.rb, lib/rss/rss.rb: replaced $DEBUG by RSS::DEBUG.
* lib/rss/2.0.rb: removed RSS 2.0 URI. Because RSS 2.0 doesn't
have URI.
Fri Feb 13 14:41:00 2004 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk.rb: en-bugged at last commit (Feb 11 23:24:22 2004)
Fri Feb 13 12:26:37 2004 Minero Aoki <[email protected]>
* test/fileutils/test_fileutils.rb: rescue SystemCallError instead
of EINVAL. File.link may raise EACCES on network file systems.
Fri Feb 13 05:18:58 2004 Minero Aoki <[email protected]>
* test/fileutils/test_fileutils.rb: File.link raises EINVAL on
Win9x. [ruby-dev:22713]
Thu Feb 12 21:49:00 2004 Gavin Sinclair <[email protected]>
* lib/ftools.rb: documented
Thu Feb 12 21:19:00 2004 Gavin Sinclair <[email protected]>
* lib/base64.rb: added and tidied documentation
Thu Feb 12 20:45:01 2004 Minero Aoki <[email protected]>
* lib/net/protocol.rb (WriteAdapater#puts): must append "\n" to
the string, don't prepend. (ruby-bugs:PR#1280)
Thu Feb 12 20:31:43 2004 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb (create_tmpsrc): cpp32 of Borland C++ ignores #error
directives in DOS line-ending files at all.
Thu Feb 12 15:23:20 2004 Nobuyoshi Nakada <[email protected]>
* parse.y (rparen): ignore preceding newlines to right parentheses.
(ruby-bugs:PR#1221) [ruby-dev:22858]
Thu Feb 12 14:17:43 2004 WATANABE Hirofumi <[email protected]>
* configure.in: set ac_cv_func_link to yes to enable link() on MinGW.
[ruby-dev:22241]
Thu Feb 12 13:32:49 2004 NAKAMURA Usaku <[email protected]>
* win32/win32.c (link): raise NotImplementedError on Win9X.
contributed by Tietew. [ruby-dev:22713]
* win32/win32.c, win32/win32.h (link): add const.
Thu Feb 12 09:56:19 2004 Nobuyoshi Nakada <[email protected]>
* ext/tk/lib/tk.rb (TkComm::tk_split_list): suppress a warning.
Thu Feb 12 02:23:56 2004 Tanaka Akira <[email protected]>
* lib/pathname.rb: use assert_raise instead of assert_raises.
* lib/pp.rb: ditto.
* lib/time.rb: ditto.
* lib/tsort.rb: ditto.
use TSortHash and TSortArray instead of Hash and Array in test.
Wed Feb 11 23:24:22 2004 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk.rb: properly treat a Tcl/Tk's string with escaping
special characters.
Tue Feb 10 20:49:07 2004 Nobuyoshi Nakada <[email protected]>
* eval.c (method_proc): return bound Proc object. [ruby-dev:22854]
* eval.c (rb_mod_define_method): bind method body itself for Method
object.
* node.h (NODE_DMETHOD): deprecated.
* object.c (rb_class_inherited_p): export.
Tue Feb 10 16:43:50 2004 Nobuyoshi Nakada <[email protected]>
* eval.c (umethod_bind): purge unused check. [ruby-dev:22850]
Tue Feb 10 14:33:08 2004 NAKAMURA Usaku <[email protected]>
* string.c (rb_str_match): raise TypeError when both arguments are
strings. [ruby-dev:22851]
* string.c (rb_str_match2): removed.
* Makefile.in, bcc32/Makefile.sub, win32/Makefile.sub,
wince/Makefile.sub (string.c): now not depend on version.h.
Mon Feb 9 17:46:07 2004 Nobuyoshi Nakada <[email protected]>
* Makefile.in, bcc32/Makefile.sub, win32/Makefile.sub, configure.in,
runruby.rb: run rdoc, test and so on with compiled extension
libraries. [ruby-dev:22688]
* ext/extmk.rb, lib/mkmf.rb: make extension libraries in separated
directory, similar to the actual directory structure.
* lib/fileutils.rb (FileUtils.copy_file): use the mode of the original
file to create new file.
* lib/rdoc/ri/ri_paths.rb (RI::Paths::SYSDIR): get rid of unexpected
influence by envirionment variable.
* bcc32/configure.bat, win32/configure.bat: add install-doc options.
* win32/win32.c, win32/win32.h (rb_w32_fstat): fix Borland C runtime
bug which returns wrong mode. [ruby-dev:22846]
Mon Feb 9 16:30:12 2004 Nobuyoshi Nakada <[email protected]>
* process.c (detach_process_watcher): return the last status.
[ruby-dev:22841]
Sun Feb 8 16:46:08 2004 Nobuyoshi Nakada <[email protected]>
* lib/pp.rb (PP::PPMethods::object_address_group): suppress negative
sign for higher heap areas.
Sun Feb 8 16:18:27 2004 akira yamada <[email protected]>
* test/yaml/test_yaml.rb (YAML_Unit_Tests::test_range_cycle):
added tests.
Sun Feb 8 15:51:57 2004 akira yamada <[email protected]>
* test/ruby/test_file.rb (TestFile::test_fnmatch): added tests for
File.fnmatch. [ruby-dev:22815][ruby-dev:22819]
Sun Feb 8 15:41:45 2004 akira yamada <[email protected]>
* test/yaml/test_yaml.rb (YAML_Unit_Tests::test_range_cycle):
added tests. [ruby-core:02306] [ruby-core:02311]
Sun Feb 8 14:24:35 2004 Minero Aoki <[email protected]>
* lib/net/http.rb (HTTP#request): should not overwrite Connection
header. (ruby-bugs:PR#1274)
Sat Feb 8 10:11:21 2004 Hirokazu Yamamoto <[email protected]>
* dir.c (glob_helper): Dir.glob('**/') did not work. [ruby-dev:22832]
Sat Feb 8 00:29:26 2004 Hirokazu Yamamoto <[email protected]>
* dir.c (fnmatch):
File.fnmatch('*?', 'a') should return true. [ruby-dev:22815]
File.fnmatch('\[1\]' , '[1]') should return true. [ruby-dev:22819]
* dir.c
Did some styles (no change to behavior)
Sat Feb 7 19:56:11 2004 Nobuyoshi Nakada <[email protected]>
* lib/irb/init.rb (IRB.rc_files): yield possible rc file names.
* lib/irb/input-method.rb (IRB::ReadlineInputMethod::initialize):
load and save history automatically. [ruby-core:02352]
Fri Feb 6 22:48:16 2004 Dave Thomas <[email protected]>
* lib/rdoc/generators/html_generator.rb (gen_url): Support
https in RDoc hyperlinks
Fri Feb 6 22:41:22 2004 NAKAMURA, Hiroshi <[email protected]>
* lib/pp.rb (PPInspectTest#test_to_s_with_iv): rollback the previous
commit. [ruby-dev:22813]
Fri Feb 6 22:22:50 2004 NAKAMURA, Hiroshi <[email protected]>
* lib/pp.rb (PPInspectTest#test_to_s_with_iv): remove instance
variable which is defined in the test.
Fri Feb 6 18:54:18 2004 akira yamada <[email protected]>
* test/ruby/test_proc.rb (TestProc::test_eq): added a
test. [ruby-dev:22599]
Fri Feb 6 18:26:00 2004 akira yamada <[email protected]>
* test/ruby/test_proc.rb (TestProc::test_eq): added tests for
Proc#==. [ruby-dev:22592], [ruby-dev:22601]
Fri Feb 6 10:12:06 2004 Nobuyoshi Nakada <[email protected]>
* ext/socket/socket.c (bsock_do_not_reverse_lookup): control reverse
lookup for every instance. [ruby-core:02346]
Fri Feb 6 09:15:11 2004 Nobuyoshi Nakada <[email protected]>
* lib/irb/extend-command.rb: add irb_help command. [ruby-talk:91610]
* lib/irb/cmd/help.rb (IRB::ExtendCommand::Help): show RDoc.
Fri Feb 6 00:48:37 2004 Tanaka Akira <[email protected]>
* lib/prettyprint.rb (PrettyPrint#first?): obsoleted.
Thu Feb 5 23:56:55 2004 Tanaka Akira <[email protected]>
* lib/prettyprint.rb (PrettyPrint#seplist): added.
* lib/pp.rb (PPMethods#pp_object): use seplist.
(PPMethods#pp_hash): ditto.
(Array#pretty_print): ditto.
(Struct#pretty_print): ditto.
(MatchData#pretty_print): ditto.
* lib/set.rb (Set#pretty_print): use seplist.
Wed Feb 4 22:39:46 2004 Nobuyoshi Nakada <[email protected]>
* file.c (rb_stat_mode): should not sign-expand, so backout.
Wed Feb 4 02:12:06 2004 Tanaka Akira <[email protected]>
* file.c (test_l): fix wrong method name in document.
(test_S): ditto.
(test_b): ditto.
(test_c): ditto.
(test_suid): ditto.
(test_sgid): ditto.
(test_sticky): ditto.
Tue Feb 3 22:36:25 2004 Kouhei Sutou <[email protected]>
* lib/rss/2.0.rb, lib/rss/content.rb, lib/rss/dublincore.rb,
lib/rss/rss.rb, lib/rss/syndication.rb: removed warnings.
* lib/rss/converter.rb: removed handling load error of nkf.
* test/rss/test_syndication.rb, test/rss/test_trackback.rb,
test/rss/test_dublincore.rb, test/rss/test_content.rb: replaced
'require "rss/parser"' by 'require "rss/1.0"'.
* test/rss/test_parser.rb, test/rss/test_accessor.rb: removed
'require "rss/parser"'.
Tue Feb 3 11:23:17 2004 Nobuyoshi Nakada <[email protected]>
* parse.y (reduce_nodes): remove tail returns. [ruby-talk:90934]
Tue Feb 3 08:04:57 2004 Tanaka Akira <[email protected]>
* lib/pp.rb (Struct#pretty_print_cycle): follow 1.8 style.
Mon Feb 2 22:06:31 2004 Nobuyoshi Nakada <[email protected]>
* parse.y (block_append, new_evstr, void_expr0): remove no longer used
labels.
Mon Feb 2 18:45:50 2004 WATANABE Hirofumi <[email protected]>
* dln.c (dln_load): don't specify RTLD_GLOBAL on Interix,
because it caused SEGV when running runner.rb.
Mon Feb 2 01:54:00 2004 Tanaka Akira <[email protected]>
* lib/pp.rb (Struct#pretty_print): make it 1.8 style.
(Numeric#pretty_print, FalseClass#pretty_print)
(TrueClass#pretty_print, Module#pretty_print): fix pp for objects
with instance variables. [ruby-talk:91157]
* lib/open-uri.rb (URI::Generic#find_proxy): return nil on loopback
address.
* lib/resolv-replace.rb (BasicSocket#send): don't replace because
it has no hostname argument.
(IPSocket.getaddress): raise SocketError instead of
Resolv::ResolvError for errors.
(TCPSocket#initialize, UDPSocket#bind, UDPSocket#connect)
(SOCKSSocket#initialize): use IPSocket.getaddress instead of
Resolv.getaddress.
(UDPSocket#send): recognize 3 arguments form. try all addresses on
4 arguments form.
Sun Feb 1 23:00:00 2004 Shigeo Kobayashi <[email protected]>
* ext/bigdecimal.c: Bug in BigDecimal("1e#{n}").add BigDecimal('.5'),n)
reported and fixed by Javier Goizueta.
Sun Feb 1 18:21:00 2004 Gavin Sinclair <[email protected]>
From ruby_1_8 branch:
* lib/test/unit.rb: rearranged documentation for RDoc's sake.
* lib/matrix.rb: improved documentation.
* lib/net/http.rb: slight documentation formatting improvement.
Sun Feb 1 05:30:06 2004 Tanaka Akira <[email protected]>
* lib/open-uri.rb (URI::Generic#find_proxy): warn HTTP_PROXY.
raise an errror on non-http proxy URI.
(OpenURI::Buffer#<<): make a tempfile binmode. [ruby-talk:90792]
Sun Feb 1 00:57:41 2004 Kouhei Sutou <[email protected]>
* lib/rss/parser.rb (RSS::Parser): added @@default_parser. Used
XML parser became selectable.
* test/rss/test_parser.rb: added tests for
RSS::Parser.default_parser.
Sat Jan 31 02:28:15 2004 WATANABE Hirofumi <[email protected]>
* configure.in (RPATHFLAG): set to -Wl,-R like NetBSD on Interix.
Sat Jan 31 01:09:41 2004 NAKAMURA, Hiroshi <[email protected]>
* lib/logger.rb: leading 0 padding of timestamp usec part.
Fri Jan 30 18:53:23 2004 Yukihiro Matsumoto <[email protected]>
* re.c (KR_REHASH): wrong hash value on sizeof(long) > sizeof(int).
Thu Jan 29 23:11:57 2004 WATANABE Hirofumi <[email protected]>
* configure.in (DLEXT2): removed. Ruby does not treat
".dll" as a extention library anymore.
* bcc32/Makefile.sub, win32/Makefile.sub, wince/Makefile.sub (DLEXT2):
ditto.
* util.c (mblen): fix overrun. [ruby-dev:22672]
Thu Jan 29 22:41:53 2004 Dave Thomas <[email protected]>
* lib/rdoc/generators/html_generator.rb: Allow 'link:' in Tidylinks.
THis means you can write "see f1[link:files/f1_rb.html]".
Thu Jan 29 22:24:47 2004 NAKAMURA, Hiroshi <[email protected]>
* sample/openssl/gen_csr.rb: follow OpenSSL::X509::Name change.
ASN.1 type of subject DN elements were wrong.
Thu Jan 29 22:19:51 2004 NAKAMURA, Hiroshi <[email protected]>
* test/*: remove $: trick. [ruby-dev:22763] use test/runner.rb to
run test.
Thu Jan 29 19:28:16 2004 Minero Aoki <[email protected]>
* lib/net/http.rb (Request#initialize): reject only when a path is
empty. [ruby-dev:22771]
Thu Jan 29 18:54:08 2004 H.Yamamoto <[email protected]>.
* dir.c (glob_helper): infinite loop bug in win32 code.
[ruby-dev:22770]
Thu Jan 29 17:03:49 2004 Yukihiro Matsumoto <[email protected]>
* dir.c: merge tuning from H.Yamamoto <[email protected]>.
[ruby-dev:22761]
Thu Jan 29 11:32:14 2004 NAKAMURA, Hiroshi <[email protected]>
* test/rss/test_*: do $: trick while searching a module in the current
directory.
* test/xsd/test_xmlschemaparser.rb, test/wsdl/test_emptycomplextype.rb,
test/soap/helloworld/test_helloworld.rb,
test/soap/calc/{test_calc.rb,test_calc2.rb}: do File.expand_path
before using __FILE__.
* test/yaml/test_yaml.rb: assert_equals -> assert_equal.
Thu Jan 29 01:56:02 2004 why the lucky stiff <[email protected]>
* ext/syck/rubyext.c: usec round-tripping skew. [ruby-core:2305]
* lib/yaml/rubytypes.rb: character Range now round-trips. [ruby-core:2306]
* test/yaml/test_yaml.rb: add Time and Range tests.
Thu Jan 29 00:00:46 2004 Kouhei Sutou <[email protected]>
* lib/rss: rss/parser.rb is always required.
Wed Jan 28 15:09:14 2004 Nobuyoshi Nakada <[email protected]>
* test/rss/*.rb: remove "test/" prefix.
Wed Jan 28 13:07:02 2004 Nobuyoshi Nakada <[email protected]>
* ext/iconv/extconf.rb: include iconv.h for libiconv. [ruby-dev:22715]
Wed Jan 28 12:43:07 2004 Yukihiro Matsumoto <[email protected]>
* lib/rss: rss library imported. [ruby-dev:22726]
Tue Jan 27 15:00:14 2004 Yukihiro Matsumoto <[email protected]>
* misc/ruby-mode.el: better support for general delimited
strings. [ruby-dev:22695]
Tue Jan 27 11:04:40 2004 FUKUMOTO Atsushi <[email protected]>
* ext/socket/socket.c (s_recvfrom): sending length should be an
invariant while retrying on EAGAIN. [ruby-talk:89962]
Tue Jan 27 10:31:28 2004 NAKAMURA Usaku <[email protected]>
* ext/win32ole/win32ole.c (set_argv): fix condition.
Tue Jan 27 02:26:31 2004 GOTOU Yuuzou <[email protected]>
* lib/webrick/httputils.rb (WEBrick:HTTPUtils::parse_header):
refine regex for header-name.
Mon Jan 26 22:53:04 2004 Dave Thomas <[email protected]>
* io.c: Remove documentation references to $defout.
Mon Jan 26 14:41:46 2004 Yukihiro Matsumoto <[email protected]>
* lib/weakref.rb (WeakRef::initialize): set up @__id before
calling "super".
* lib/delegate.rb (Delegator::initialize): preserve
singleton_method_added method [ruby-dev:22685]
* lib/delegate.rb (Delegator::initialize): use Kernel::raise
instead of mere raise. [ruby-dev:22681]
Mon Jan 26 12:45:23 2004 Hidetoshi NAGAI <[email protected]>
* ext/tcltklib/tcltklib.c: define CONST84 when TCL_MAJOR_VERSION == 7
Mon Jan 26 11:30:58 2004 Nobuyoshi Nakada <[email protected]>
* ext/extmk.rb: Makefiles should depend on also rbconfig.rb.
(ruby-bugs:PR#1256)
* ext/win32ole/win32ole.c (set_argv): set real arguments to
WIN32OLE::ARGV. [ruby-list:39073]
Sun Jan 25 18:25:26 2004 GOTOU Yuuzou <[email protected]>
* ext/openssl/ossl_x509name.c (ossl_x509name_add_entry): third
argument become optional.
* ext/openssl/ossl_x509name.c (ossl_x509name_initialize): ditto.
* ext/openssl/ossl_x509name.c (Init_x509name): emailAddress and
domainComponent should be IA5String.
Sun Jan 25 01:45:38 2004 GOTOU Yuuzou <[email protected]>
* lib/webrick/httpserver.rb (WEBrick::HTTPServer#run): support
virtual host.
* lib/webrick/httpserver.rb (WEBrick::HTTPServer#virtual_host): add
new method to register virtual hosting server.
* lib/webrick/httpserver.rb (WEBrick::HTTPServer#lookup_server): add
new method to lookup virtual hosting server.
Sat Jan 24 13:06:26 2004 GOTOU Yuuzou <[email protected]>
* ext/openssl/ossl_x509hame.c (ossl_x509name_initialize): change
second argument. it expected to be a Hash not an Integer.
* ext/openssl/ossl_x509name.c (ossl_x509name_add_entry): add new
function for OpenSSL::X509::Name#add_entry.
* ext/openssl/ossl_x509name.c (Init_ossl_x509name): add constants
OpenSSL::X509::Name::DEFAULT_OBJECT_TYPE and OBJECT_TYPE_TEMPLATE.
* ext/openssl/lib/openssl/x509.rb (OpenSSL::X509::Name#initialize):
second argument takes OBJECT_TYPE_TEMPLATE by default.
Fri Jan 23 02:26:30 2004 Yukihiro Matsumoto <[email protected]>
* pack.c (num2i32): pack should not raise RangeError.
[ruby-dev:22654]
* pack.c (pack_pack): do not auto convert nil to zero.
Thu Jan 22 22:54:53 2004 Shugo Maeda <[email protected]>
* lib/net/imap.rb (BEG_REGEXP): allow 8-bit characters in quoted
strings for Novell GroupWise Internet Agent.
* lib/net/imap.rb (DATA_REGEXP): ditto.
Thu Jan 22 18:35:49 2004 WATANABE Hirofumi <[email protected]>
* lib/e2mmap.rb (VERSION): remove unnecessary version checking.
Thu Jan 22 16:21:02 2004 Nobuyoshi Nakada <[email protected]>
* parse.y (string_content): reset lexical states at the beginning of
string contents. [ruby-list:39061]
Thu Jan 22 08:08:50 2004 Yukihiro Matsumoto <[email protected]>
* parse.y (opt_rescue): use NODE_ERRINFO() instead of
NODE_GVAR("$!"), to avoid confusion from variable aliasing.
[ruby-talk:90074]
* version.c (Init_version): remove obsolete constants VERSION
etc. [ruby-dev:22643]
Thu Jan 22 01:46:32 2004 Yukihiro Matsumoto <[email protected]>
* parse.y (newline_node): do not use NODE_NEWLINE node anymore,
use NEWLINE flag instead.
Thu Jan 22 01:12:12 2004 Siena. <[email protected]>
* missing/os2.c (chdir, getcwd):
use _chdir2 and _getcwd2 supporting multiple drives in OS/2 with EMX.
Thu Jan 22 00:33:52 2004 Siena. <[email protected]>
* configure.in: check availability of link(). [ruby-dev:22237]
* file.c (rb_file_s_link): raise an exception when link() is unavailable.
* missing/os2.c (link): removed. File#link isn't supported.
* bcc32/Makefile.sub: define HAVE_LINK to enable link(). [ruby-dev:22241]
* win32/Makefile.sub: ditto.
Thu Jan 22 00:26:25 2004 Siena. <[email protected]>
* ChangeLog: typo: RUBY_MBCHAR_MAX was RUBY_MBCHAR_MAXSIZE.
Thu Jan 22 00:12:51 2004 Siena. <[email protected]>
* defines.h: define RUBY_MBCHAR_MAX instead of MB_CUR_MAX.
* dir.c (Next, emx_mblen): use RUBY_MBCHAR_MAX for mblen().
* file.c (CharNext): ditto.
* ruby.c (translate_char): ditto.
* util.c (__crt0_glob_function): ditto.
Thu Jan 22 00:10:01 2004 Dave Thomas <[email protected]>
* lib/base64.rb: :nodoc: the Deprecated module
Wed Jan 21 23:52:39 2004 WATANABE Hirofumi <[email protected]>
* configure.in: Interix(SFU) support.
Wed Jan 21 23:03:45 2004 Masatoshi SEKI <[email protected]>
* lib/drb/drb.rb: remove O_NONBLOCK, thanks \ay
* lib/drb/extserv.rb: typo
Wed Jan 21 17:57:56 2004 Shugo Maeda <[email protected]>
* lib/net/imap.rb (envelope): allow NIL.
* lib/net/imap.rb (body): ditto.
* lib/net/imap.rb (number): ditto.
* lib/net/imap.rb (ensure_nz_number): show a detailed error
message.
Wed Jan 21 16:44:15 2004 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb (merge_libs): squeeze successive same libraries.
[ruby-dev:22652]
Wed Jan 21 16:10:36 2004 Nobuyoshi Nakada <[email protected]>
* lib/base64.rb: enclosed in a module. [ruby-core:02285]
Wed Jan 21 16:01:26 2004 Nobuyoshi Nakada <[email protected]>
* ext/digest/rmd160/extconf.rb: have_library appends found library.
Wed Jan 21 11:36:00 2004 Yukihiro Matsumoto <[email protected]>
* ext/socket/socket.c (sock_gethostbyname): returns host if
ai_canonname is NULL. (ruby-bugs PR#1243)
* parse.y (block_append): update nd_end for "real" head node.
[ruby-list:39058]
Tue Jan 20 14:48:28 2004 GOTOU Yuuzou <[email protected]>
* ext/openssl/extconf.rb: should check <openssl/conf_api.h> instead
of OPENSSL_VERSION_NUMBER. [ruby-list:39056]
Tue Jan 20 14:43:17 2004 Dave Thomas <[email protected]>
* lib/base64.rb: Add RDoc
Tue Jan 20 14:25:51 2004 Dave Thomas <[email protected]>
* lib/abbrev.rb: Add RDoc
Tue Jan 20 13:22:39 2004 Dave Thomas <[email protected]>
* lib/rdoc/generators/html_generator.rb: Document aliases at
top-most level.
* lib/English.rb: Document English.rb.
Tue Jan 20 04:41:58 2004 Nobuyoshi Nakada <[email protected]>
* test/ruby/test_marshal.rb (MarshalTestLib::test_exception): test
for [ruby-dev:22604].
* test/ruby/test_marshal.rb (MarshalTestLibtest_singleton): test
for [ruby-dev:22588].
Tue Jan 20 02:38:13 2004 Yukihiro Matsumoto <[email protected]>
* marshal.c (w_class): should not dump singleton class.
[ruby-dev:22631]
Tue Jan 20 02:49:22 2004 GOTOU Yuuzou <[email protected]>
* ext/openssl/extconf.rb: add check for OpenSSL version.
[ruby-list:39054]
Mon Jan 19 23:56:20 2004 Nobuyoshi Nakada <[email protected]>
* error.c (name_err_mesg_to_str): inverted condition for result of
inspection. [ruby-dev:22628]
Mon Jan 19 22:24:28 2004 WATANABE Hirofumi <[email protected]>
* sample/exyacc.rb: escape '}' to avoid warning.
* lib/rdoc/parsers/parse_c.rb: escape '{' and '}' to avoid warnings.
Mon Jan 19 21:28:06 2004 Nobuyoshi Nakada <[email protected]>
* ext/digest/defs.h, win32/win3.c, win32/win32.h, file.c: remove
useless casts for Borland C.
Mon Jan 19 17:39:38 2004 Nobuyoshi Nakada <[email protected]>
* error.c (NameError::message): internal use only.
* eval.c (rb_method_missing): use hidden constant.
Mon Jan 19 16:30:53 2004 akira yamada <[email protected]>
* test/ruby/test_time.rb: added tests for [ruby-dev:22614] and
[ruby-dev:22617].
Mon Jan 19 13:09:21 2004 NAKAMURA Usaku <[email protected]>
* ext/extmk.rb, win32/Makefile.sub, win32/configure.bat,
win32/setup.mak: --with-static-linked-ext support on mswin32.
Mon Jan 19 06:49:07 2004 Tadayoshi Funaba <[email protected]>
* lib/date.rb: zone was wrong when it was behind UTC.
Thanks Mark J. Reed.
* lib/date/format.rb: %z is now always replaced by four digits
with a leading plus or minus sign.
* sample/cal.rb: added a class, anyway.
Mon Jan 19 01:08:39 2004 Yukihiro Matsumoto <[email protected]>
* variable.c (rb_set_class_path): do not set path if
* lib/cgi.rb (CGI::QueryExtension): give extended string, not a
delegater object.
Sun Jan 18 23:59:44 2004 Nobuyoshi Nakada <[email protected]>
* ext/iconv/charset_alias.rb: prefer us_EN locale encodings or
former. [ruby-dev:22609]
* ext/iconv/iconv.c (iconv_create): raise InvalidEncoding
exception when EINVAL.
Sun Jan 18 23:16:34 2004 Nobuyoshi Nakada <[email protected]>
* class.c, error.c, file.c, io.c, numeric.c, object.c, re.c, struct.c,
time.c: marked init_copy functions nodoc.
Sun Jan 18 20:47:35 2004 WATANABE Hirofumi <[email protected]>
* ruby.c: use translate_char() on Cygwin.
Sun Jan 18 20:00:16 2004 NAKAMURA, Hiroshi <[email protected]>
* lib/soap/wsdlDriver.rb, lib/wsdl/soap/operation.rb: add support of
"parts" attribute of soap:body element in WSDL.
* lib/wsdl/xmlSchema/schema.rb: friendly warning message for
simpleType element which is not supported for now.
* test/wsdl/soap/{soapbodyparts.wsdl,test_soapbodyparts.wsdl}: new
files.
Sun Jan 18 16:46:48 2004 Nobuyoshi Nakada <[email protected]>
* time.c (time_overflow_p): should return results. [ruby-dev:22614]
Sun Jan 18 12:07:24 2004 Siena. <[email protected]>
* test/ruby/test_time.rb: new test case to test Time#[+-].
* time.c (time_plus, time_minus): fix RangeError for a negative
argument in environments whose time_t is unsigned. [ruby-dev:22608]
Sun Jan 18 02:33:26 2004 WATANABE Hirofumi <[email protected]>
* defines.h (_WIN32): undef _WIN32 on Cygwin before defining DOSISH.
Sun Jan 18 00:23:55 2004 Nobuyoshi Nakada <[email protected]>
* marshal.c (class2path): check anonymous class/module before
checking referable, and allow singleton classes.
Sat Jan 17 23:58:51 2004 Nobuyoshi Nakada <[email protected]>
* error.c (NameError::Message): new class for lazy evaluation of
message to ensure replaced before marshalling. [ruby-dev:22604]
* eval.c (rb_method_missing): use NameError::Message.
Sat Jan 17 21:49:50 2004 NAKAMURA Usaku <[email protected]>
* lib/time.rb (test_rfc2822, test_rfc3339, test_encode_xmlschema):
should not expect that all platforms handle negative time_t value.
Fri Jan 16 23:53:09 2004 Nobuyoshi Nakada <[email protected]>
* eval.c (proc_eq): compare also arguments and environment
(including local variables). [ruby-dev:22590]
Fri Jan 16 14:33:35 2004 Nobuyoshi Nakada <[email protected]>
* marshal.c (class2path): get class path and check referable.
[ruby-dev:22588]
Thu Jan 15 12:58:26 2004 Nobuyoshi Nakada <[email protected]>
* io.c (argf_read): do not append EOF. (ruby-bugs-ja:PR#585)
* io.c (rb_io_fwrite): ad-hockery hack to get rid of HP-UX stdio
weird behavior. [ruby-dev:22424]
Wed Jan 14 21:13:06 2004 Nobuyoshi Nakada <[email protected]>
* test/inlinetest.rb (InlineTest::eval_part): eval under the top
level environment.
Wed Jan 14 17:54:17 2004 Nobuyoshi Nakada <[email protected]>
* test/inlinetest.rb (InlineTest::loadtest): require instead of
load, to get rid of multiple loading.
Wed Jan 14 13:30:52 2004 Nobuyoshi Nakada <[email protected]>
* ext/iconv/extconf.rb: wrapper iconv.rb is dependent on platform.
Wed Jan 14 09:32:02 2004 NAKAMURA Usaku <[email protected]>
* MANIFEST: add test/net/test_httpheader.rb. (commit miss?)
Wed Jan 14 00:58:35 2004 Yukihiro Matsumoto <[email protected]>
* eval.c (Init_Proc): move SystemStackError from under
StandardError to Exception. [ruby-talk:89782]
Tue Jan 13 18:03:02 2004 Ian Macdonald <[email protected]>
* file.c (rb_stat_wr, rb_stat_ww): New functions
implementing new methods (File::Stat#world_readable?,
File::Stat#world_writable?).
Tue Jan 13 16:53:25 2004 why the lucky stiff <[email protected]>
* ext/syck/rubyext.c: omission of Date library code caused
test suite failure. [ruby-core:2251]
Tue Jan 13 16:50:03 2004 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk.rb: use $0 as the default application class name.
Tue Jan 13 14:48:00 2004 Ian Macdonald <[email protected]>
* lib/pathname.rb: New methods (Pathname#world_readable?,
Pathname#world_writable?).
Tue Jan 13 14:48:01 2004 Yukihiro Matsumoto <[email protected]>
* parse.y (primary): allow no "when" case. [ruby-dev:22578]
* ruby.h (rb_class_of): reduce branch. [ruby-dev:22577]
* ruby.h (rb_type): ditto.
Tue Jan 13 14:26:59 2004 Kazuhiro NISHIYAMA <[email protected]>
* lib/test/unit/ui/testrunnerutilities.rb (TestRunnerUtilities):
moved run method which allows output level. [ruby-dev:22554]
Tue Jan 13 13:04:24 2004 NAKAMURA, Hiroshi <[email protected]>
* test/test_*.rb: Pathname#parent -> Pathname#dirname.
Tue Jan 13 11:38:58 2004 Nobuyoshi Nakada <[email protected]>
* test/yaml/test_yaml.rb (YAML_Unit_Tests::test_spec_type_{int,float}):
fix syntax error.
Tue Jan 13 07:52:40 2004 why the lucky stiff <[email protected]>
* ext/syck/bytecode.c: turn off default implicit typing.
* ext/syck/implicit.c: detect base60 integers.
* ext/syck/rubyext.c: handle base60, as well as hex and octal
with commas. implicit typing of ruby symbols.
* test/yaml/test_yaml.rb: add test.
Tue Jan 13 04:29:52 2004 Dave Thomas <[email protected]>
* lib/rdoc/ri/ri_driver.rb (RiDriver::report_method_stuff):
Show fully-qualified class names in class list.
Tue Jan 13 01:24:17 2004 Yukihiro Matsumoto <[email protected]>
* file.c (test_wr): Rdoc fix. [ruby-core:02225]
Tue Jan 13 01:04:37 2004 Dave Thomas <[email protected]>
* lib/rdoc/ri/ri_paths.rb (RI::Paths): First attempt at
incorporating DESTDIR in the rdoc installation.
Mon Jan 12 23:26:21 2004 Nobuyoshi Nakada <[email protected]>
* parse.y (primary): fix position after FCALL. [ruby-dev:22574]
Mon Jan 12 18:00:11 2004 Ian Macdonald <[email protected]>
* file.c (test_wr, test_ww): New functions implementing new
methods (File::world_readable?, File::world_writable?).
* file.c (S_IRUGO, S_IGUGO): New macros.
Mon Jan 12 12:07:22 2004 Dave Thomas <[email protected]>
* lib/rdoc/parsers/parse_c.rb (RDoc::C_Parser::do_methods):
Someone changed the "// in eval.c" comments to "/*...*/" style,
so the parsing of the source file name broke.
* object.c: Remove spurious space in TrueClass documentation.
* lib/rdoc/parsers/parse_c.rb (RDoc::C_Parser::find_body): Fix
bad regexp: if the code before a documented method contained
a comment that wasn't terminated by whitespace, that comment
and all intervening code was included in the following
method's documentation.
* lib/rdoc/ri/ri_formatter.rb (RI::HtmlFormatter::break_to_newline):
HTML formats need explicit line breaks.
Mon Jan 12 02:24:07 2004 Dave Thomas <[email protected]>
* lib/rdoc/ri/ri_formatter.rb (RI::HtmlFormatter): Add HTML
generation support to ri (Elliot Hughes)
Sun Jan 11 23:54:41 2004 Nobuyoshi Nakada <[email protected]>
* env.h (ruby_frame, ruby_scope, ruby_in_eval, ruby_class,
ruby_dyna_vars): export. [ruby-dev:22566]
Sun Jan 11 02:35:53 2004 Yukihiro Matsumoto <[email protected]>
* ext/socket/socket.c (make_hostent): a bug in brace position.
* configure.in: install rdoc by default. if you do not want to
install rdoc, specify --disable-install-doc.
Sun Jan 11 02:07:47 2004 Dave Thomas <[email protected]>
* lib/rdoc/ri/ri_options.rb (RI::Options::OptionList::OptionList):
Also accept command line options via the 'RI' environment variable.
Sat Jan 10 21:27:41 2004 Yukihiro Matsumoto <[email protected]>
* eval.c (eval): need to add message delimiter. [ruby-dev:22561]
Sat Jan 10 01:54:50 2004 Eric Sunshine <[email protected]>
* defines.h (__NeXT__): Ensure that all standard S_IRUSR, S_IWGRP,
S_IRWXO, etc. macros are defined since future code might require
them (even though present code only requires a subset).
* defines.h (__NeXT__): Bug fix: WORDS_BIGENDIAN was not being set
correctly on Rhapsody when -arch compiler flag was used (via
configure's --enable-fat-binary option).
Sat Jan 10 23:01:41 2004 Nobuyoshi Nakada <[email protected]>
* configure.in (LIBPATHFLAG, RPATHFLAG): enclose paths with single
quotes. [ruby-dev:22564]
* lib/mkmf.rb (libpathflag): do not enclose with quotes always.
* {bcc32,win32,wince}/Makefile.sub (LIBPATHFLAG): quoted.
Sat Jan 10 22:46:18 2004 Nobuyoshi Nakada <[email protected]>
* dir.c (dir_inspect): new method, Dir#inspect. [ruby-dev:22562]
Fri Jan 9 17:36:51 2004 Yukihiro Matsumoto <[email protected]>
* ext/socket/socket.c (make_hostent): getaddrinfo(3) on BSD do not
fill ai_canonname if serv is not supplied. (ruby-bugs PR#1243)
Fri Jan 9 13:14:59 2004 NAKAMURA, Hiroshi <[email protected]>
* lib/test/unit/collector/dir.rb: do not ignore exceptions(LoadError
and SystemExitError) while loading a testcase. smell of bug.
* test/testunit/collector/test_dir.rb: add new test of the LoadError.