-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
11343 lines (6738 loc) · 360 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
Tue Nov 9 22:24:07 2004 NARUSE, Yui <[email protected]>
* ext/nkf: original nkf.c rev:1.38
* ext/nkf/nkf.c: fix bug: can't parse long-name options
* ext/nkf/test.rb: fix bug: mime tests fail
Tue Nov 9 14:27:18 2004 Nobuyoshi Nakada <[email protected]>
* lib/optparse.rb (OptionParser::Officious): moved from DefaultList.
Tue Nov 9 00:50:06 2004 Dave Thomas <[email protected]>
* lib/rdoc/rdoc.rb: Change version numbering of RDoc and ri
Tue Nov 9 00:36:26 2004 Masatoshi SEKI <[email protected]>
* lib/drb/extservm.rb: add DRb::ExtServManager#uri=.
[ruby-dev:24743]
Mon Nov 8 22:20:19 2004 Dave Thomas <[email protected]>
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_class):
Fix bug where parent class wasn't being detected if the
child class was defined using the A::B notation.
Mon Nov 8 00:14:13 2004 WATANABE Hirofumi <[email protected]>
* configure.in: add setup for mignw32 cross compiling.
[ruby-talk:119413]
Sun Nov 7 23:49:26 2004 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk.rb: bind-event methods accept multi substitution
arguments.
* ext/tk/lib/tk/canvas.rb: ditto.
* ext/tk/lib/tk/canvastag.rb: ditto.
* ext/tk/lib/tk/text.rb: ditto.
* ext/tk/lib/tk/texttag.rb: ditto.
* ext/tk/lib/tkextlib: ditto.
Sat Nov 6 20:40:16 2004 Masaki Suketa <[email protected]>
* ext/win32ole/win32ole.c: rename WIN32OLE#ole_obj_help to
WIN32OLE#ole_type. alias ole_obj_help to ole_type.
* ext/win32ole/tests/testWIN32OLE.rb: ditto.
Sat Nov 6 11:18:59 2004 Tadayoshi Funaba <[email protected]>
* lib/date.rb (_parse): checks whether zone was given.
Fri Nov 5 19:07:16 2004 NARUSE, Yui <[email protected]>
* ext/nkf: follow CVS Head of original nkf.
Fri Nov 5 18:12:42 2004 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk/scrollable.rb: divide Scrollable module into
X_Scrollable and Y_Scrollable
* ext/tk/lib/tk/entry.rb: include X_Scrollable instead of Scrollable
* ext/tk/lib/tk/autoload.rb: define autoload for X_Scrollable and
Y_Scrollable
Fri Nov 5 16:05:32 2004 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk.rb: TkComm._at() supprts both of "@x,y" and "@x"
Fri Nov 5 13:22:58 2004 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk/text.rb: sorry. bug fix again.
Fri Nov 5 13:17:54 2004 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk/text.rb: bug fix
Fri Nov 5 08:34:43 2004 Yukihiro Matsumoto <[email protected]>
* string.c (str_gsub): should have removed rb_str_unlocktmp(str).
[ruby-dev:24708]
* ext/socket/socket.c (s_recvfrom): buffer modification check.
[ruby-dev:24708]
Thu Nov 4 23:54:21 2004 Kazuo Saito <[email protected]>
* regexec.c, regparse.c, regint.h: fixed conflicts between
vendor branch.
Thu Nov 4 23:41:55 2004 Kazuo Saito <[email protected]>
* ascii.c, euc_jp.c, oniggnu.h, oniguruma.h, regcomp.c,
regenc.c, regenc.h, regerror.c, regexec.c, reggnu.c,
regint.h, regparse.c, regparse.h, sjis.c, utf8.c:
imported Oni Guruma 3.4.0.
* parse.y, re.c: Now mbclen() takes unsigned char as
its argument.
Thu Nov 4 21:25:38 2004 Yukihiro Matsumoto <[email protected]>
* string.c (str_gsub): string modify check no longer based on
tmplock. [ruby-dev:24706]
Thu Nov 4 21:13:48 2004 Masaki Suketa <[email protected]>
* ext/win32ole/win32ole.c(typelib_file_from_typelib): search "win16"
entry to get library path.
* ext/win32ole/win32ole.c(oletypelib_path): ditto.
* ext/win32ole/win32ole.c(ole_typedesc2val): add VT_LPWSTR, VT_LPSTR,
VT_ERROR case.
Thu Nov 4 15:02:14 2004 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk/variable.rb: forget to initialize instance_variables
of TkVarAccess objects
Thu Nov 4 09:11:35 2004 Yukihiro Matsumoto <[email protected]>
* gc.c (gc_mark): enable GC stack checking.
Thu Nov 4 03:11:33 2004 Yukihiro Matsumoto <[email protected]>
* string.c (str_gsub): lock strings temporarily. [ruby-dev:24687]
* ext/socket/socket.c (s_recvfrom): tmplock input buffer.
[ruby-dev:24705]
Wed Nov 3 22:24:17 2004 GOTOU Yuuzou <[email protected]>
* lib/webrick/httpauth/digestauth.rb: use Base64.encode64 to
avoid warnings.
Wed Nov 3 17:19:59 2004 Yukihiro Matsumoto <[email protected]>
* array.c (rb_ary_uniq_bang): do not push frozen string from hash
table. [ruby-dev:24695]
* array.c (rb_ary_and): ditto.
* array.c (rb_ary_or): ditto.
Wed Nov 3 17:02:48 2004 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk.rb: support to use different Tcl commands between
configure and configinfo
* ext/tk/lib/font.rb: ditto.
* ext/tk/lib/itemconfig.rb: support to use different Tcl commands
between item_configure and item_configinfo
* ext/tk/lib/itemfont.rb: ditto.
* ext/tk/extconf.rb: install SUPPORT_STATUS
* ext/tk/lib/tkextlib: some bug fixes (see ext/tk/ChangeLog.tkextlib)
Wed Nov 3 15:38:28 2004 Kouhei Sutou <[email protected]>
* test/rss/*.rb: removed tab width configuration headers.
* test/rss/test_maker_{0.9,1.0}.rb: sort -> do_sort.
* lib/rss/maker/*.rb: changed API to RSS version independence.
* lib/rss/maker/base.rb
(RSS::Maker::XMLStyleSheets::XMLStyleSheet): checked required
(pseudo) attributes.
* lib/rss/maker/base.rb (RSS::Maker::Items): sort -> do_sort.
* lib/rss/rss.rb (RSS::BaseModel.install_date_element): avoided
warning.
* lib/rss/0.9.rb (RSS::Rss#textinput): added convenience method.
Tue Nov 2 16:35:57 2004 Yukihiro Matsumoto <[email protected]>
* ext/enumerator/enumerator.c (each_cons_i): pass copy of an
internal consequent array. [ruby-talk:118691]
Tue Nov 2 14:54:02 2004 NAKAMURA Usaku <[email protected]>
* io.c (pipe_open): need to set cmd if argc == 0 (win32).
Tue Nov 2 01:20:09 2004 Yukihiro Matsumoto <[email protected]>
* io.c (pipe_open): IO.popen should take array as 1st argument for
a command line. [ruby-dev:24678]
* eval.c (proc_invoke): nail down dyna_var node when Proc object
or continuation is created. [ruby-dev:24671]
* io.c (rb_io_s_popen): do not expand argv array. [ruby-dev:24670]
Mon Nov 1 22:25:56 2004 Kouhei Sutou <[email protected]>
* lib/rss/maker/base.rb: changed xml-stylesheet's API of RSS Maker
like to item's one.
* lib/rss/xml-stylesheet.rb (RSS::XMLStyleSheet#guess_type): fixed
regular expression bug.
* test/rss/test_maker_xml-stylesheet.rb: updated tests for
xml-stylesheet.
Mon Nov 1 13:59:28 2004 WATANABE Hirofumi <[email protected]>
* ext/extmk.rb (MANIFEST): do not use anymore, use extconf.rb instead.
* ext/enumerator/extconf.rb, ext/fcntl/extconf.rb,
ext/stringio/extconf.rb: added.
* MANIFEST, ext/**/MANIFEST: removed.
* README.EXT, README.EXT.ja: remove MANIFEST stuff.
Mon Nov 1 11:52:18 2004 NAKAMURA Usaku <[email protected]>
* io.c (pipe_open): avoid conflict of variable name. [ruby-dev:24662]
Mon Nov 1 11:46:19 2004 WATANABE Hirofumi <[email protected]>
* process.c (rb_f_exec): should check whether prog is NULL.
Mon Nov 1 09:37:19 2004 Kouhei Sutou <[email protected]>
* lib/rss/maker.rb: added entry point of RSS Maker.
Mon Nov 1 03:14:14 2004 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_get_method_body): store ICLASS in the cache.
[ruby-core:03672]
* eval.c (rb_provided): should return true for loading library
too for autoloading. [ruby-core:03655]
Mon Nov 1 01:14:52 2004 Yukihiro Matsumoto <[email protected]>
* io.c (rb_f_open): create copy of popen specifier. [ruby-dev:24656]
* string.c (rb_str_locktmp): lock string temporarily.
* string.c (str_independent): add tmplock check.
* io.c (io_write): lock output string temporarily.
[ruby-dev:24649]
* io.c (io_write): use rb_str_locktmp().
* io.c (read_all): ditto.
Sun Oct 31 23:37:00 2004 NARUSE, Yui <[email protected]>
* process.c: on NetBSD don't use setruid() and setrgid().
Sun Oct 31 23:12:10 2004 Kouhei Sutou <[email protected]>
* lib/rss/maker/*.rb: added RSS Maker.
* test/rss/test_maker_*.rb: added tests for RSS Maker.
Sun Oct 31 16:58:12 2004 Masaki Suketa <[email protected]>
* ext/win32ole/win32ole.c: add WIN32OLE.codepage, WIN32OLE.codepage=.
* ext/win32ole/tests/testWIN32OLE.rb: ditto.
Sun Oct 31 14:35:26 2004 WATANABE Hirofumi <[email protected]>
* ext/nkf/nkf-utf8/nkf.c: add "\075?UTF-8?Q?" for Gmail.
Sun Oct 31 14:18:56 2004 Minero Aoki <[email protected]>
* parse.y [ripper]: emit lexer-event values to the parser
(still incomplete).
Sat Oct 30 15:24:41 2004 Masaki Suketa <[email protected]>
* ext/win32ole/win32ole.c: add WIN32OLE_TYPELIB class. add
WIN32OLE#ole_typelib method.
* ext/win32ole/tests/testOLETYPELIB.rb: add WIN32OLE_TYPELIB class.
Sat Oct 30 06:53:24 2004 Peter Vanbroekhoven <[email protected]>
* eval.c (rb_eval): NODE_XSTR should pass copy of literal string.
Sat Oct 30 00:19:40 2004 Yukihiro Matsumoto <[email protected]>
* array.c (rb_ary_update): a[n,m]=nil no longer works as element
deletion.
* enum.c (enum_sort_by): protect continuation jump in.
[ruby-dev:24642]
Fri Oct 29 21:27:51 2004 Nobuyoshi Nakada <[email protected]>
* io.c (rb_io_check_initialized): new function to check uninitialized
object. [ruby-talk:118234]
* file.c (rb_file_path), io.c (rb_io_closed): check if initialized.
Fri Oct 29 19:05:33 2004 NARUSE, Yui <[email protected]>
* ext/nkf: follow nkf2.0.
Fri Oct 29 17:18:22 2004 NAKAMURA Usaku <[email protected]>
* parse.y (ripper_s_allocate): add prototype for Microsoft compiler.
* range.c (range_step, range_each): need cast.
Fri Oct 29 11:35:04 2004 Nobuyoshi Nakada <[email protected]>
* parse.y (rb_parser_append_print, rb_parser_while_loop): body node
can be empty. [ruby-dev:24628]
Fri Oct 29 10:00:30 2004 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_thread_start_0): forget to free some memory chunks.
[ruby-core:03611]
* eval.c (ruby_cleanup): ruby_finalize_1 may cause exception,
should be wrapped by PUSH_TAG/POP_TAG(). [ruby-dev:24627]
Wed Oct 27 09:17:30 2004 Nobuyoshi Nakada <[email protected]>
* string.c (str_gsub): use a string object for exception safeness.
[ruby-dev:24601]
Wed Oct 27 07:38:55 2004 Yukihiro Matsumoto <[email protected]>
* node.h (NODE_TYPESHIFT): allow 4 more bits for line numbers.
[ruby-talk:117841]
* ruby.h (FL_ABLE): nodes are not subject for flag operations.
* io.c (ARGF_FORWARD): should have specified argv explicitly,
since we no longer have frame->argv saved. [ruby-dev:24602]
Tue Oct 26 23:30:39 2004 Dave Thomas <[email protected]>
* lib/rdoc/code_objects.rb (RDoc::Context::add_class_or_module):
Restore correct :nopdoc: behavior with nested classes and modules.
Tue Oct 26 18:21:29 2004 Yukihiro Matsumoto <[email protected]>
* string.c (RESIZE_CAPA): check string attribute before modifying
capacity member of string structure. [ruby-dev:24594]
Tue Oct 26 11:33:26 2004 David G. Andersen <[email protected]>
* ext/zlib/zlib.c (gzreader_gets): use memchr() to to gain
performance. [ruby-talk:117701]
Tue Oct 26 10:56:55 2004 Yukihiro Matsumoto <[email protected]>
* sprintf.c (rb_f_sprintf): raise ArgumentError for extra
arguments, unless (digit)$ style used.
Mon Oct 25 18:35:39 2004 WATANABE Hirofumi <[email protected]>
* win32/win32.c (isUNCRoot): should check NUL after '.'.
[ruby-dev:24590]
* win32/win32.c (isUNCRoot): fixed buffer overrun.
Mon Oct 25 08:03:26 2004 Nobuyoshi Nakada <[email protected]>
* eval.c (get_backtrace): ignore illegal backtrace. [ruby-dev:24587]
Sun Oct 24 00:40:50 2004 Nobuyoshi Nakada <[email protected]>
* eval.c (rb_load, search_required, rb_require_safe, rb_require): use
frozen shared string to avoid outside modification. [ruby-dev:24580]
Sat Oct 23 23:40:34 2004 Yukihiro Matsumoto <[email protected]>
* io.c (rb_io_fptr_finalize): leave stdin/stdout/stderr open in
interpreter termination. [ruby-dev:24579]
Sat Oct 23 22:18:32 2004 Guy Decoux <[email protected]>
* eval.c (frame_free): Guy Decoux solved the leak problem.
Thanks. [ruby-core:03549]
Sat Oct 23 00:20:55 2004 Yukihiro Matsumoto <[email protected]>
* ext/zlib/zlib.c (zstream_append_input): clear klass for z->input
to avoid potential vulnerability.
* ext/zlib/zlib.c (zstream_run): always use zstream_append_input()
to avoid SEGV. [ruby-dev:24568]
Fri Oct 22 12:02:28 2004 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_alias): was warning for wrong condition.
[ruby-dev:24565]
Fri Oct 22 10:36:37 2004 GOTOU Yuuzou <[email protected]>
* lib/webrick/httprequest.rb (WEBrick::HTTPRequest#meta_vars):
should check if path_info is not nil.
Fri Oct 22 00:22:31 2004 Yukihiro Matsumoto <[email protected]>
* ext/zlib/zlib.c (zstream_shift_buffer): should restore class
field of a buffer. [ruby-dev:24562]
Fri Oct 22 00:20:33 2004 Nobuyoshi Nakada <[email protected]>
* string.c (rb_str_include): should not treat char as negative value.
[ruby-dev:24558]
Thu Oct 21 19:06:15 2004 GOTOU Yuuzou <[email protected]>
* lib/webrick/httpresponse.rb (WEBrick::HTTPResponse#send_body_io):
ensure to close @body. (http://bugs.debian.org/277520)
Thu Oct 21 13:11:31 2004 WATANABE Hirofumi <[email protected]>
* io.c (pipe_open): variable name "fpw" is conflicted.
Thu Oct 21 00:36:41 2004 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_alias): should warn on method discarding.
[ruby-dev:24546]
* ext/zlib/zlib.c (zstream_expand_buffer_into): hide internal
string buffer by clearing klass. [ruby-dev:24548]
* parse.y (lex_getline): should not touch ruby_debug_lines if
RIPPER is defined. [ruby-dev:24547]
Wed Oct 20 19:45:13 2004 Yukihiro Matsumoto <[email protected]>
* string.c (str_gsub): reentrant check. [ruby-dev:24432]
Wed Oct 20 12:42:53 2004 Nobuyoshi Nakada <[email protected]>
* io.c (rb_io_getline): rs modification check should not interfere
in the loop.
Wed Oct 20 10:31:33 2004 Yukihiro Matsumoto <[email protected]>
* parse.y (lex_getline): should update ruby_debug_lines.
Wed Oct 20 04:17:55 2004 Yukihiro Matsumoto <[email protected]>
* ext/dbm/dbm.c (fdbm_delete_if): should check if deleting element
is a string. [ruby-dev:24490]
* ext/sdbm/init.c (fsdbm_delete_if): ditto.
Wed Oct 20 01:37:18 2004 Yukihiro Matsumoto <[email protected]>
* array.c (rb_ary_times): Array#* should return an instance of
the class of right operand. [ruby-dev:24526]
* ext/zlib/zlib.c (zstream_detach_buffer): should not expose
class-less object to Ruby world. [ruby-dev:24530]
* eval.c (proc_dup): provide Proc#dup as well. [ruby-talk:116915]
* eval.c (ruby_exec): stack marking position may be higher than
expected. thanks to Guy Decoux. [ruby-core:03527]
Wed Oct 20 00:25:41 2004 Nobuyoshi Nakada <[email protected]>
* eval.c (search_required): required name must not be changed before
loading. [ruby-dev:24492]
Tue Oct 19 23:59:46 2004 Nobuyoshi Nakada <[email protected]>
* eval.c (rb_require_safe): provide the feature after loaded.
[ruby-list:40085]
Tue Oct 19 22:43:12 2004 Dave Thomas <[email protected]>
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_attr): If
we come across 'attr' in a context where it isn't
followed by a symbol, just issue a warning.
Tue Oct 19 20:32:50 2004 Masaki Suketa <[email protected]>
* ext/win32ole.c(ole_invoke): retrieve the result value when
retrying the IDispatch::invoke.
Tue Oct 19 17:24:11 2004 Yukihiro Matsumoto <[email protected]>
* io.c (read_all): block string buffer modification during
rb_io_fread() by freezing it temporarily. [ruby-dev:24479]
* dir.c (rb_push_glob): block call at once the end of method.
[ruby-dev:24487]
* ext/enumerator/enumerator.c (enum_each_slice): remove
rb_gc_force_recycle() to prevent potential SEGV.
[ruby-dev:24499]
* ext/zlib/zlib.c (zstream_expand_buffer): hide internal string
buffer by clearing klass. [ruby-dev:24510]
Tue Oct 19 08:47:21 2004 Nobuyoshi Nakada <[email protected]>
* string.c (rb_str_upto): method result must be checked. [ruby-dev:24504]
* eval.c (error_print): ditto. [ruby-dev:24519]
Mon Oct 18 23:37:05 2004 Nobuyoshi Nakada <[email protected]>
* marshal.c (r_object0): check inheritance by the internal function.
[ruby-dev:24515]
Mon Oct 18 11:29:32 2004 Nobuyoshi Nakada <[email protected]>
* io.c (rb_io_flags_mode, rb_io_mode_flags): distinguish whether file
not existing is created. [ruby-dev:24505]
Mon Oct 18 07:26:21 2004 Nobuyoshi Nakada <[email protected]>
* file.c (rb_file_truncate): discard read buffer before truncation.
[ruby-dev:24197]
Mon Oct 18 01:56:03 2004 GOTOU Yuuzou <[email protected]>
* lib/webrick/httprequest.rb (WEBrick::HTTPRequest#initialize):
initial value of accpet-* should be array.
Mon Oct 18 00:42:45 2004 Yukihiro Matsumoto <[email protected]>
* ext/socket/socket.c (sock_s_getservbyaname): protocol string
might be altered. [ruby-dev:24503]
* string.c (rb_str_upto): check if return value from succ is a
string. [ruby-dev:24504]
Sun Oct 17 23:03:48 2004 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk/timer.rb: TkTimer#start and restart accept a block
Sun Oct 17 12:53:46 2004 Masaki Suketa <[email protected]>
* ext/win32ole/win32ole.c (fole_func_methods): correct argument mismatch.
* ext/win32ole/win32ole.c (fole_get_methods): ditto.
* ext/win32ole/win32ole.c (fole_put_methods): ditto.
* ext/win32ole/tests/testWIN32OLE.rb: add test for WIN32OLE#ole_func_methods
WIN32OLE#ole_get_methods, WIN32OLE#ole_put_methods
Sat Oct 16 14:45:28 2004 Kouhei Sutou <[email protected]>
* lib/rss/0.9.rb (RSS::Rss#to_s): removed garbage.
Sat Oct 16 13:42:49 2004 Kouhei Sutou <[email protected]>
* lib/rss/: untabified.
* test/rss/: untabified.
* lib/rss/0.9.rb (RSS::Rss#to_s): inent -> indent.
Sat Oct 16 13:34:56 2004 Kouhei Sutou <[email protected]>
* lib/rss: supported prety print.
* test/rss/test_1.0.rb: added test for calculating default indent size.
Sat Oct 16 10:56:36 2004 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb (create_makefile): install-rb is needed for statically
linked extensions. [ruby-dev:24491]
Fri Oct 15 18:07:08 2004 GOTOU Yuuzou <[email protected]>
* ext/openssl/ossl_x509store.c
(ossl_x509stctx_initialize): setup OpenSSL::X509::StoreContext with
ossl_x509stctx_* functions instead of X509_STORE_CTX_*.
(ossl_x509store_set_time): add OpenSSL::X509::Store#time=.
(ossl_x509stctx_set_time): add OpenSSL::X509::StoreContext#time=.
* test/openssl/ossl_x509store.rb: test certificate validity times.
Fri Oct 15 18:04:35 2004 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk/timer.rb: TkTimer.new(interval, loop){ ... } is
acceptable. Add TkTimer.start ( == new + start ).
Fri Oct 15 12:43:09 2004 Tanaka Akira <[email protected]>
* eval.c (Init_stack): make prototype declaration consistent with
the definition in gc.c.
Thu Oct 14 13:33:59 2004 Kouhei Sutou <[email protected]>
* lib/rss/rss.rb: added link to Tutorial.
Tue Oct 12 21:22:50 2004 GOTOU Yuuzou <[email protected]>
* lib/webrick/config.rb:
add WEBrick::Config::FileHandler[:AcceptableLanguages].
* lib/webrick/httpservlet/filehandler.rb
(WEBrick::HTTPServlet::FileHandler#set_filename): search files
having suffix of language-name which Accept-Language header field
includes if :AcceptableLanguages options is present.
* lib/webrick/httpservlet/filehandler.rb
(WEBrick::HTTPServlet::FileHandler#get_servlet): new method to
search servlet correspond to the suffix of filename.
* lib/webrick/httprequest.rb: add attributes access methods: accept,
accept_charset, accept_encoding, accept_language, content_length
and content_type.
* lib/webrick/httpresponse.rb: add attribute access methods:
content_length, content_length=, content_type and content_type=.
* lib/webrick/httputils.rb (WEBrick::HTTPUtils.mime_types):
use the second suffix to detect media type. (the first suffix
may be a language name.)
* lib/webrick/httputils.rb (WEBrick::HTTPUtils.parse_qvalues):
add method to parse Accept header field. it returns an Array of
values sorted by the qvalues.
Tue Oct 12 15:05:32 2004 WATANABE Hirofumi <[email protected]>
* io.c (MODE_BINMODE, MODE_BINARY): fixed reversed condition.
Mon Oct 11 17:51:34 2004 Yukihiro Matsumoto <[email protected]>
* io.c (rb_io_popen): get mode string via rb_io_flags_mode() to
avoid mode string modification. [ruby-dev:24454]
* io.c (rb_io_getline_fast): should take delim as unsigned char to
distinguish EOF and '\377'. [ruby-dev:24460]
* io.c (rb_io_getline): add check for RS modification.
[ruby-dev:24461]
* enum.c (enum_sort_by): use qsort() directly instead using
rb_iterate(). [ruby-dev:24462]
* enum.c (enum_each_with_index): remove rb_gc_force_recycle() to
prevent access to recycled object (via continuation for
example). [ruby-dev:24463]
Mon Oct 11 13:48:20 2004 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk/*: untabify
Sun Oct 10 12:32:08 2004 Dave Thomas <[email protected]>
* lib/rdoc/parsers/parse_rb.rb (RDoc::parse_require): Allow 'require'
to be used as a variable name
Sun Oct 10 02:49:14 2004 Minero Aoki <[email protected]>
* ext/ripper/lib/ripper/filter.rb: require ripper/tokenizer.
* ext/ripper/lib/ripper/filter.rb (parse): argument is optional.
Sun Oct 10 02:43:13 2004 Minero Aoki <[email protected]>
* parse.y [ripper]: \n between two comments disappeared.
Sat Oct 9 21:23:37 2004 Kouhei Sutou <[email protected]>
* lib/rss/converter.rb: changed to try to use Iconv for default
conversion.
* lib/rss/rss.rb: 0.0.9 -> 0.1.0.
Sat Oct 9 19:50:36 2004 Nobuyoshi Nakada <[email protected]>
* io.c (rb_io_getline): should not treat char as negative value.
[ruby-dev:24460]
Sat Oct 9 00:25:39 2004 Tanaka Akira <[email protected]>
* io.c (rb_io_fread): rb_thread_wait_fd() was lost.
[ruby-dev:24457]
Fri Oct 8 21:36:56 2004 Minero Aoki <[email protected]>
* lib/fileutils.rb (fu_traverse): return value of Dir.entries is
reliable. (pass $SAFE=1)
* lib/fileutils.rb (remove_dir): return value of Dir.foreach is
reliable. (pass $SAFE=1)
Fri Oct 8 09:49:32 2004 Yukihiro Matsumoto <[email protected]>
* pack.c (pack_pack): pointer modification check before each
iteration. [ruby-dev:24445]
Fri Oct 8 01:13:05 2004 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk/optiondb.rb: make it more secure
Thu Oct 7 23:47:57 2004 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk/scrollbar.rb: When 'set' operation, a scrollbar
cannot propagate view port information from the source widget
(that calls 'set') to other assigned widgets.
Thu Oct 7 17:36:25 2004 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk.rb: When CHILDKILLED and so on, Tk.errorCode returns
a Fixnum for 2nd element (it's pid) of the return value.
Thu Oct 7 12:55:04 2004 Yukihiro Matsumoto <[email protected]>
* io.c (io_read): should freeze buffer before thread context
switch. [ruby-dev:24442]
* pack.c (pack_unpack): string conversion should at the top of the
method. [ruby-dev:24439]
* io.c (io_read): buffer should be frozen only after the length
check. [ruby-dev:24440]
Thu Oct 7 02:56:43 2004 Nobuyoshi Nakada <[email protected]>
* ext/stringio/stringio.c: use FMODE_APPEND.
Thu Oct 7 01:05:33 2004 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk.rb: add Tk.errorInfo and Tk.errorCode
Thu Oct 7 00:08:37 2004 Yukihiro Matsumoto <[email protected]>
* io.c (rb_io_s_sysopen): preserve path in the buffer allocated by
ALLOCA_N() to prevent modification. [ruby-dev:24438]
Wed Oct 6 09:21:00 2004 Yukihiro Matsumoto <[email protected]>
* io.c (rb_io_mode_flags): preserve append mode flag.
[ruby-dev:24436]
* io.c (rb_io_modenum_mode): do not use external output buffer.
* string.c (rb_str_justify): differ pointer retrieval to prevent
padding string modification. [ruby-dev:24434]
* range.c (range_each_func): allow func to terminate loop by
returning RANGE_EACH_BREAK.
* range.c (member_i): use RANGE_EACH_BREAK. [ruby-talk:114959]
Tue Oct 5 09:53:22 2004 Yukihiro Matsumoto <[email protected]>
* io.c (rb_fopen): mode string copy at the lowest level.
* io.c (rb_io_flags_mode): requires output buffer no more. no
allocation needed.
* array.c (rb_ary_index): takes a block to compare items in an
array. [ruby-talk:113069] [Ruby2]
* array.c (rb_ary_rindex): ditto.
Mon Oct 4 14:03:40 2004 Nobuyoshi Nakada <[email protected]>
* io.c (rb_file_open_internal, rb_io_reopen): fname might be altered
while GC. [ruby-dev:24408]
Mon Oct 4 12:53:45 2004 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk/optiondb.rb: support definition of command
resources on widgets
* ext/tk/lib/tk/image.rb: bug fix
Sun Oct 3 21:16:05 2004 Shugo Maeda <[email protected]>
* lib/net/imap.rb (TEXT_REGEXP): allow 8-bit characters for the german
version of Microsoft Exchange Server.
* lib/net/imap.rb (RTEXT_REGEXP): ditto.
* lib/net/imap.rb (CTEXT_REGEXP): ditto.
Sat Oct 2 20:34:05 2004 Nobuyoshi Nakada <[email protected]>
* parse.y (local_vars): moved to struct parser_params.
[ruby-dev:24391]
* parser.y (stmts): remove suspicious NODE_BEGIN. [ruby-dev:24390]
* node.h (NEW_DVAR): extra semicolon.
Sat Oct 2 00:42:20 2004 Yukihiro Matsumoto <[email protected]>
* marshal.c (r_byte): retrieve pointer from string value for each
time. [ruby-dev:24404]
* marshal.c (r_bytes0): ditto.
* enum.c (sort_by_i): re-entrance check added. [ruby-dev:24399]
* io.c (io_read): should freeze all reading buffer.
[ruby-dev:24400]
* string.c (rb_str_sum): should use bignums when bits is greater
than or equals to sizeof(long)*CHAR_BITS. [ruby-dev:24395]
* eval.c (specific_eval): defer pointer retrieval to prevent
unsafe sourcefile string modification. [ruby-dev:24382]
* string.c (rb_str_sum): wrong cast caused wrong result.
[ruby-dev:24385]
* enum.c (enum_sort_by): hide temporary array from
ObjectSpace.each_object. [ruby-dev:24386]
* string.c (rb_str_sum): check was done with false pointer.
[ruby-dev:24383]
* string.c (rb_str_sum): string may be altered. [ruby-dev:24381]
Fri Oct 1 11:40:14 2004 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_f_eval): defer pointer retrieval to prevent unsafe
sourcefile string modification. [ruby-dev:24373]
* io.c (io_read): block string buffer modification during
rb_io_fread() by freezing it temporarily. [ruby-dev:24366]
* io.c (rb_io_s_popen): mode argument may be altered.
[ruby-dev:24375]
* file.c (rb_file_s_basename): ext argument may be altered.
[ruby-dev:24377]
* enum.c (enum_sort_by): use NODE instead of 2 element arrays.
[ruby-dev:24378]
* string.c (rb_str_chomp_bang): StringValue() may change the
receiver. [ruby-dev:24371]
Fri Oct 1 11:25:20 2004 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk/grid.rb: revive TkGrid.grid
* ext/tk/lib/tk/pack.rb: revive TkPack.pack
* ext/tk/lib/tk/place.rb: revive TkPlace.place
Thu Sep 30 00:50:44 2004 Hidetoshi NAGAI <[email protected]>
* ext/tcltklib/tcltklib.c (ip_init): bug fix
* ext/tk/tkutil.c (get_eval_string_core): accept a Regexp object
* ext/tk/lib/multi-tk.rb: fix bug on 'exit' operation
* ext/tk/lib/tk/text.rb: 'tksearch' accepts a Regexp object as a
matting pattern argument
Wed Sep 29 10:58:07 2004 Nobuyoshi Nakada <[email protected]>
* enum.c (sort_by_i): internally used object must not be changed
outside. [ruby-dev:24368]
Mon Sep 27 21:25:12 2004 Nobuyoshi Nakada <[email protected]>
* eval.c (rb_call0): invoke finalizers periodically.
* gc.c (gc_sweep): defer running finalizers. [ruby-dev:24354]
* gc.c (rb_gc_finalize_deferred): run deferred finalizers.
Mon Sep 27 15:01:59 2004 Minero Aoki <[email protected]>
* parse.y [ripper]: missing ';'.
Mon Sep 27 13:46:45 2004 Nobuyoshi Nakada <[email protected]>
* intern.h, struct.c (rb_struct_s_members, rb_struct_members): public
accessors. [ruby-dev:24342]
* marshal.c (w_object, r_object0): use accessors.
Mon Sep 27 09:14:03 2004 Yukihiro Matsumoto <[email protected]>
* array.c (rb_ary_delete): comparison may change the capacity.
[ruby-dev:24348]
* array.c (rb_ary_fill): fill should honor length argument.
[ruby-dev:24346]
* array.c (rb_ary_replace): should not use ptr from shared array.
[ruby-dev:24345]
* ext/socket/socket.c (s_accept): don't retry for EWOULDBLOCK.
[ruby-talk:113807]
Sun Sep 26 08:05:10 2004 Tadayoshi Funaba <[email protected]>
* lib/date.rb: provides {Time,Date,DateTime}#to_{time,date,datetime}.
* sample/cal.rb: uses getoptlong instead of getopts.
Sat Sep 25 18:39:22 2004 Yukihiro Matsumoto <[email protected]>
* array.c (flatten): element size might change during comparison.
[ruby-dev:24343]
Sat Sep 25 01:52:49 2004 Yukihiro Matsumoto <[email protected]>
* struct.c (rb_struct_s_members): wrong call of struct_members.
[ruby-dev:24333]
Fri Sep 24 16:09:42 2004 Yukihiro Matsumoto <[email protected]>
* eval.c (proc_invoke): propagate DVAR_DONT_RECYCLE on termination
to avoid double call to rb_gc_force_recycle(). [ruby-dev:24311]
Fri Sep 24 08:29:45 2004 Yukihiro Matsumoto <[email protected]>
* parse.y (rb_parser_append_print): should handle prelude.
* parse.y (rb_parser_while_loop): ditto.
* array.c (rb_ary_subseq): original object might be modified after
sharing data creation. [ruby-dev:24327]
* array.c (rb_ary_replace): ditto.
* array.c (ary_make_shared): freeze shared array. [ruby-dev:24325]
* struct.c (struct_members): always check struct size and size of
members list in the class. [ruby-dev:24320]
Thu Sep 23 19:48:14 2004 Minero Aoki <[email protected]>
* ext/ripper/Makefile.dev: removed.
* ext/ripper/ripper.rb.in: moved to lib/ripper/core.rb.in.
* ext/ripper/lib/ripper/core.rb: new file.
* ext/ripper/lib/ripper/core.rb.in: new file.
* ext/ripper/tools/generate-ripper_rb.rb: change comment.
* test/ripper/*.rb: on__scan event removed.
* test/ripper/*.rb: event name is changed: on__XXX -> on_XXX.
Thu Sep 23 09:29:14 2004 Yukihiro Matsumoto <[email protected]>
* string.c (rb_str_sub_bang): check if string is not modified
during iteration. [ruby-dev:24315]
* hash.c (rb_hash_rehash): replace st_foreach() by its deep
checking counterpart. [ruby-dev:24310]
Wed Sep 22 14:21:54 2004 Minero Aoki <[email protected]>
* parse.y [ripper]: on__scan event removed.
* parse.y [ripper]: event name is changed: on__XXX -> on_XXX.
* ext/ripper/eventids2.c: ditto.
* ext/ripper/ripper.rb.in: ditto.
* ext/ripper/lib/ripper.rb: sync with ripper.rb.in.
* ext/ripper/lib/ripper/tokenizer: ditto.
* ext/ripper/lib/ripper/filter: new file.
* sample/ripper/colorize.rb: new file.
* sample/ripper/strip-comment.rb: new file.
Wed Sep 22 13:50:49 2004 Yukihiro Matsumoto <[email protected]>
* hash.c (hash_alloc): was using tbl pointer without
initialization.
Wed Sep 22 13:38:12 2004 Yukihiro Matsumoto <[email protected]>
* hash.c (rb_hash_rehash): add iteration check. [ruby-dev:24301]
* st.c (st_foreach): add deep check.