-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
19587 lines (11672 loc) · 624 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 Nov 23 01:22:57 2005 Nobuyoshi Nakada <[email protected]>
* file.c (test_identical): test if two files are identical.
* file.c (rb_f_test): support DOSISH systems where st_ino is not
reliable. fixed: [ruby-core:06672]
* win32.h, win32.c (rb_w32_osid): check the running platform.
Tue Nov 22 23:52:06 2005 Nobuyoshi Nakada <[email protected]>
* lib/optparse.rb: match incomplete (in current enconding) multibyte
string. http://inamode6.tokuhirom.dnsalias.org/show/1551
Tue Nov 22 18:36:11 2005 Hirokazu Yamamoto <[email protected]>
* win32/win32.c (winnt_stat): set mapped errno instead of ENOENT.
Tue Nov 22 14:36:54 2005 NAKAMURA Usaku <[email protected]>
* file.c (rb_file_s_basename): skip slashes just after UNC top slashes.
* test/ruby/test_path.rb (test_dirname, test_basename): follow new
spec. and add new tests.
Tue Nov 22 13:30:15 2005 Hirokazu Yamamoto <[email protected]>
* win32/win32.c (rb_w32_stat): Dir.chdir('//server/shared');
p Dir.glob('*') should work on WinNT. (implemented our own
stat(2) on WinNT) [ruby-list:41552] [ruby-dev:27711]
Tue Nov 22 02:31:53 2005 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tkextlib/tile.rb: bug fix (Tk::Tile::USE_TTK_NAMESPACE
is not defined).
Tue Nov 22 01:45:21 2005 Nobuyoshi Nakada <[email protected]>
* file.c (rb_file_s_basename): DOSISH_UNC is defined on cygwin but
DOSISH is not. fixed: [ruby-dev:27797]
Mon Nov 21 22:50:48 2005 Nobuyoshi Nakada <[email protected]>
* file.c (rb_path_skip_prefix, rb_file_s_basename): UNC without path
should not be splitted. fixed: [ruby-dev:27776] [ruby-dev:27786]
* parse.y (dsym): prohibit empty symbol literal by interpolation.
fixed: [ruby-talk:166529]
Mon Nov 21 16:03:48 2005 Nobuyoshi Nakada <[email protected]>
* win32/setup.mk: findstr doesn't exist on win9x.
fixed: [ruby-dev:27756]
Sun Nov 20 21:39:27 2005 K.Kosako <sndgk393 AT ybb.ne.jp>
* regparse.c (fetch_token_in_cc): tok->escaped should be
initialized. [ruby-dev:27763]
Sun Nov 20 22:34:06 2005 Nobuyoshi Nakada <[email protected]>
* parse.y (rb_symname_p): [ not followed by ] is not valid symbol.
fixed: [ruby-talk:166520]
Sat Nov 19 19:57:54 2005 Yukihiro Matsumoto <[email protected]>
* lib/fileutils.rb (FileUtils::ln): ln documentation fix.
[ruby-core:06661]
Sat Nov 19 08:19:38 2005 Zach Dennis <[email protected]>
* ext/socket/socket.c: Socket Documentation. [ruby-core:6552]
Sat Nov 19 07:34:32 2005 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk/font.rb: remove dependency on Ruby's version (1.8
or 1.9).
* ext/tk/lib/tkextlib/ICONS/icons.rb: ditto.
* ext/tk/sample/tkextlib/treectrl/demo.rb: ditto.
Fri Nov 18 18:07:05 2005 NAKAMURA Usaku <[email protected]>
* file.c (rb_file_s_dirname): should use skipprefix for UNC path.
pointed out by nobu ([ruby-dev:27744]). fixed: [ruby-core:5076]
Fri Nov 18 17:35:09 2005 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/multi-tk.rb: add restriction to access the entried
command table and manipulate other IPs (for reason of security).
Now, a IP object can be controlled by only its master IP or the
default IP.
* ext/tk/lib/remote-tk.rb: add restriction to manipulate.
* ext/tk/tcltklib.c (ip_is_slave_of_p): add TclTkIp#slave_of?(ip)
to check manipulability.
* ext/tk/lib/tk.rb: bug fix on handling of Tcl's namespaces.
* ext/tk/lib/tk/namespace.rb: ditto.
Fri Nov 18 16:47:33 2005 NAKAMURA Usaku <[email protected]>
* file.c (rb_file_s_dirname): added checks for some patterns with drive
letter. fixed: [ruby-dev:27738]
* test/ruby/test_path.rb (test_dirname): added tests for above
patterns.
Fri Nov 18 12:19:16 2005 Hirokazu Yamamoto <[email protected]>
* win32/win32.h (S_IFIFO): r,w = IO.pipe; r.stat.pipe? now
returns true on VisualC++6.
Thu Nov 17 17:58:00 2005 Kouhei Sutou <[email protected]>
* lib/rss/1.0.rb: added convenience method 'resources'.
* lib/rss/taxonomy.rb: ditto.
* test/rss/rss-assertions.rb: added test for 'resources'.
* test/rss/test_taxonomy.rb: ditto.
Thu Nov 17 17:53:30 2005 Kouhei Sutou <[email protected]>
* lib/rss/taxonomy.rb: implemented taxonomy module.
* test/rss/test_taxonomy.rb: added tests for taxonomy support.
Thu Nov 17 17:40:19 2005 Kouhei Sutou <[email protected]>
* lib/rss/1.0.rb: added rdf:Bag.
Thu Nov 17 13:52:00 2005 Kouhei Sutou <[email protected]>
* lib/rss/rss.rb : removed needless argument 'prefix'.
* lib/rss/parser.rb: ditto.
Wed Nov 16 23:24:17 2005 Nobuyoshi Nakada <[email protected]>
* common.mk (static-ruby): overridable.
* ext/extmk.rb (parse_args): force to link extensions statically only
if static is given for extstatic.
* ext/extmk.rb (RUBY, RUBYW): overridable.
Wed Nov 16 01:29:31 2005 Kouhei Sutou <[email protected]>
* lib/rss/trackback.rb: added TrackBack prefix.
* lib/rss/maker/trackback.rb: ditto.
Wed Nov 16 01:26:13 2005 Kouhei Sutou <[email protected]>
* lib/rss/rss.rb (RSS::VERSION): 0.1.5 -> 0.1.6.
* test/rss/test_version.rb (RSS::TestVersion#test_version): ditto.
Tue Nov 15 23:54:24 2005 Nobuyoshi Nakada <[email protected]>
* file.c (file_load_ok): eaccess() returns 0 on success.
fixed: [ruby-dev:27713]
Tue Nov 15 16:36:03 2005 Hirokazu Yamamoto <[email protected]>
* array.c (rb_ary_fill): previous commit disabled this usage:
a = [0,1,2,3,4,5,6,7,8,9]
a.fill {|i| a[i] * 10} #=> [nil, nil, ...., nil]
previous commit has the advantage of early garbage collection, but
potensially this would break some script. so I reverted behavior.
Tue Nov 15 16:15:23 2005 Yukihiro Matsumoto <[email protected]>
* file.c (file_load_ok): use eaccess() instead of actually opening
the file. [ruby-talk:156378]
* lib/jcode.rb (String::reverse): add new methods.
[ruby-list:41245]
Tue Nov 15 15:49:34 2005 Hirokazu Yamamoto <[email protected]>
* array.c (rb_ary_fill): tail elements were vanished when the middle
part of array was filled. (ie: [0,1,2,3,4].fill(-1,2,1) => [0,1,-1])
* test/ruby/test_array.rb (test_fill): added.
Tue Nov 15 14:39:16 2005 Yukihiro Matsumoto <[email protected]>
* array.c (rb_ary_fill): should adjust array length correctly when
an array is expanded in the fill process. [ruby-core:06625]
Mon Nov 14 23:49:57 2005 Nobuyoshi Nakada <[email protected]>
* file.c (rb_file_s_readlink): ERANGE will occur only on GPFS.
[ruby-dev:27699]
Mon Nov 14 17:36:22 2005 Yukihiro Matsumoto <[email protected]>
* array.c (rb_ary_first): RDoc update from Daniel Berger
<[email protected]>. [ruby-core:06577].
Sun Nov 13 10:55:24 2005 Minero Aoki <[email protected]>
* lib/uri/common.rb (escape): regard second argument as a
character set. [ruby-dev:27692]
Sat Nov 12 08:36:40 2005 Nobuyoshi Nakada <[email protected]>
* configure.in, eval.c, intern.h: check fd_mask type.
* configure.in (socketpair): need to be checked.
Fri Nov 11 19:53:47 2005 Hirokazu Yamamoto <[email protected]>
* eval.c, intern.h: failed to compile where NFDBITS is defined but
howmany() is not defined. [ruby-dev:27680]
* io.c (is_socket): failed to compile where S_ISSOCK is not defined.
* io.c (pipe_open): failed to compile where socketpair is not supported.
Fri Nov 11 08:20:56 2005 Nobuyoshi Nakada <[email protected]>
* Makefile.in (OUTFLAG): keep trailing spaces. [ruby-dev:27666]
* mkconfig.rb: substitution refereces added.
Fri Nov 11 07:39:49 2005 Hirokazu Yamamoto <[email protected]>
* configure.in: undef HAVE_LINK on BeOS. (link(2) always returns
EINVAL, and this causes error in test/fileutils.)
* file.c: overwride chown(2) and fchown(2) on BeOS. (these functions
should not change user/group id if -1 is passed as corresponding
argument, and this causes error in test/fileutils too)
[ruby-dev:27672]
Thu Nov 10 21:05:03 2005 Nobuyoshi Nakada <[email protected]>
* lib/shellwords.rb: fix for blank but not empty string.
fixed: [ruby-dev:27663]
Wed Nov 9 08:39:38 2005 Nobuyoshi Nakada <[email protected]>
* lib/shellwords.rb: refactored. [ruby-core:06581]
Tue Nov 8 17:35:53 2005 Hirokazu Yamamoto <[email protected]>
* intern.h, eval.c (rb_thread_signal_raise): costified.
* signal.c: cosmetic change.
Tue Nov 8 15:32:27 2005 GOTOU Yuuzou <[email protected]>
* lib/drb/ssl.rb (DRb::SSLConfig#accept): fixed typo.
[ruby-dev:27560] [ruby-core:4627]
Mon Nov 7 20:54:57 2005 Nobuyoshi Nakada <[email protected]>
* ext/iconv/iconv.c: iconvctl() support. [EXPERIMENTAL]
Mon Nov 7 16:23:23 2005 NAKAMURA Usaku <[email protected]>
* ext/openssl/ossl.h: need to include winsock2.h before including
windows.h by some openssl headers.
Mon Nov 7 13:43:51 2005 Hidetoshi NAGAI <[email protected]>
* ext/tk/stubs.c (_nativethread_consistency_check): use simpler
(low cost) way to check whether the Tcl interpreter was compiled
with threads enabled of not.
* ext/tk/tcltklib.c: reduce warnings.
* ext/tk/tkutil/tkutil.c: ditto.
Mon Nov 7 00:06:12 2005 Hirokazu Yamamoto <[email protected]>
* lib/yaml.rb: removed :nodoc: to generate Kernel doc. [ruby-core:6324]
Sun Nov 6 23:39:13 2005 Nobuyoshi Nakada <[email protected]>
* ext/iconv/iconv.c (Iconv::BrokenLibrary): exception when detected a
bug of underlying library.
Sun Nov 6 21:43:22 2005 Hirokazu Yamamoto <[email protected]>
* ext/tk/stubs.c (ruby_tcl_create_ip_and_stubs_init): should touch
interpreter after initialization is done. [ruby-dev:27638]
Sun Nov 6 20:13:27 2005 Nobuyoshi Nakada <[email protected]>
* file.c (rb_file_s_readlink): readlink(2) on AIX fails with ERANGE if
buffer size is less than required. fixed: [ruby-dev:27634]
Sat Nov 5 13:42:50 2005 Nobuyoshi Nakada <[email protected]>
* configure.in, cygwin/GNUmakefile.in (mingw): use def file to alias
symbols. [ruby-dev:27532]
* bcc32/mkexports.rb, win32/mkexports.rb: make aliases in DLL.
* win32/win32.c, win32/win32.h: replace symbols only when RUBY_EXPORT
is defined.
Thu Nov 3 07:57:39 2005 Minero Aoki <[email protected]>
* lib/open-uri.rb (open_loop): find_proxy should return nil when
proxy does not exist. [ruby-dev:27630]
Wed Nov 2 20:25:28 2005 Hidetoshi NAGAI <[email protected]>
* ext/tk/extconf.rb: ext/tk/extconf.rb: change the check parameter
for Win32.
Wed Nov 2 19:03:06 2005 Hidetoshi NAGAI <[email protected]>
* ext/tk/tcltklib.c (ip_rbUpdateObjCmd, ip_rb_threadUpdateObjCmd):
passed improper flags to DoOneEvent().
* ext/tk/tkutil/tkutil.c: use rb_obj_respond_to() instead of
rb_respond_to().
Tue Nov 1 14:20:11 2005 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_call_super): should call method_missing if super is
called from Kernel method.
* eval.c (exec_under): frame during eval should preserve external
information.
Tue Nov 01 10:48:49 2005 GOTOU Yuuzou <[email protected]>
* ext/openssl/extconf.rb: should check ERR_peek_last_error().
[ruby-dev:27597]
* ext/openssl/ossl.c (ossl_raise): ditto.
Mon Oct 31 17:34:46 2005 Yukihiro Matsumoto <[email protected]>
* configure.in: use proper option for Sun linker. A patch from
Shinya Kuwamura <[email protected]>. [ruby-dev:27603]
Mon Oct 31 05:46:08 2005 GOTOU Yuuzou <[email protected]>
* ext/openssl/ossl_cipher.c (ossl_cipher_update): input data must
not be empty. [ruby-talk:161220]
* test/openssl/test_cipher.rb: add test for Cipher#update("").
Mon Oct 31 05:38:26 2005 GOTOU Yuuzou <[email protected]>
* lib/webrick/httpservlet/cgihandler.rb
(WEBrick::HTTPServlet::CGIHandler#do_GET): the value of Set-Cookie:
header field should be splited into each cookie. [ruby-Bugs:2199]
* lib/webrick/cookie.rb (WEBrick::Cookie.parse_set_cookie): new method
to parse the value of Set-Cookie: header field.
* test/webrick/test_cookie.rb, test/webrick/test_cgi.rb,
test/webrick/webrick.cgi: add some test for cookie.
Mon Oct 31 02:33:25 2005 Yukihiro Matsumoto <[email protected]>
* numeric.c (fix_rshift): RDoc fix. [ruby-core:6351]
* util.h (strtod): add #undef for platforms defines strtod()
macro. [ruby-dev:27563]
Mon Oct 31 02:31:41 2005 Hirokazu Yamamoto <[email protected]>
* test/ruby/test_float.rb (test_precision): test by assert_in_delta.
[ruby-dev:27575]
Sat Oct 29 01:58:25 2005 Yukihiro Matsumoto <[email protected]>
* ext/etc/etc.c: document update from mathew <[email protected]>.
[ruby-core:06473]
* ext/fcntl/fcntl.c: ditto.
Sat Oct 29 16:56:03 2005 Tadayoshi Funaba <[email protected]>
* lib/date.rb: added seven predicates sunday? to saturday?.
* lib/date.rb: added two methods {prev,next}_month,
that are almost same as << and >>.
Thu Oct 27 20:34:43 2005 Nobuyoshi Nakada <[email protected]>
* enumerator.c (enumerator_allocate): allow subclassing.
Thu Oct 27 16:45:31 2005 Yukihiro Matsumoto <[email protected]>
* string.c (scan_once): wrong condition to use mbclen2().
[ruby-dev:27535]
Thu Oct 27 11:53:17 2005 Hirokazu Yamamoto <[email protected]>
* missing.h, missing/memcmp.c, missing/memmove.c:
ANSI compatible interface.
Wed Oct 26 09:15:48 2005 Hirokazu Yamamoto <[email protected]>
* ext/syck/implicit.c (syck_type_id_to_uri): should return
newly allocated memory. otherwise, type_id will be freed
twice. [ruby-dev:27384] [ruby-core:6385]
Wed Oct 26 01:58:19 2005 Nobuyoshi Nakada <[email protected]>
* configure.in (RUBY_EXTERN): macro to export symbols in shared
library. [ruby-core:05528]
* defines.h, {bcc32,win32,wince}/Makefile.sub (RUBY_EXTERN): moved to
configuration pass.
* ext/extmk.rb (extmake): RUBY_EXTERN for static linked extensions.
Tue Oct 25 20:06:59 2005 Hirokazu Yamamoto <[email protected]>
* ruby.h (Qfalse, Qtrue, Qnil, Qundef): make sure these immediate
values have VALUE type. there is an environment where sizeof(VALUE)
!= sizeof(int) like IA64. if 32bit integer (Qtrue) is passed to ANYARGS
and received by 64bit integer (VALUE), upper bits may have garbage value.
[ruby-dev:27513]
Tue Oct 25 15:32:00 2005 Yukihiro Matsumoto <[email protected]>
* lib/rational.rb: applied documentation patch from Gavin Sinclair
<[email protected]>. [ruby-core:06364]
* lib/irb.rb (IRB::Irb::eval_input): handle prompts with newlines
in irb auto-indentation mode. [ruby-core:06358]
Tue Oct 25 14:21:46 2005 Hirokazu Yamamoto <[email protected]>
* gc.c (garbage_collect): sorry, previous commit was incorrect.
[ruby-core:6386]
Tue Oct 25 13:40:16 2005 Hirokazu Yamamoto <[email protected]>
* gc.c (garbage_collect): return now whether there're rooms for new
objects, rather than whether GC run. fixed: [ruby-core:6376]
Tue Oct 25 02:12:08 2005 Nobuyoshi Nakada <[email protected]>
* lib/rdoc/markup/simple_markup.rb (SM::SimpleMarkup::LABEL_LIST_RE):
reduce redundant backtrack. [ruby-talk:161771]
Tue Oct 25 00:35:33 2005 Masatoshi SEKI <[email protected]>
* lib/rinda/*: RDoc documentation from Eric Hodel
<[email protected]> added.
Mon Oct 24 21:14:29 2005 Nobuyoshi Nakada <[email protected]>
* configure.in, io.c: use sys/syscall.h if syscall.h is not available.
[ruby-core:06247]
Mon Oct 24 20:38:25 2005 NAKAMURA Usaku <[email protected]>
* ext/Win32API/lib/win32/resolv.rb (get_info): support multiple DNS.
fixed: [ruby-list:40058], [ruby-dev:27479]
Mon Oct 24 11:01:11 2005 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk/canvas.rb (TkCanvasItemConfig::__item_val2ruby_optkeys):
typo fixed. [ruby-talk:162187]
* ext/tk/lib/tk/menu.rb (TkMenuEntryConfig::__item_val2ruby_optkeys):
ditto. [ruby-core:06359]
Mon Oct 24 07:57:56 2005 Yukihiro Matsumoto <[email protected]>
* ext/tk/lib/tk/canvas.rb (TkCanvasItemConfig::__item_val2ruby_optkeys):
typo fixed. [ruby-talk:162187]
* ext/tk/lib/tk/menu.rb (TkMenuEntryConfig::__item_val2ruby_optkeys):
ditto. [ruby-core:06359]
* lib/matrix.rb (Matrix::initialize): use funcall instead of send
to allow private methods to be called. A report from
Jean-Claude Arbaut <[email protected]>. [ruby-core:06359]
Mon Oct 24 00:41:18 2005 Yukihiro Matsumoto <[email protected]>
* time.c (time_sunday): added predicate methods for the days of the
week. [ruby-list:41340]
Sun Oct 23 07:11:11 2005 Hidetoshi NAGAI <[email protected]>
* ext/tk/extconf.rb: improve messages [ruby-core:06325].
* ext/tk/lib/tk.rb, ext/tk/lib/tk/canvas.rb, ext/tk/lib/tk/entry.rb,
ext/tk/lib/tk/frame.rb, ext/tk/lib/tk/image.rb,
ext/tk/lib/tk/itemconfig.rb, ext/tk/lib/tk/labelframe.rb,
ext/tk/lib/tk/listbox.rb, ext/tk/lib/tk/menu.rb,
ext/tk/lib/tk/radiobutton.rb, ext/tk/lib/tk/scale.rb,
ext/tk/lib/tk/spinbox.rb, ext/tk/lib/tk/text.rb,
ext/tk/lib/tk/toplevel.rb: improve conversion of option values.
* ext/tk/lib/tkextlib/*: ditto.
* ext/tk/lib/tkextlib/*: update to support ActiveTcl8.4.11.2.
* ext/tk/lib/tkextlib/trofs/*: support Trofs 0.4.3.
* ext/tk/lib/tkextlib/tile/*: support Tile 0.7.2.
* ext/tk/lib/tkextlib/vu/*: support vu 2.3.0.
* ext/tk/lib/tkextlib/tcllib/*: support Tcllib 1.8 (Tklib 0.3).
Sat Oct 22 23:54:07 2005 Nobuyoshi Nakada <[email protected]>
* ext/extmk.rb, lib/mkmf.rb (with_config): support --with-extension
options. [ruby-dev:27449]
Sat Oct 22 14:25:43 2005 Hirokazu Yamamoto <[email protected]>
* util.[hc] (ruby_add_suffix): constified.
* util.[hc] (ruby_scan_{oct,hex}): fixed typo. (renamed from
scan_{oct,hex})
* util.c: almostly ANSI styled. (except for functions depending on
macro and K&R technique)
Sat Oct 22 13:26:57 2005 Nobuyoshi Nakada <[email protected]>
* object.c (sym_inspect), parse.y (parser_yylex, rb_symname_p): check
if valid as a symbol name more strictly. [ruby-dev:27478]
* test/ruby/test_symbol.rb: tests for [ruby-core:03573].
* time.c (rb_strftime): removed meaningless volatile modifiers, and
concatenate successive nul characters at once. [ruby-dev:27472]
* ext/tk/lib/tk/font.rb, ext/tk/lib/tkextlib/ICONS/icons.rb,
ext/tk/sample/tkextlib/treectrl/demo.rb, lib/net/imap.rb,
lib/rss/parser.rb, test/rss/test_content.rb,
test/rss/test_dublincore.rb, test/rss/test_syndication.rb,
test/rss/test_trackback.rb, test/ruby/test_eval.rb,
test/socket/test_socket.rb, test/socket/test_udp.rb:
Object#fcall was renamed as Object#funcall.
Sat Oct 22 10:08:28 2005 Hirokazu Yamamoto <[email protected]>
* missing.h, missing/*.c: SUSv3 compatible strcasecmp and strncasecmp,
ANSI compatible strtol and strtoul, and ANSI styled other functions.
Fri Oct 21 19:16:08 2005 Hirokazu Yamamoto <[email protected]>
* rubysig.h (CHECK_INTS): fixed typo. (I believe bit-or is improper)
Fri Oct 21 17:49:32 2005 Yukihiro Matsumoto <[email protected]>
* bin/erb (ERB::Main::run): typo fixed. [ruby-core:06337]
Fri Oct 21 15:42:28 2005 Hirokazu Yamamoto <[email protected]>
* intern.h, struct.c (rb_struct_iv_get): constified.
* marshal.c: avoid one VC++6 warning for implicit conversion
from int to char.
* ruby.h: ANSI styled.
* bcc32/Makefile.sub (HAVE_HYPOT): added.
* ext/socket/extconf.rb: BeOS is only one platform should call
closesocket, so check __BEOS__ macro directly. (I was worried
accidently HAVE_CLOSESOCKET is defined on windows again because
it has it)
* ext/socket/{getaddrinfo.c,socket.c}: ditto.
... these are all cosmetic changes.
Fri Oct 21 15:23:23 2005 Hirokazu Yamamoto <[email protected]>
* bignum.c (bignew_1): convertion from `int' to `char' discards
upper bits, (ie. (char)0xff00 -> 0) so it's better to test if
nonzero and set 0 or 1 instead of simply casting ... as a flag usage.
(but I believe this won't cause actual bug in current implementation)
[ruby-dev:27055]
* time.c: should use LONG_LONG instead of `long long'.
Thu Oct 20 22:22:49 2005 Nobuyoshi Nakada <[email protected]>
* parser.y (struct parser_params): parser never modify input string.
* ext/ripper/tools/preproc.rb (prelude): do not append surplus
newlines to fix line numbers.
Thu Oct 20 11:41:57 2005 Hirokazu Yamamoto <[email protected]>
* class.c, eval.c, hash.c, st.c, variable.c: changed /* ??? */ stuff
protoize generated to ANYARGS.
Thu Oct 20 11:18:11 2005 Hirokazu Yamamoto <[email protected]>
* eval.c, file.c, ruby.c: removed strchr, strrchr, strstr definition
because they are defined in missing.h.
* missing.h, missing/strchr.c, missing/strstr.c: ANSI styled.
Thu Oct 20 09:36:06 2005 Hirokazu Yamamoto <[email protected]>
* lib/mkmf.rb (create_makefile): Borland make seems not to allow
empty dependency list. If this change is not good, please correct
it.
Thu Oct 20 07:55:09 2005 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb (create_makefile): get rid of a restriction
of Borland make. fixed: [ruby-dev:27460]
* ext/ripper/depend: ditto.
Wed Oct 19 23:58:03 2005 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb (create_makefile): do not create unnecessary empty
directories. fixed: [ruby-dev:27451]
Wed Oct 19 08:28:32 2005 Nobuyoshi Nakada <[email protected]>
* file.c (rb_file_join): elements may contain null pointer strings.
report and fixed by Lloyd Zusman (hippoman): [ruby-core:06326]
Wed Oct 19 02:34:33 2005 Nobuyoshi Nakada <[email protected]>
* enumerator.c, eval.c, gc.c, parse.y, regparse.c, sjis.c, time.c:
made internal symbols static. [ruby-dev:27435]
Tue Oct 18 10:58:27 2005 NAKAMURA Usaku <[email protected]>
* ext/dl/depend, ext/dl/extconf.rb, ext/socket/depend,
ext/socket/extconf.rb: shouldn't define DESTCLEANFILES in depend,
use $distcleanfiles in extconf.rb.
* win32/Makefile.sub (distclean-local): should remove .config.h.time.
Mon Oct 17 09:42:50 2005 NAKAMURA Usaku <[email protected]>
* mkconfig.rb: fixup configure_args for mswin32 configure.
* win32/configure.bat (srcdir, target): ditto.
Mon Oct 17 05:01:50 2005 Yukihiro Matsumoto <[email protected]>
* env.h: move struct METHOD and struct BLOCK from eval.c to
support NodeWrap and ParseTree.
Sun Oct 16 22:16:51 2005 Nobuyoshi Nakada <[email protected]>
* ext/extmk.rb: omit non-existing directories.
Sun Oct 16 14:40:54 2005 Masatoshi SEKI <[email protected]>
* lib/rinda/rinda.rb (Rinda::Tuple#initialize): check remote hash
tuple. fixed: [ruby-list:41227]
* test/rinda/test_rinda.rb: test it.
Sun Oct 16 03:38:07 2005 Yukihiro Matsumoto <[email protected]>
* rubysig.h (CHECK_INTS): prevent signal handler to run during
critical section. [ruby-core:04039]
* eval.c (load_wait): need not to call rb_thread_schedule()
explicitly. [ruby-core:04039]
* eval.c (rb_thread_schedule): clear rb_thread_critical.
[ruby-core:04039]
Sun Oct 16 00:13:14 2005 NAKAMURA Usaku <[email protected]>
* win32/configure.bat: remove unnecessary line which prevents
creating Makefile.
Sat Oct 15 23:52:07 2005 Shugo Maeda <[email protected]>
* lib/net/ftp.rb: (getbinaryfile): allow nil for localfile, and
returns retrieved data if localfile is nil.
* lib/net/ftp.rb: (gettextfile): ditto.
Sat Oct 15 19:51:29 2005 Masatoshi SEKI <[email protected]>
* bin/erb: typo fixed, again. thanks, Doug Kearns.
Fri Oct 14 23:09:31 2005 Nobuyoshi Nakada <[email protected]>
* win32/Makefile.sub (MKFILES): update MKFILES if configure files get
changed.
* win32/configure.bat, win32/setup.mak (configure_args): store
arguments to configure files.
Fri Oct 14 22:05:45 2005 NAKAMURA Usaku <[email protected]>
* win32/win32.c (ioctl): should set errno.
Fri Oct 14 16:39:37 2005 GOTOU Yuuzou <[email protected]>
* lib/webrick/config.rb (Config::FileHandler): :UserDir should be nil.
It is harmful to permit the access to ~/public_html by default.
suggested by Hiroyuki Iwatsuki.
Fri Oct 14 04:58:38 2005 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_obj_instance_exec): create instance_exec and
module_exec which pass arguments to the block.
* eval.c (rb_f_funcall): rename fcall to funcall to follow
tradition.
Thu Oct 13 23:29:51 2005 Nobuyoshi Nakada <[email protected]>
* parse.y (HEAPCNT): bison allocates indivisible size.
fixed: [ruby-core:06261]
* io.c, pack.c, ext/syck/rubyext.c, ext/syck/syck.h, missing/isinf.c:
get rid of warnings. fixed: [ruby-core:06247]
Wed Oct 12 12:51:56 2005 GOTOU Yuuzou <[email protected]>
* ext/openssl/ossl.c (Init_openssl): should call
OpenSSL_add_ssl_algorithms().
Wed Oct 12 11:08:54 2005 WATANABE Hirofumi <[email protected]>
* file.c (rb_f_test): typo in RDoc comments.
Tue Oct 11 21:41:58 2005 Nobuyoshi Nakada <[email protected]>
* configure.in (RUBY_FUNC_ATTRIBUTE): check prefixed attribute form
first. [ruby-dev:27398]
* array.c, enum.c, eval.c, util.c: safer function pointer usage.
fixed: [ruby-core:06143]
* util.h (qsort): removed the definition incompatible to ANSI.
fixed: [ruby-core:06147]
* eval.c (rb_obj_respond_to): check if obj responds to the given
method with the given visibility. [ruby-dev:27408]
* eval.c (rb_respond_to): conform to Object#respond_to?. [ruby-dev:27411]
Tue Oct 11 00:01:21 2005 Yukihiro Matsumoto <[email protected]>
* st.c (st_free_table): do not call free() but xfree().
[ruby-core:06205]
Sat Oct 8 19:49:42 2005 Nobuyoshi Nakada <[email protected]>
* eval.c (Init_Binding): add Binding#dup method. [yarv-dev:666]
* io.c (rb_io_init_copy): clear PREP flag for copied IO.
fixed: [ruby-dev:27371]
* parse.y (rb_parser_malloc, rb_parser_free): manage parser stack on
heap. [ruby-list:41199]
* parse.y (ripper_initialize): use rb_respond_to().
* ext/ripper/depend (check): get rid of re-generating ripper.y always.
* ext/iconv/charset_alias.rb: parse config.charset_alias file directly.
* ext/nkf/lib/kconv.rb (Kconv.conv): get rid of nil.to_a.
* lib/scanf.rb (Scanf::FormatSpecifier#letter, #width): use matched
substring directly.
* test/ruby/test_assignment.rb, test/ruby/test_iterator.rb: followed
change of sample/test.rb.
* test/net/http/test_http.rb: removed superfluous splatting stars.
Fri Oct 7 16:41:43 2005 Yukihiro Matsumoto <[email protected]>
* eval.c (splat_value): call rb_Array() to convert svalue to
values. [ruby-dev:27397]
Fri Oct 7 09:54:00 2005 Yukihiro Matsumoto <[email protected]>
* lib/cgi.rb (CGI::Cookie::parse): Cookies from Nokia devices may
not be parsed correctly. A patch from August Z. Flatby
(augustzf) in [ruby-Patches-2595]. [ruby-core:06183]
Thu Oct 6 22:51:30 2005 Yukihiro Matsumoto <[email protected]>
* object.c (rb_Array): Array() to raise error for objects without
to_ary, nor to_a.
* object.c (nil_to_a): revert NilClass#to_a.
Thu Oct 6 20:10:38 2005 Minero Aoki <[email protected]>
* ext/strscan/strscan.c (strscan_free): remove useless code.
[ruby-dev:26368] [ruby-dev:27389]
Thu Oct 6 01:02:19 2005 Yukihiro Matsumoto <[email protected]>
* range.c (rb_range_beg_len): should return Qfalse for non-range
object.
Wed Oct 5 04:42:38 2005 GOTOU Yuuzou <[email protected]>
* lib/xmlrpc/server.rb (XMLRPC::Server#initialize): should mount the
servlet on "/".
Wed Oct 5 04:06:49 2005 GOTOU Yuuzou <[email protected]>
* lib/xmlrpc/server.rb (XMLRPC::Server#serve): delete wrong call
of "join".
Mon Oct 3 00:04:00 2005 Kazuhiro NISHIYAMA <[email protected]>
* pack.c (EXTEND16): [ruby-dev:27383]
Sat Oct 1 23:55:24 2005 NAKAMURA Usaku <[email protected]>
* win32/win32.c (do_select, rb_w32_select): brush up.
Sat Oct 1 12:57:02 2005 Tanaka Akira <[email protected]>
* bignum.c (rb_big_rand): removed. [ruby-dev:25405]
Sat Oct 1 01:46:51 2005 Tanaka Akira <[email protected]>
* lib/open-uri.rb (OpenURI.open_loop): prohibit multiple proxy
options.
Thu Sep 29 10:26:18 2005 Tanaka Akira <[email protected]>
* ext/dl/cptr.c (rb_dlptr_s_to_ptr): abolish sizeof(FILE).
[ruby-dev:27317]
Thu Sep 29 10:15:14 2005 Tanaka Akira <[email protected]>
* lib/open-uri.rb (:proxy_http_basic_authentication): new option.
Thu Sep 29 07:22:05 2005 Nobuyoshi Nakada <[email protected]>
* eval.c (rb_f_send): underscores need to be escaped.
fixed by Doug Kearns. [ruby-core:06053]
Thu Sep 29 00:57:35 2005 Nobuyoshi Nakada <[email protected]>
* eval.c (ev_const_get), variable.c (rb_const_get_0): retry only when
autoload succeeded.
* variable.c (rb_autoload_load): now return true if autoload
succeeded. fixed: [ruby-dev:27331]
Wed Sep 28 23:40:04 2005 Nobuyoshi Nakada <[email protected]>
* file.c (rb_stat_inspect): constified.
Wed Sep 28 15:12:28 2005 GOTOU Yuuzou <[email protected]>
* lib/webrick/cgi.rb (WEBrick::CGI#start): req.query_string should
refer the value of QUERY_STRING. [ruby-list:41186]
* lib/webrick/httprequest.rb (WEBrick::HTTPRequest#query_string=):
add new method.
Wed Sep 28 10:45:44 2005 Hidetoshi NAGAI <[email protected]>
* ext/tk/tcltklib.c: cannot compile with Tcl/Tk8.0.x [ruby-dev:27335].
Wed Sep 28 07:56:52 2005 Nobuyoshi Nakada <[email protected]>
* lib/yaml/basenode.rb (YAML::BaseNode::match_segment): fix typo.
[ruby-dev:27237], [ruby-core:05854]
* lib/yaml/tag.rb (Module#yaml_as): suppress warnings.
* lib/yaml/types.rb (YAML::PrivateType, YAML::DomainType): ditto.
Wed Sep 28 03:16:41 2005 NAKAMURA Usaku <[email protected]>
* rubysig.h: fixed build problem with --enable-pthread on platforms
which don't have setitimer().
Mon Sep 26 22:32:13 2005 Yukihiro Matsumoto <[email protected]>
* eval.c (set_trace_func): add rb_secure(4) to prevent adding
tracing function.
Mon Sep 26 20:59:28 2005 Hirokazu Yamamoto <[email protected]>
* parse.y: changed to ANSI function style.
Sun Sep 25 12:02:04 2005 Masatoshi SEKI <[email protected]>
* bin/erb: typo fixed.
Sun Sep 25 11:54:11 2005 Masatoshi SEKI <[email protected]>
* lib/rinda/tuplespace.rb (Rinda::TemplateEntry::initialize): pull
up method. Tabs converted to spaces.
Sun Sep 25 09:34:22 2005 Hirokazu Yamamoto <[email protected]>
* parse.y: replaced `foo _((boo))' with `foo(boo)'.
Sun Sep 25 08:19:53 2005 Nobuyoshi Nakada <[email protected]>
* test/rss/test_content.rb, test/rss/test_syndication.rb: use fcall
instead of send in order to override visibility.
Sun Sep 25 01:46:43 2005 Nobuyoshi Nakada <[email protected]>
* misc/ruby-mode.el (ruby-calculate-indent): arrange deep-indent
closing parenthesis at same column as the opening.
Sun Sep 25 01:33:41 2005 Tanaka Akira <[email protected]>
* process.c (proc_setrlimit): make the third argument (rlim_max)
optional.
Sun Sep 25 00:42:11 2005 Nobuyoshi Nakada <[email protected]>
* misc/ruby-mode.el (ruby-expr-beg): deal with heredoc separately.
fixed: [ruby-list:41168]
* misc/ruby-mode.el (ruby-calculate-indent): not to deepen indent
level for continuous line inside parentheses.
http://nabeken.tdiary.net/20050915.html#p02
Sat Sep 24 21:19:39 2005 Minero Aoki <[email protected]>
* ext/strscan/strscan.c: document enhancement.
* ext/strscan/strscan.c: update copyright year.
* ext/strscan/strscan.c: update coding style.
Sat Sep 24 20:20:05 2005 Minero Aoki <[email protected]>
* test/net/http/test_http.rb (teardown): Net::HTTP.version_1_1 breaks
many other tests; ensure that Net::HTTP is version 1.2 after test.
[ruby-dev:27312]
Sat Sep 24 11:44:28 2005 Minero Aoki <[email protected]>
* test/net/http/test_http.rb: new file.
Sat Sep 24 08:54:05 2005 Minero Aoki <[email protected]>
* lib/fileutils.rb (cd): no longer accept :noop option, related
code is useless. [ruby-core:05858] [ruby-Bugs:2494]
Sat Sep 24 08:30:00 2005 Tanaka Akira <[email protected]>
* lib/pathname.rb (Pathname#sub): new method.
Sat Sep 24 08:29:36 2005 Minero Aoki <[email protected]>
* lib/fileutils.rb: fix visibility of FileUtils::NoWrite, Verbose,
DryRun. [ruby-core:05954]
* test/fileutils/test_nowrite.rb: test it.
* test/fileutils/test_dryrun.rb: new file.
* test/fileutils/test_verbose.rb: new file.
Sat Sep 24 07:59:01 2005 Minero Aoki <[email protected]>
* sample/ripper/colorize.rb: removed (replaced by ruby2html.rb).
* sample/ripper/ruby2html.rb: added.
Sat Sep 24 06:35:15 2005 Minero Aoki <[email protected]>
* ext/ripper: no longer generates .rb files.
* parse.y (Init_ripper): ripper_init_eventids*() takes 1 argument,
self (class Ripper).
* ext/ripper/depend: target removed: `lib/ripper/core.rb'.
* ext/ripper/depend: new target `eventids2table.c'.
* ext/ripper/depend: new target `check'.