forked from ruby/ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
8509 lines (5053 loc) · 271 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
Wed May 26 00:00:00 2004 why the lucky stiff <[email protected]>
* ext/syck/syck.c (syck_new_parser): clear parser on init.
thanks, ts. [ruby-core:02931]
* ext/syck/token.c (sycklex_yaml_utf8): buffer underflow.
thanks, ts. [ruby-core:02929]
* lib/yaml/baseemitter.rb (indent_text): simpler flow block code.
Tue May 25 11:54:13 2004 Nobuyoshi Nakada <[email protected]>
* eval.c (rb_yield_0, proc_invoke, proc_arity): allow passing a block
to a Proc. [ruby-dev:23533]
* parse.y (block_par, block_var): ditto.
Tue May 25 01:50:17 2004 GOTOU Yuuzou <[email protected]>
* ext/openssl/ossl_asn1.c (ossl_i2d_ASN1_TYPE, ossl_ASN1_TYPE_free):
workaround for the versions earlier than OpenSSL-0.9.7.
Mon May 24 10:46:26 2004 Kazuhiro NISHIYAMA <[email protected]>
* lib/rdoc/generators/template/html/html.rb: SYSTEM identifiers
must be absolute URIs
Sat May 22 11:54:10 2004 Nobuyoshi Nakada <[email protected]>
* MANIFEST: add test/openssl/test_x509store.rb.
* ext/tk/MANIFEST: add recent files.
Sat May 22 05:37:11 2004 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/remote-tk.rb: (NEW library) controll Tk interpreters
on the other processes by Tcl/Tk's 'send' command
Fri May 21 09:22:05 2004 Dave Thomas <[email protected]>
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_method_parameters):
Add ()'s around parameters that don't have them
Fri May 21 02:21:11 2004 NAKAMURA, Hiroshi <[email protected]>
* lib/csv.rb: fixed a few bugs around multi char record/field separator.
* test/csv/test_csv.rb: added boundary test for above feature.
Thu May 20 17:02:03 2004 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb (check_sizeof): define result size. [ruby-core:02911]
* lib/mkmf.rb (create_header): macro name should not include equal
sign.
Thu May 20 14:35:52 2004 Tanaka Akira <[email protected]>
* ext/socket/socket.c: check SCM_RIGHTS macro addition to
the msg_control field to test existence of file descriptor passing
by msg_control.
Thu May 20 12:38:06 2004 Yukihiro Matsumoto <[email protected]>
* numeric.c (flo_eq): alway check if operands are NaN.
[ruby-list:39685]
Thu May 20 12:34:39 2004 Dave Thomas <[email protected]>
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_visibility):
At Ryan Davis' suggestion, honor visibility modifers if guarded by a
statement modifier
Thu May 20 12:22:13 2004 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb (have_type): do not check pointer to incomplete type,
which always get compiled.
[ruby-list:39683]
Wed May 19 23:45:43 2004 Nobuyoshi Nakada <[email protected]>
* test/inlinetest.rb (InlineTest::loadtest): requiring library with
replaced $0 can make $0 == __FILE__ block be evaluated twice.
* test/ruby/envutil.rb (EnvUtil::rubybin): give priority to
environment variable. [ruby-dev:23538]
Wed May 19 11:08:10 2004 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk.rb: change permition of TkObject#tk_send from
private to public
Wed May 19 02:29:36 2004 Minero Aoki <[email protected]>
* lib/net/http.rb: support TRACE.
Wed May 19 02:21:53 2004 Minero Aoki <[email protected]>
* lib/net/http.rb: do not use class variables.
Tue May 18 21:21:43 2004 NAKAMURA, Hiroshi <[email protected]>
* lib/csv.rb: writes lines with "\n" when row separator is not given.
formerly it was "\r\n".
* lib/csv.rb: [CAUTION] API change
* CSV::Row removed. a row is represented as just an Array. since
CSV::Row was a subclass of Array, it won't hurt almost all programs
except one which depended CSV::Row#match.
* CSV::Cell removed. a cell is represented as just a String or
nil(NULL). this change will cause widespread destruction.
CSV.open("foo.csv", "r") do |row|
row.each do |cell|
if cell.is_null # Cell#is_null
p "(NULL)"
else
p cell.data # Cell#data
end
end
end
must be just;
CSV.open("foo.csv", "r") do |row|
row.each do |cell|
if cell.nil?
p "(NULL)"
else
p cell
end
end
end
* lib/csv.rb: [CAUTION] record separator(CR, LF, CR+LF) behavior
change. CSV.open, CSV.parse, and CSV,generate now do not force
opened file binmode. formerly it set binmode explicitly.
with CSV.open, binmode of opened file depends the given mode
parameter "r", "w", "rb", and "wb". CSV.parse and CSV.generate open
file with "r" and "w".
setting mode properly is user's responsibility now.
* lib/csv.rb: accepts String as a fs (field separator/column separator)
and rs (record separator/row separator)
* lib/csv.rb: added CSV.foreach(path, rs = nil, &block). CSV.foreach
now does not handle "| cmd" as a path different from IO.foreach.
needed?
* test/csv/test_csv.rb: updated.
Tue May 18 14:24:20 2004 why the lucky stiff <[email protected]>
* lib/yaml.rb: added rdoc to beginning of lib.
Tue May 18 14:00:46 2004 Nobuyoshi Nakada <[email protected]>
* node.h (NEW_DSTR): adjust list length.
* parse.y (literal_concat): ditto.
Tue May 18 09:30:25 2004 SASADA Koichi <[email protected]>
* eval.c (rb_method_node): search cache entry first.
Mon May 17 16:04:06 Hirokazu Yamamoto <[email protected]>
* numeric.c (flo_to_s): p 0.0 should be '0.0' not '0.0e+00'.
* numeric.c (flo_to_s): the number of significand is correctly handled,
there is assumption that DBL_DIG == 15 though.
(p 0.00000000000000000001 was '9.999999999999999e-21', now is
'1.0e-20')
[ruby-dev:23480]
Mon May 17 10:13:33 2004 Yukihiro Matsumoto <[email protected]>
* ext/socket/socket.c (setup_domain_and_type): honor duck typing.
[ruby-dev:23522]
* ext/socket/socket.c (sock_s_getnameinfo): ditto.
Mon May 17 00:36:21 2004 why the lucky stiff <[email protected]>
* lib/yaml/baseemitter.rb (indent_text): was forcing a mod value
of zero at times, which kept some blocks from getting indentation.
Mon May 17 00:07:00 2004 Gavin Sinclair <[email protected]>
* lib/drb/drb.rb: Cosmetic documentation changes.
Sun May 16 20:55:49 2004 Tanaka Akira <[email protected]>
* ext/dbm/dbm.c (fdbm_initialize): accept optional 3rd argument to
specify an open flag.
(Init_dbm): define open flags: DBM::READER, DBM::WRITER, DBM::WRCREAT
and DBM::NEWDB.
Sat May 15 17:52:24 Hirokazu Yamamoto <[email protected]>
* test/ruby/test_float.rb(test_strtod): Add test for signed 0.000...1
Sat May 15 14:20:13 2004 WATANABE Hirofumi <[email protected]>
* ext/syck/depend: add ruby's headers.
Sat May 15 13:38:33 2004 Nobuyoshi Nakada <[email protected]>
* ext/syck/MANIFEST, ext/syck/depend: new file.
* lib/yaml/rubytypes.rb: range of exponential floats. [ruby-core:02824]
* test/yaml/test_yaml.rb: tests for strings start with colon and some
round trip.
Sat May 15 12:04:58 2004 why the lucky stiff <[email protected]>
* lib/yaml.rb: removed fallback to pure Ruby parser.
* lib/yaml/baseemitter.rb (node_text): rewriting folded scalars.
* ext/syck/syck.h: reports style of scalars now, be they plain, block
single-, or double-quoted.
* ext/syck/syck.c: ditto.
* ext/syck/gram.c: ditto.
* ext/syck/node.c: ditto.
* ext/syck/token.c: ditto.
* ext/syck/rubyext.c (yaml_org_handler): symbols loaded only
if scalar style is plain.
* test/yaml/test_yaml.rb (test_perl_regexp): updated test to
match new regexp serialization.
Sat May 15 01:41:34 2004 Yukihiro Matsumoto <[email protected]>
* eval.c (eval): forgot to restore $SAFE value before evaluating
compiled node. [ruby-core:02872]
Sat May 15 01:33:12 2004 Yukihiro Matsumoto <[email protected]>
* range.c (range_each_func): terminates loop if generating value
is same to @end. [ruby-talk:100269]
Fri May 14 22:08:38 2004 Yukihiro Matsumoto <[email protected]>
* string.c (rb_str_new4): should not reuse frozen shared string if
the original is not an instance of String. [ruby-talk:100193]
Fri May 14 21:29:26 2004 Yukihiro Matsumoto <[email protected]>
* time.c (time_mdump): preserve GMT bit in the marshal data.
[ruby-talk:100213]
Fri May 14 18:37:49 2004 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk/canvas.rb: improve coords support for canvas
items. Now, supports all of the followings.
TkcLine.new(c, 0, 0, 100, 100, :fill=>'red')
TkcLine.new(c, [0, 0, 100, 100], :fill=>'red')
TkcLine.new(c, [0, 0], [100, 100], :fill=>'red')
TkcLine.new(c, [[0, 0], [100, 100]], :fill=>'red')
TkcLine.new(c, :coords=>[0, 0, 100, 100], :fill=>'red')
TkcLine.new(c, :coords=>[[0, 0], [100, 100]], :fill=>'red')
Fri May 14 13:30:39 Hirokazu Yamamoto <[email protected]>
* test/ruby/test_float.rb: Add test for util.c revision 1.42.
Fri May 14 12:13:46 Hirokazu Yamamoto <[email protected]>
* util.c (ruby_strtod): strtod("0", &end); => end should point '\0'.
[ruby-dev:23498]
Thu May 13 15:47:30 2004 akira yamada <[email protected]>
* lib/net/telnet.rb (Net::Telnet::login): "options" can specify
regexps for login prompt and/or password prompt.
Thu May 13 14:17:57 2004 why the lucky stiff <[email protected]>
* ext/syck/rubyext.c (yaml_org_handler): some empty strings were
loaded as symbols.
Thu May 13 11:04:08 2004 Nobuyoshi Nakada <[email protected]>
* pack.c (pack_pack): always add with null for 'Z'.
* pack.c (pack_unpack): terminated by null for 'Z'. [ruby-talk:98281]
Wed May 12 19:59:43 2004 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb (have_type, check_sizeof): replace unusable characters.
[ruby-talk:99788]
Wed May 12 17:41:42 2004 Tanaka Akira <[email protected]>
* lib/resolv.rb (Resolv::DNS::Config): make it configurable without
external file such as /etc/resolv.conf.
Wed May 12 14:37:27 2004 GOTOU Yuuzou <[email protected]>
* ext/openssl/ossl_x509name.c: attribute value of DC (short name of
domainComponent) should be IA5String.
Wed May 12 13:20:19 2004 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk/composite.rb: improve configure methods (based on
the proposal of [ruby-talk:99671]).
Wed May 12 11:51:08 2004 Dave Thomas <[email protected]>
* class.c (rb_obj_singleton_methods): fix rdoc
Tue May 11 07:09:42 2004 Yukihiro Matsumoto <[email protected]>
* eval.c (is_defined): do not protect exception during receiver
evaluation.
Mon May 10 22:28:14 2004 Minero Aoki <[email protected]>
* lib/net/protocol.rb (each_crlf_line): remove junk line.
Mon May 10 21:44:42 2004 Dave Thomas <[email protected]>
* lib/rdoc/generators/html_generator.rb: Change scheme for
looking up symbols in HTML generator.
Mon May 10 16:45:21 2004 Yukihiro Matsumoto <[email protected]>
* eval.c (eval): warning during eval should not cause deadlock.
[ruby-talk:98651]
* eval.c (rb_eval): raise TypeError exception for superclass
mismatch. [ruby-list:39567]
Mon May 10 12:11:37 2004 Dave Thomas <[email protected]>
* lib/rdoc/generators/html_generator.rb: Hack to search parents
for unqualified constant names.
Mon May 10 01:18:15 2004 Minero Aoki <[email protected]>
* lib/net/pop.rb (logging): append "\n".
Sun May 9 23:38:00 2004 Gavin Sinclair <[email protected]>
* lib/net/ftp.rb: ported documentation improvement from 1.8 branch
* lib/net/imap.rb: ditto
* lib/net/pop.rb: ditto
* lib/net/smtp.rb: ditto
* lib/net/telnet.rb: ditto
Sun May 9 23:34:51 2004 NAKAMURA, Hiroshi <[email protected]>
* test/ruby/test_float.rb: added test_strtod to test Float("0").
Sun May 9 13:24:24 2004 WATANABE Hirofumi <[email protected]>
* lib/yaml/store.rb: use FileUtils::copy.
Sun May 9 12:34:26 2004 Kazuo Saito <[email protected]>
* regex.c : removed unused file.
Sat May 8 10:53:30 2004 Yukihiro Matsumoto <[email protected]>
* io.c (rb_f_open): open should not ignore block when "to_open"
method is used. [ruby-dev:23478]
Fri May 7 22:07:39 2004 Minero Aoki <[email protected]>
* lib/fileutils.rb (mv): new option `force'. [ruby-talk:99457]
* lib/fileutils.rb: new method for command option reflection:
FileUtils.commands, .options, .have_option?, .options_of,
.collect_methods.
* lib/fileutils.rb: module Verbose, NoWrite, DryRun do not have
option flags @fileutils_verbose and @fileutils_noop, they make no
sense.
Fri May 7 21:50:21 2004 Dave Thomas <[email protected]>
* lib/rdoc/parsers/parse_rb.rb (RDoc::parse_include): Allow
multiple arguments to 'include'
Fri May 7 21:03:51 2004 Minero Aoki <[email protected]>
* lib/fileutils.rb (fu_list): Array() breaks pathes including "\n".
[ruby-core:02843]
* test/fileutils/test_fileutils.rb (mkdir): test "\n" in path.
Fri May 7 20:53:25 2004 Yukihiro Matsumoto <[email protected]>
* ext/dbm/dbm.c (fdbm_modify): typo fixed. [ruby-dev:23473]
Fri May 7 11:17:27 Hirokazu Yamamoto <[email protected]>
* util.c (ruby_strtod): 0.0000000000000000001 == 0.0 should be false.
[ruby-talk:99318] [ruby-dev:23465]
Thu May 6 22:27:32 2004 Masatoshi SEKI <[email protected]>
* ext/socket/socket.c (ippaddr): use NUMERICHOST if can not resolve
hostname.
Thu May 6 22:09:29 2004 Hidetoshi NAGAI <[email protected]>
* ext/tk/tkutil.c (get_eval_string_core): bug fix. [ruby-dev:23466]
Thu May 6 14:22:29 2004 why the lucky stiff <[email protected]>
* lib/yaml/rubytypes.rb (to_yaml): added instance variable handling
for Ranges, Strings, Structs, Regexps.
* lib/yaml/rubytypes.rb (to_yaml_fold): new method for setting a
String's flow style.
* lib/yaml.rb (YAML::object_maker): now uses Object.allocate.
* ext/syck/gram.c: fixed transfer methods on structs, broke it
last commit.
Thu May 6 14:38:02 Hirokazu Yamamoto <[email protected]>
* dir.c (rb_push_glob): simplified code (not change behavior)
Thu May 6 13:32:44 2004 Nobuyoshi Nakada <[email protected]>
* ext/extmk.rb: get rid of side effect of Config.expand, patched by
<[email protected]> (ruby-bugs:PR#597)
Thu May 6 11:40:28 2004 Shugo Maeda <[email protected]>
* lib/net/imap.rb (string): accept NIL.
* lib/net/imap.rb (body_type_basic): allow body-fields omissions.
Thu May 6 01:59:04 2004 Dave Thomas <[email protected]>
* lib/rdoc/generators/html_generator.rb (Generators::HtmlMethod::params):
Don't include the &block parameter if we have explicit
yield parameters.
Wed May 5 03:52:31 2004 Masatoshi SEKI <[email protected]>
* lib/rinda/ring.rb: use recv instead of recvfrom.
Wed May 5 00:38:00 2004 Gavin Sinclair <[email protected]>
* lib/gserver.rb: documented
* lib/xmlrpc/README.txt: introduced for documentation purposes
Mon May 3 09:47:24 2004 Dave Thomas <[email protected]>
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_method_or_yield_parameters):
Fix parsing bug if yield called within 1 line block
Sun May 2 21:56:48 2004 Minero Aoki <[email protected]>
* test/fileutils/test_fileutils.rb (rm_f, rm_r): test :force flag.
Sun May 2 01:04:38 2004 Hidetoshi NAGAI <[email protected]>
* ext/tcltklib, ext/tk: renewal Ruby/Tk
Fri Apr 30 20:08:41 2004 WATANABE Hirofumi <[email protected]>
* time.c (SIZEOF_TIME_T): support SIZEOF_TIME_T == SIZEOF_INT.
Wed Apr 28 01:26:11 2004 Kazuo Saito <[email protected]>
* oniguruma.h, regparse.c: imported Oni Guruma 2.2.8.
Wed Apr 28 01:16:23 2004 Kazuo Saito <[email protected]>
* oniguruma.h, regparse.c: imported Oni Guruma 2.2.7.
Tue Apr 27 14:43:32 2004 Nobuyoshi Nakada <[email protected]>
* common.mk: LIBURUBY_A is needed for extconf.rb even when
cross-compiling.
Tue Apr 27 13:33:50 2004 Yukihiro Matsumoto <[email protected]>
* parse.y (string_content): turn off NODE_NEWLINE flag to avoid
unnecessary line trace for inlined expression.
(ruby-bugs PR#1320)
Tue Apr 27 08:15:13 2004 why the lucky stiff <[email protected]>
* lib/yaml/rubytypes.rb: passing Range tests.
* ext/syck/syck.h: version 0.44.
* ext/syck/gram.c: transfers no longer open an indentation.
fixed transfers which precede blocks.
* ext/syck/token.c: ditto.
* ext/syck/syck.c: fixed segfault if an anchor has been released already.
* ext/syck/node.c (syck_free_members): organized order of free'd nodes.
* ext/syck/rubyext.c (syck_emitter_write_m): test for proper string with
StringValue.
Mon Apr 26 23:56:54 2004 Daniel Kelley <[email protected]>
* README.EXT, README.EXT.ja: fixed wrong function signature.
[ruby-talk:98349]
Mon Apr 26 21:40:09 2004 Dave Thomas <[email protected]>
* lib/rdoc/code_objects.rb (RDoc::Context::add_alias): Only alias
to instance methods.
Sun Apr 25 18:26:23 2004 WATANABE Hirofumi <[email protected]>
* configure.in (ac_cv_func_fork): set to no on DJGPP.
Sat Apr 24 14:32:03 2004 Kazuo Saito <[email protected]>
* re.c: applied stack error handling patch. [ruby-dev:22431]
Sat Apr 24 10:38:31 2004 Dave Thomas <[email protected]>
* lib/rdoc/markup/simple_markup.rb (SM::SimpleMarkup::group_lines):
Fix bug where consecutive headings are merged.
Fri Apr 23 23:24:47 2004 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb: $hdrdir should not contain macros, for backward
compatibility. [bruby-dev:28]
* lib/mkmf.rb (create_makefile): in the case of extout, just copy
script files, without comparison.
Fri Apr 23 16:38:46 2004 Tanaka Akira <[email protected]>
* lib/pathname.rb: sync taint/freeze flag between
a pathname object and its internal string object.
Fri Apr 23 14:52:14 2004 Nobuyoshi Nakada <[email protected]>
* parse.y (stmt, arg, aref_args): should not make sole splat into
array, in aref_args other than aref with op_asgn.
Fri Apr 23 14:14:38 2004 Tanaka Akira <[email protected]>
* lib/resolv.rb: don't use Regexp#source to embed regexps.
[ruby-dev:23432]
Thu Apr 22 18:25:10 2004 Nobuyoshi Nakada <[email protected]>
* common.mk, ext/extmk.rb: make ext and .ext get removed by distclean.
Thu Apr 22 10:07:01 2004 NAKAMURA Usaku <[email protected]>
* */Makefile.sub (distclean-local): should remove $(RBCONFIG).
Thu Apr 22 04:17:57 2004 Nobuyoshi Nakada <[email protected]>
* eval.c (rb_mod_define_method): allow binding methods to modules.
[ruby-dev:23410]
* parse.y (aref_args): should pass expanded list. [ruby-core:02793]
Thu Apr 22 01:12:57 2004 Yukihiro Matsumoto <[email protected]>
* numeric.c (flo_to_s): tweak output string based to preserve
decimal point and to remove trailing zeros. [ruby-talk:97891]
* string.c (rb_str_index_m): use unsigned comparison for T_FIXNUM
search. [ruby-talk:97342]
Wed Apr 21 23:04:42 2004 Masatoshi SEKI <[email protected]>
* lib/rinda/rinda.rb, test/rinda/test_rinda.rb: check Hash tuple size.
Wed Apr 21 20:05:00 2004 Tanaka Akira <[email protected]>
* lib/open-uri.rb (URI::HTTP#proxy_open): set Host: field explicitly.
[ruby-list:39542]
Wed Apr 21 18:39:46 2004 Minero Aoki <[email protected]>
* lib/net/smtp.rb: merge SMTP-TLS patch. This patch is
contributed by Daniel Hob. [ruby-core:02789]
Wed Apr 21 18:23:45 2004 Minero Aoki <[email protected]>
* lib/net/smtp.rb: change coding style: def m( a ) -> def m(a).
Wed Apr 21 18:01:47 2004 Minero Aoki <[email protected]>
* lib/net/pop.rb: do not use class variables.
* lib/net/pop.rb (do_start): ensure to clean up connection when
authentication failed.
Wed Apr 21 17:23:59 2004 Minero Aoki <[email protected]>
* lib/net/http.rb (HTTP#connect): CONNECT must precede SSL connect.
[ruby-dev:23379]
* lib/net/http.rb (HTTP.new): class variables are not inherited
now.
Wed Apr 21 15:56:43 2004 Nobuyoshi Nakada <[email protected]>
* lib/test/unit/ui/console/testrunner.rb (test_started): restore $0
after changing process title. [ruby-talk:97426]
Wed Apr 21 11:45:22 Hirokazu Yamamoto <[email protected]>
* process.c: Recover wrongly removed spaces at end of the lines.
Wed Apr 21 10:18:06 Hirokazu Yamamoto <[email protected]>
* process.c(rb_spawn): fix SEGV at "p system('command line here')"
(may happen only in bccwin32) [ruby-dev:23380]
Mon Apr 19 20:58:44 Hirokazu Yamamoto <[email protected]>
* dir.c: Updated RDocs.
Mon Apr 19 18:11:15 2004 Yukihiro Matsumoto <[email protected]>
* hash.c (rb_hash_equal): returns true if two hashes have same set
of key-value set. [ruby-talk:97559]
* hash.c (rb_hash_eql): returns true if two hashes are equal and
have same default values.
Mon Apr 19 08:19:11 2004 Doug Kearns <[email protected]>
* dln.c, io.c, pack.c, lib/benchmark.rb, lib/cgi.rb, lib/csv.rb,
lib/date.rb, lib/ftools.rb, lib/getoptlong.rb, lib/logger.rb,
lib/matrix.rb, lib/monitor.rb, lib/set.rb, lib/thwait.rb,
lib/timeout.rb, lib/yaml.rb, lib/drb/drb.rb, lib/irb/workspace.rb,
lib/net/ftp.rb, lib/net/http.rb, lib/net/imap.rb, lib/net/pop.rb,
lib/net/telnet.rb, lib/racc/parser.rb, lib/rinda/rinda.rb,
lib/rinda/tuplespace.rb, lib/shell/command-processor.rb,
lib/soap/rpc/soaplet.rb, lib/test/unit/testcase.rb,
lib/test/unit/testsuite.rb: typo fix.
Mon Apr 19 08:14:18 2004 Dave Thomas <[email protected]>
* lib/rdoc/parsers/parse_c.rb (RDoc::C_Parser::find_body): Allow for
#ifdef HAVE_PROTOTYPES
Fri Apr 16 17:04:07 2004 Yukihiro Matsumoto <[email protected]>
* string.c (rb_str_equal): always returns true or false, never
returns nil. [ruby-dev:23404]
Fri Apr 16 12:38:48 2004 Nobuyoshi Nakada <[email protected]>
* lib/drb/drb.rb (DRb::DRbUnknown::initialize): Exception#to_str is
deprecated.
* lib/drb/drb.rb (DRb::DRbServer::InvokeMethod::perform): multiple
value class changed.
* lib/drb/invokemethod.rb (DRb::DRbServer::InvokeMethod18Mixin::block_yield):
ditto.
Fri Apr 16 08:27:08 2004 Nobuyoshi Nakada <[email protected]>
* ext/extmk.rb: skip linking when libraries to be preloaded not
compiled. [ruby-list:39561]
Thu Apr 15 19:57:11 2004 Nobuyoshi Nakada <[email protected]>
* process.c (pst_success_p): new method Process::Status#success?.
[ruby-dev:23385]
* rubytest.rb: do nothing while cross-compiling, return status in
system independent style.
Thu Apr 15 19:26:54 Hirokazu Yamamoto <[email protected]>
* dir.c (rb_push_glob): Dir.glob() should return nil if block is given.
(http://www.ruby-lang.org/ja/man/index.cgi?cmd=view;name=Dir)
* dir.c (push_braces): Dir.glob() should handle '{ }' nested more than
3 times.
* dir.c (push_braces, rb_push_glob): Dir.glob() should handle escaped
'{' and '}' and ','.
[ruby-dev:23376]
Thu Apr 15 17:12:13 2004 Tanaka Akira <[email protected]>
* ext/gdbm/gdbm.c (Init_gdbm): define GDBM::READER, GDBM::WRITER,
GDBM::WRCREAT and GDBM::NEWDB.
(fgdbm_initialize): use specified read/write flag.
Wed Apr 14 13:06:09 2004 Doug Kearns <[email protected]>
* array.c, enum.c, eval.c, file.c, io.c, numeric.c, object.c, prec.c,
process.c, re.c, string.c: typos in RDoc comments. [ruby-core:02783]
Wed Apr 14 11:29:56 2004 WATANABE Hirofumi <[email protected]>
* numeric.c (flo_eq): workaround for bcc32's bug.
(ruby-bugs-ja:PR#594)
Wed Apr 14 11:06:38 2004 Dave Thomas <[email protected]>
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::scan): Changed
behavior of :enddoc: -- it now unconditionally terminates
processing of the current file.
Wed Apr 14 10:57:40 Hirokazu Yamamoto <[email protected]>
* defines.h: include <net/socket.h> to get fd_set definition in BeOS.
Tue Apr 13 23:00:55 2004 Masatoshi SEKI <[email protected]>
* lib/rinda/rinda.rb: change pattern matching.
a === b -> a == b || a === b. [druby-ja:98]
* test/rinda/test_rinda.rb: ditto.
Tue Apr 13 21:50:57 2004 Nobuyoshi Nakada <[email protected]>
* bcc32/Makefile.sub (PHONY): Borland make disallows empty command
rules.
Tue Apr 13 17:55:16 2004 Minero Aoki <[email protected]>
* lib/net/http.rb (begin_transport): should not overwrite HTTP
request header. [ruby-list:39543]
Tue Apr 13 16:48:00 2004 Minero Aoki <[email protected]>
* lib/net/pop.rb: merge POP3S patch. This patch is contributed by
Daniel Hobe.
Tue Apr 13 02:56:29 2004 Kazuo Saito <[email protected]>
* common.mk: changed the order of ascii.c alphabetically.
Mon Apr 12 19:11:21 2004 Eric Hodel <[email protected]>
* gc.c (rb_gc_copy_finalizer): typo. [ruby-core:02774]
Mon Apr 12 18:45:58 2004 GOTOU Yuuzou <[email protected]>
* ext/openssl/ossl_x509name.c (ossl_x509name_init_i): should return
a value.
Mon Apr 12 10:39:50 Hirokazu Yamamoto <[email protected]>
* dir.c (rb_glob2, rb_glob, push_globs, push_braces, rb_push_glob):
fix memory leak to occur when block is interrupted in Dir.glob.
Sun Apr 11 19:10:13 2004 Nobuyoshi Nakada <[email protected]>
* ruby.c (require_libraries): restore source file/line after
statically linked extensions initialized. [ruby-dev:23357]
Sun Apr 11 10:47:04 2004 Dave Thomas <[email protected]>
* lib/rdoc/code_objects.rb (RDoc::TopLevel::add_class_or_module): Toplevel
classes and modules are a special case too... (handle extending existing
classes with or without :enddoc:)
Sat Apr 10 23:51:13 2004 Dave Thomas <[email protected]>
* lib/rdoc/code_objects.rb (RDoc::Context::add_to): Implementation of :enddoc:
made one too many assumptions...
Sat Apr 10 00:00:19 2004 Dave Thomas <[email protected]>
* lib/rdoc/markup/simple_markup/inline.rb: Fix problem
with \_cat_<b>dog</b>
Fri Apr 9 17:05:21 Hirokazu Yamamoto <[email protected]>
* dir.c (has_magic, find_dirsep): incomplete '[' matches no character
in Dir.glob. (follows File.fnmatch's behavior)
* dir.c (fnmatch_helper): incomplete escape is ignored in File.fnmatch.
(follows Dir.glob's behavior)
* dir.c (find_dirsep): '/' between '[' and ']' is ignored in Dir.glob.
(follows File.fnmatch with File::FNM_PATHNAME 's behavior)
* dir.c (find_dirsep): escaped slash '\/' loses its meaning as
directory separator in Dir.glob.
[ruby-dev:23291]
Thu Apr 8 20:25:19 2004 Nobuyoshi Nakada <[email protected]>
* ext/extmk.rb (extmake): skip uncompiled extensions.
* lib/mkmf.rb (create_makefile): emit no rules for static library if
$static is nil, e.g., outside of ext/.
* lib/test/unit/ui/console/testrunner.rb (test_started): show test
name via $0.
* runruby.rb: set environments to use the compiled binary.
* test/runner.rb: do nothing while cross-compiling.
* test/drb/drbtest.rb, test/soap/calc/test_calc_cgi.rb: use envutil to
know ruby binary, and restore $: after require.
* test/ruby/envutil.rb: give priority to RUBY environment variable to
use just compiled binary and libraries.
Thu Apr 8 19:03:33 2004 Nobuyoshi Nakada <[email protected]>
* io.c (rb_io_binmode): inverted condition. [ruby-dev:23349]
Thu Apr 8 18:22:00 2004 Nobuyoshi Nakada <[email protected]>
* ext/iconv/iconv.c (iconv_s_list): return encoding list if no block
is given. [ruby-dev:23063]
Wed Apr 7 15:29:24 2004 Yukihiro Matsumoto <[email protected]>
* pack.c (pack_pack): use NUM2INT() instead of num2i32().
Wed Apr 7 12:32:02 2004 Kouhei Sutou <[email protected]>
* lib/rss/parser.rb, lib/rss/1.0.rb: accepted rdf:resource or
resource attribute in rdf:li.
* test/rss/test_parser.rb: added test for above change.
* lib/rss/dublincore.rb: reverted style.
* lib/rss/xmlparser.rb: normalized XMLParser class hierarchy.
Wed Apr 7 10:43:17 2004 Nobuyoshi Nakada <[email protected]>
* Makefile.in, common.mk, */Makefile.sub (ext/extinit.o): OUTFLAG
doesn't work for object files on VC.
* */Makefile.sub (config.h): need SIZEOF_TIME_T now.
Wed Apr 7 00:24:34 2004 Masatoshi SEKI <[email protected]>
* lib/rinda/rinda.rb: fix hash tuple bug.
* lib/rinda/tuplespace.rb: ditto.
* test/rinda/test_rinda.rb
Tue Apr 6 18:24:18 2004 Yukihiro Matsumoto <[email protected]>
* file.c (rb_get_path): get path string via "to_path" method if
path object is not a string. [Ruby2]
* gc.c (rb_gc_call_finalizer_at_exit): do not free threads in the
exit finalizers.
* io.c (rb_io_reopen): should use rb_io_check_io().
Tue Apr 6 16:46:09 2004 Tanaka Akira <[email protected]>
* configure.in: check the size of time_t.
* time.c (time_add): new function.
(time_plus): use time_add.
(time_minus): use time_add.
Tue Apr 6 13:11:48 2004 NAKAMURA Usaku <[email protected]>
* ext/socket/socket.c (raise_socket_error): never return.
* ext/socket/socket.c (make_hostent): must return value.
Tue Apr 6 00:14:43 2004 Yukihiro Matsumoto <[email protected]>
* error.c (Init_Exception): remove Exception#to_str. [Ruby2]
* eval.c (error_print): should no call "to_str" anymore use
"message" method instead.
* io.c (rb_f_open): Kernel#open() calls "to_open" if the first
argument responds to it. [Ruby2]
Tue Apr 6 00:13:43 2004 Masatoshi SEKI <[email protected]>
* lib/rinda/rinda.rb: add require 'drb/drb'
Mon Apr 5 22:25:32 2004 Tanaka Akira <[email protected]>
* test/zlib/test_zlib.rb: new file.
(TestZlibGzipWriter#test_new_nil): test for [ruby-dev:23228].
Mon Apr 5 22:16:23 2004 Minero Aoki <[email protected]>
* parse.y (assoc_list): {a: 1, b: 2} should be allowed.
[ruby-dev:23328]
Mon Apr 5 19:43:40 2004 Kazuo Saito <[email protected]>
* regexec.c: imported Oni Guruma 2.2.6.
Mon Apr 5 19:39:10 2004 Kazuo Saito <[email protected]>
* regparse.c, oniguruma.h: imported Oni Guruma 2.2.6.
Mon Apr 5 12:12:09 2004 NAKAMURA Usaku <[email protected]>
* ext/socket/socket.c (raise_socket_error): some platforms don't have
EAI_SYSTEM.
Mon Apr 5 08:18:23 2004 Dave Thomas <[email protected]>
* lib/rdoc/rdoc.rb: Remove leading ./ from file names so that cross
references work properly.
Sun Apr 4 14:01:20 2004 Dave Thomas <[email protected]>
* lib/rdoc/options.rb (Options::parse): Allow multiple -x options to
RDoc. Fix bug where files weren't being excluded properly
Sat Apr 3 09:36:38 2004 why the lucky stiff <[email protected]>
* ext/syck/syck.h: version 0.43.
Sat Apr 3 08:28:47 2004 why the lucky stiff <[email protected]>
* ext/syck/lib/gram.c: allow root-level inline collections.
[ruby-talk:94922]
* lib/yaml/rubytypes.rb (Symbol#to_yaml): emit symbols as implicits.
[ruby-talk:94930]
Fri Apr 2 19:28:48 2004 Nobuyoshi Nakada <[email protected]>
* bcc32/Makefile.sub (OUTFLAG): needed for static-linked-ext.
Fri Apr 2 18:00:05 2004 Nobuyoshi Nakada <[email protected]>
* ext/extmk.rb (extmake): extract necessary variables for static link
from Makefile.
* lib/mkmf.rb (create_makefile): save preload and libpath for next
compile.
Fri Apr 2 17:27:17 2004 Yukihiro Matsumoto <[email protected]>
* eval.c (top_include): include in the wrapped load is done for
the wrapper, not for a singleton class for wrapped main.
[ruby-dev:23305]
Fri Apr 2 15:13:44 2004 Yukihiro Matsumoto <[email protected]>
* bignum.c (rb_big_eq): use temporary double variable to save the
result (internal float register may be bigger than 64 bits, for
example, 80 bits on x86). [ruby-dev:23311]
Fri Apr 2 14:35:26 2004 Yukihiro Matsumoto <[email protected]>
* eval.c (block_pass): should generate unique identifier of the
pushing block. [ruby-talk:96363]
Fri Apr 2 11:36:20 2004 Minero Aoki <[email protected]>
* eval.c (Init_load): make $LOADED_FEATURES built-in.
[ruby-dev:23299]
* ruby.c (ruby_prog_init): make $PROGRAM_NAME built-in.
* lib/English.rb: remove $LOADED_FEATURES and $PROGRAM_NAME.
Fri Apr 2 07:31:38 2004 Yukihiro Matsumoto <[email protected]>
* ext/socket/socket.c: mistakingly removed do_not_reverse_lookup.
[ruby-list:39475]
* ext/socket/socket.c (make_hostent): fix memory leak, based on
the patch from HORIKAWA Hisashi <[email protected]>.
Thu Apr 1 22:55:33 2004 Dave Thomas <[email protected]>