-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog-1.8.0
24345 lines (13673 loc) · 728 KB
/
ChangeLog-1.8.0
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
Mon Aug 4 17:21:19 2003 Yukihiro Matsumoto <[email protected]>
* class.c (class_instance_method_list): methods defined in
singleton class and extended modules should be included.
[ruby-dev:21119]
Mon Aug 4 13:05:57 2003 Yukihiro Matsumoto <[email protected]>
* eval.c (method_proc): should specify YIELD_FUNC_SVALUE.
[ruby-dev:21107]
* marshal.c (w_object): should not call w_extended for USRMARSHAL
dump. [ruby-dev:21106]
Mon Aug 4 10:42:00 2003 Nathaniel Talbott <[email protected]>
* lib/test/unit/ui/console/testrunner.rb: Flushed io in the
Console::TestRunner so that it will output immediately.
Mon Aug 4 10:27:22 2003 Nobuyoshi Nakada <[email protected]>
* util.h: remove unnecessary parentheses. [ruby-dev:20879]
Mon Aug 4 10:00:47 2003 Shugo Maeda <[email protected]>
* lib/net/imap.rb (receive_responses): raise exception to
client_thread. Thanks to William Webber.
Mon Aug 4 09:22:53 2003 William Webber <[email protected]>
* lib/net/imap.rb: convert RD to RDoc.
Mon Aug 4 02:34:05 2003 NAKAMURA Usaku <[email protected]>
* win32/win32.c (rb_w32_utime): never use utime() of C runtime.
[ruby-talk:77782]
Sun Aug 3 23:56:50 2003 Nobuyoshi Nakada <[email protected]>
* eval.c (rb_call_super): should propagate previous block for
super call. [ruby-talk:77884]
Sun Aug 3 22:07:47 2003 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tkentry.rb: support 'validatecommand' option of
TkEntry/TkSpinbox widget
* ext/tk/sample/{demos-en,demos-jp}/spin.rb: add
Sun Aug 3 19:25:28 2003 Nobuyoshi Nakada <[email protected]>
* eval.c (call_trace_func): clear exception flag temporarily.
[ruby-dev:21090]
Sun Aug 3 18:03:44 2003 WATANABE Hirofumi <[email protected]>
* regex.h (re_mbctab): should refer to RUBY_EXPORT. [ruby-ext:02199]
* lib/un.h (help): new. % ruby -run -e help cp
Sun Aug 3 08:53:06 2003 Hidetoshi NAGAI <[email protected]>
* ext/tk/sample/{demos-en,demos-jp}/image3.rb: add
* ext/tk/lib/tkcanvas.rb: bug fix on Tk object ID management
* ext/tk/lib/tktext.rb: ditto
Sun Aug 3 02:55:52 2003 Hidetoshi NAGAI <[email protected]>
* process.c: modify macro to detect 'MacOS X' [ruby-talk:77849]
* ext/tcltklib/lib/tcltk.rb: bug fix ( NOT MAINTAINED : only
for running 'line2.rb' demo. )
Sun Aug 3 02:45:06 2003 Koji Arai <[email protected]>
* numeric.c (flo_to_s): get rid of buffer overflow.
Sat Aug 2 23:51:52 2003 Yukihiro Matsumoto <[email protected]>
* io.c (appendline): clearerr(3) before raising exception, since
exception may be captured by rescue. [ruby-talk:77794]
Sat Aug 2 09:58:13 2003 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk.rb: bug fix --- TkGrid failed to treat
RELATIVE PLACEMENT
* ext/tk/sample/demos-en/, demos-jp/: add or modify some
widget demo scripts
Sat Aug 2 20:59:38 2003 GOTOU Yuuzou <[email protected]>
* lib/webrick/https.rb: change an option name.
:SSLCertStore -> :SSLCertificateStore.
Sat Aug 2 19:18:40 2003 Minero Aoki <[email protected]>
* lib/net/smtp.rb: respond_to? needs 2nd argument.
Thanks Jim Bob. [ruby-talk:77796]
Sat Aug 2 15:11:54 2003 WATANABE Hirofumi <[email protected]>
* ext/extmk.rb (--no-undefined): annoying option removed.
Sat Aug 2 14:53:55 2003 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb (pkg_config): get configuration by pkg-config. [new]
* ext/openssl/extconf.rb: use pkg_config.
Sat Aug 2 13:45:17 2003 Yukihiro Matsumoto <[email protected]>
* gc.c: add "#pragma weak" for __libc_ia64_register_backing_store_base.
[ruby-dev:21072]
Sat Aug 2 14:02:39 2003 Nobuyoshi Nakada <[email protected]>
* variable.c (classname): find regular class name if not set.
[ruby-dev:20496]
Sat Aug 2 09:58:13 2003 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk.rb: bug fix --- forgot to entry a widget class
name of 'labelframe' widget
* ext/tk/sample/{demos-en,demos-jp}/{labelframe.rb,paned1.rb,
paned2.rb,spin.rb}: add demo-scripts to the JP/EN widget demos
Sat Aug 2 05:04:30 2003 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tkentry.rb: bug fix of TkEntry#delete
* ext/tk/samples/: bug fix of some widget demos
* ext/tk/lib/tk.rb: support <TkVariable object> == <Symbol>
* ext/tk/lib/*.rb: freeze some object for security reason
Sat Aug 2 03:30:25 2003 Yukihiro Matsumoto <[email protected]>
* class.c (rb_obj_singleton_methods): should not go up to
ancestors unless the recursive flag is set. [ruby-list:38007]
* eval.c (rb_yield_0): expand [] to nil if avalue is set.
[ruby-dev:21058]
* hash.c (env_each_key): use env_keys to avoid environment modify
on the fly.
* hash.c (env_each_value): use env_values for safety.
* hash.c (env_each): allocate environment array first.
Fri Aug 2 03:20:00 2003 why the lucky stiff <[email protected]>
* lib/yaml/store.rb (YAML::Store#initialize): filename is first
argument. Thanks Kent Dahl.
Sat Aug 2 00:49:31 2003 Minero Aoki <[email protected]>
* lib/net/http.rb: refine document.
Fri Aug 1 23:57:45 2003 Nobuyoshi Nakada <[email protected]>
* gc.c (rb_gc_mark_locations): no need to swap arguments.
* gc.c (STACK_LENGTH): insufficient for growing up stack
architectures.
* gc.c (rb_gc, Init_stack) ditto.
Fri Aug 1 23:33:36 2003 Masatoshi Seki <[email protected].>
* rubytest.rb: set dldpath on darwin.
Fri Aug 1 23:07:38 2003 Minero Aoki <[email protected]>
* lib/net/http.rb: convert RD to RDoc. Thanks William Webber.
[ruby-doc:456]
Fri Aug 1 19:48:56 2003 Yukihiro Matsumoto <[email protected]>
* ext/syck/rubyext.c (syck_emitter_write_m): forgot to declare
"self", making it default to "int".
* ext/syck/rubyext.c (syck_emitter_simple_write): ditto.
* gc.c (rb_gc): should mark backing store region on IA64.
Fri Aug 1 18:51:10 2003 Hidetoshi NAGAI <[email protected]>
* process.c: bug fix --- preprocessor errors occur on OpenBSD-current
Fri Aug 1 17:13:23 2003 Nobuyoshi Nakada <[email protected]>
* ext/openssl/extconf.rb: should replace literally.
Fri Aug 1 16:22:57 2003 Nobuyoshi Nakada <[email protected]>
* io.c (rb_io_check_readable, rb_io_check_writable): ensure not
closed at first.
* io.c (rb_io_getline): check readable always. (ruby-bugs:PR#1069)
* io.c (rb_io_each_byte): ditto.
Fri Aug 1 16:02:46 2003 Nobuyoshi Nakada <[email protected]>
* io.c (READ_DATA_PENDING_PTR): cast to get rid of warnings.
* ext/socket/socket.c (unix_send_io, unix_recv_io): ditto.
Fri Aug 1 15:53:24 2003 NAKAMURA Usaku <[email protected]>
* win32/win32.c (isInternalCmd): shouldn't return if find end of str.
[ruby-talk:77678]
Fri Aug 1 13:45:14 2003 Nobuyoshi Nakada <[email protected]>
* eval.c (rb_call_super): propagate previous block if a block is
given. [ruby-talk:77577]
Fri Aug 1 09:54:38 2003 Yukihiro Matsumoto <[email protected]>
* array.c (rb_ary_fill): array length may be changed during the
block execution. [ruby-talk:77579]
* array.c (rb_ary_zip): ditto.
* array.c (rb_ary_fill): ditto.
* hash.c (env_reject_bang): length may be changed during the block
execution.
* hash.c (env_clear): ditto.
Fri Aug 1 04:58:55 2003 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk.rb: bug fix --- forget to eval given block to
TkRoot.new method
* ext/tk/sample/tkoptdb-safeTk.rb: new sample script
Fri Aug 1 00:52:58 2003 Yukihiro Matsumoto <[email protected]>
* gc.c (Init_stack): IA64 requires STACK_LEVEL_MAX to be less than
magic number when optimizer turned on, regardless of rlimit
values.
Thu Jul 31 23:44:00 2003 Masatoshi SEKI <[email protected]>
* lib/erb.rb: import erb-2.0.4b4.
Thu Jul 31 23:04:45 2003 Hidetoshi NAGAI <[email protected]>
* ext/tk/sample/resource.en, ext/tk/sample/resource.jp:
wrong resource file format
* ext/tk/lib/tk.rb: add Tk::Encoding.{encoding_convertfrom,
encoding_convertto}
* ext/tk/lib/tk.rb: add TkOptionDB.read_with_encoding to read
non-utf8 resource file
Thu Jul 31 23:02:47 2003 NAKAMURA Usaku <[email protected]>
* ext/etc/etc.c: revert getenv()'s prototype. use it only when _WIN32
is not defined.
Thu Jul 31 20:52:40 2003 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk.rb: (IMPORTANT BUG FIX) scan of event keywords
doesn't work on recent versions of Tck/Tk
* ext/tk/lib/tk.rb: initialize error of instance variable on
TkComposite
* ext/tk/lib/multi-tk.rb: initialize error on encoding-system on
MultiTkIp
* ext/tk/lib/tk.rb: trouble on destroying widgets
* ext/tk/sample/demos-en/, demos-jp/: add JP and EN version of
Ruby/Tk widget demos
Thu Jul 31 15:25:12 2003 NAKAMURA Usaku <[email protected]>
* array.c (rb_ary_collect): must get length of array for each
iteration. reported on [ruby-talk:77500], and fixed by
K.Sasada <[email protected]> on [ruby-talk:77504]
Thu Jul 31 14:11:54 2003 GOTOU Yuuzou <[email protected]>
* ext/openssl/extconf.rb: move gmake specific features
into GNUmakefile.
Thu Jul 31 12:36:11 2003 Masatoshi SEKI <[email protected]>
* bin/erb, lib/erb.rb: add explicit trim mode.
Thu Jul 31 04:59:10 2003 Yukihiro Matsumoto <[email protected]>
* numeric.c (rb_num_coerce_relop): export function.
Thu Jul 31 08:18:00 2003 Nathaniel Talbott <[email protected]>
* lib/test/unit.rb: A useful return code is now set if tests fail when
running automatically using the Console::TestRunner.
Thu Jul 31 07:59:18 2003 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk.rb: wrap the command-proc of TkScale --- pass
the numeric object to the proc
* ext/tk/lib/tk.rb: better support for widgets created on
Tk interpreter (without Ruby)
* ext/tk/lib/multi-tk.rb: a little more stable on Multiple Tk
interpreters running
Thu Jul 31 00:17:19 2003 Shugo Maeda <[email protected]>
* lib/net/ftp.rb (return_code): obsolete.
* lib/net/ftp.rb (last_response_code): new method. lastresp is now
alias to last_response_code.
* lib/net/ftp.rb (last_response): new method.
Wed Jul 30 23:55:44 2003 Yukihiro Matsumoto <[email protected]>
* marshal.c (w_object): check has been dropped. "_dump must return
string." [ruby-dev:21024]
Wed Jul 30 22:35:19 2003 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb (dir_config): allow multiple directories separated
by File::PATH_SEPARATOR.
* lib/mkmf.rb (create_makefile): DLDFLAGS include $LDFLAGS again.
[ruby-talk:76894]
* lib/mkmf.rb (init_mkmf): not default $LDFLAGS to LDFLAGS for
ruby itself, but default $DLDFLAGS to DLDFLAGS.
Wed Jul 30 16:17:06 2003 Yukihiro Matsumoto <[email protected]>
* marshal.c (w_object): marshal_dump should not take any
argument.
Wed Jul 30 15:54:04 2003 GOTOU Yuuzou <[email protected]>
* ext/openssl/ossl_ssl.c (ossl_sslctx_initialize): should initialize
instance variables. [ruby-talk:77362]
Wed Jul 30 15:39:54 2003 Yukihiro Matsumoto <[email protected]>
* ruby.c (proc_options): -F set compiled regular expression to $;.
[ruby-talk:77381]
* string.c (Init_String): no setter type check for $;
Wed Jul 30 15:10:02 2003 Nobuyoshi Nakada <[email protected]>
* error.c (rb_raise): snprintf() termination moved to
win32/win32.c.
* win32/win32.c (valid_filename, str_grow): unused.
* win32/win32.c (NTLoginName, ChildRecord): make static.
* win32/win32.c (CreateChild): argument check.
* win32/win32.c (kill): should not call CloseHandle() when
OpenProcess() failed.
* win32/win32.c (rb_w32_vsnprintf, rb_w32_snprintf): ensure buffer
terminated. [ruby-talk:69672]
Wed Jul 30 10:54:10 2003 Shugo Maeda <[email protected]>
* lib/net/ftp.rb (get): fix wrong argument name. Thanks to William
Webber.
Wed Jul 30 10:31:37 2003 Nobuyoshi Nakada <[email protected]>
* ext/iconv/iconv.c (iconv_convert): append unchanged portion
after overflow. [ruby-dev:21006]
* ext/iconv/extconf.rb: check if iconv() 2nd argument is const.
Wed Jul 30 09:31:55 2003 Nobuyoshi Nakada <[email protected]>
* configure.in (os2-emx): renamed from os2_emx, add flags to
CFLAGS and LDFLAGS, and remove lib prefix. [ruby-dev:20993]
* file.c (rb_file_s_rename): retry with removing new file on
DOSISH. [ruby-dev:21007]
* ext/socket/extconf.rb (sendmsg, recvmsg): check functions.
* ext/socket/socket.c (unix_send_io, unix_recv_io): raise
NotImplementedError unless system calls are available.
* ext/socket/socket.c (sock_initialize): rename from sock_init()
to get rid of conflict with OS/2 socket library.
Wed Jul 30 07:23:14 2003 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tkentry.rb: fix lack of methods for TkEntry
* ext/tk/lib/multi-tk.rb, ext/tk/lib/tk.rb,
ext/tk/lib/tkdialog.rb, ext/tk/lib/tkentry.rb,
ext/tk/sample/safe-tk.rb, ext/tk/sample/tktimer2.rb: bug fix
* ext/tk/lib/multi-tk.rb: MultiTkIp.new_* accept a block to
eval under the new interpreter
Wed Jul 30 04:36:30 2003 Hidetoshi NAGAI <[email protected]>
* ext/tcltklib/tcltklib.c,
ext/tk/lib/tk.rb, ext/tk/lib/tkafter.rb: additional check of
Tk interpreters' status for a little more safety
Wed Jul 30 02:37:12 2003 Yukihiro Matsumoto <[email protected]>
* marshal.c (w_object): if object responds to 'marshal_dump',
Marshal.dump uses it to dump object. unlike '_dump',
marshal_dump returns any kind of object.
* marshal.c (r_object0): restore instance by calling
'marshal_load' method. unlike '_load', it's an instance
method, to handle cyclic reference.
* marshal.c (marshal_load): all objects read from file should be
tainted. [ruby-core:01325]
Wed Jul 30 01:47:51 2003 Hugh Sasse <[email protected]>
* lib/timeout.rb (Timeout::timeout): execute immediately if sec is
zero.
Wed Jul 30 01:36:18 2003 Aron Griffis <[email protected]>
* ext/socket/socket.c (socks_init): typo fixed. [ruby-talk:77232]
Wed Jul 30 00:48:43 2003 Yukihiro Matsumoto <[email protected]>
* ext/socket/extconf.rb: the default value for --enable-socks is
taken from ENV["SOCKS_SERVER"]. [ruby-talk:77232]
* ruby.c (proc_options): add -W option. -W0 to shut up all warning
messages. [ruby-talk:77227]
* error.c (rb_warn): no message will be printed if the value of
$VERBOSE is "nil", i.e. perfect silence.
* ruby.c (verbose_setter): $VERBOSE value is either true, false,
or nil.
* io.c (Init_IO): no "read" check for $stdin. in addition some
function names has been changed.
Tue Jul 29 23:10:19 2003 Yoshida Masato <[email protected]>
* regex.c (re_match_exec): incorrect multibyte match.
Tue Jul 29 22:36:50 2003 Minero Aoki <[email protected]>
* lib/net/smtp.rb (send0): do taint check only when $SAFE > 0
Tue Jul 29 19:20:34 2003 WATANABE Hirofumi <[email protected]>
* lib/fileutils.rb (install): support preserve timestamp.
* instruby.rb (install): use FileUtils::install preserve mode.
* lib/un.rb: new. % ruby -run -e cp -- -p foo bar
* lib/mkmf.rb: use un.rb instead of ftools.rb.
* MANIFEST: add lib/un.rb.
* ext/extmk.rb (INSTALL_PROG, INSTALL_DATA): modify verbose messages.
Tue Jul 29 18:55:22 2003 Minero Aoki <[email protected]>
* lib/net/smtp.rb: unify coding style.
* lib/net/http.rb: ditto.
Tue Jul 29 17:27:59 2003 NAKAMURA Usaku <[email protected]>
* ruby.h (LLONG_MIN): fix typo.
Tue Jul 29 16:38:44 2003 Yukihiro Matsumoto <[email protected]>
* lib/net/smtp.rb (Net::SMTP::send0): add taint check.
Tue Jul 29 15:41:02 2003 WATANABE Hirofumi <[email protected]>
* instruby.rb (install): preserve the timestamp for Mac OS X ranlib
problem.
Tue Jul 29 01:14:51 2003 Rick Ohnemus <[email protected]>
* ruby.h (LLONG_MIN): wrong value.
Mon Jul 28 22:57:52 2003 Yukihiro Matsumoto <[email protected]>
* io.c (rb_f_getc): $stdin may not be IO. [ruby-dev:20973]
Tue Jul 29 16:20:36 2003 Hidetoshi NAGAI <[email protected]>
* ext/tcltklib/tcltklib.c: bug fix and
change mainloop_abort_on_no_widget_cmd => mainloop_abort_on_exception
( to avoid thread timing trouble on accessing destroyed widgets )
* ext/tk/lib/multi-tk.rb: change default mode of
mainloop_abort_on_exception on multi-tk.rb
* ext/tk/lib/multi-tk.rb: fix a bug of the procedure for
'Delete' button on the safe-Tk frmae
Tue Jul 29 12:22:28 2003 why the lucky stiff <[email protected]>
* ext/syck/token.c: prefixed many constants and definitions
with YAML_ to avoid name clash.
* ext/syck/gram.c: ditto.
* ext/syck/gram.h: ditto.
Tue Jul 29 12:15:37 2003 NAKAMURA Usaku <[email protected]>
* ext/etc/etc.c: add real prototype to getenv().
* win32/win32.h: add arguments to definitions of functions if possible.
Tue Jul 29 08:05:30 2003 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk.rb, ext/tk/lib/tkdialog.rb, ext/tk/lib/tktext.rb,
ext/tk/sample/tkbiff.rb, ext/tk/sample/tkdialog.rb,
ext/tk/sample/tkform.rb: bug fix ( tested with Ruby/Tk widget demo )
Tue Jul 29 04:22:08 2003 why the lucky stiff <[email protected]>
* ext/syck/syck.h: Added 'syck' yacc prefixes.
* ext/syck/gram.c: ditto.
* ext/syck/token.c: ditto.
* ext/syck: Added ruby.h reference to source files.
Tue Jul 29 03:53:28 2003 GOTOU Yuuzou <[email protected]>
* ext/openssl/lib/net/https.rb (use_ssl=): raise ProtocolError if
connection is set up already.
Tue Jul 29 01:45:32 2003 Hidetoshi NAGAI <[email protected]>
* ext/tcltklib/tcltklib.c: use RTEST()
Tue Jul 29 01:24:32 2003 Hidetoshi NAGAI <[email protected]>
* ext/tcltklib/tcltklib.c: bug fix
* ext/tk/lib/multi-tk.rb: bug fix and pack options are pssed
to the safeTk container
* ext/tk/sample/safe-tk.rb: add example for pack options of
safeTk container
Mon Jul 28 23:23:08 2003 Nobuyoshi Nakada <[email protected]>
* file.c (Init_File): IO should include File::Const.
[ruby-dev:20964]
Mon Jul 28 18:53:03 2003 WATANABE Hirofumi <[email protected]>
* ext/openssl/extconf.rb: check again after pkg-config for MinGW on
Cygwin.
Mon Jul 28 15:32:04 2003 Yukihiro Matsumoto <[email protected]>
* ext/stringio/stringio.c (strio_gets): only "gets" should set $_.
* ext/stringio/stringio.c (strio_getline): should not set $_ here.
* io.c (argf_to_s): argf.to_s returns "ARGF".
* io.c (set_defout_var, set_deferr_var): make $defout and $deferr
obsolete.
* io.c (set_input_var, set_output_var): allow $stdin, $stdout,
$stderr not to be instance of IO.
* io.c (rb_f_readline): forward method to current_file. gets,
readline, readlines, getc, readchar, tell, seek, pos=, rewind,
fileno, to_io, eof, each_line, each_byte, binmode, and closed?
as well.
* io.c (argf_forward): utility function to forward method to
current_file.
Mon Jul 28 06:10:13 2003 Hidetoshi NAGAI <[email protected]>
* ext/tcltklib/tcltklib.c: bug fix
* ext/lib/tk/multi-tk.rb: bug fix
* ext/lib/tk/multi-tk.rb: add methods depend on Tcl's 'interp' command
* ext/lib/tk/multi-tk.rb: suppot safe-level control of each interpreter
Mon Jul 28 03:08:47 2003 Akinori MUSHA <[email protected]>
* lib/set.rb: each() should return self.
Mon Jul 28 01:35:32 2003 Yukihiro Matsumoto <[email protected]>
* string.c (rb_str_chomp_bang): defer rb_str_modify() to actual
modify point. other methods, replace, tr, delete, squeeze,
lstrip, and rstrip as well.
* string.c (rb_str_rstrip_bang): remove trailing '\0' at the end
of string.
* string.c (rb_str_lstrip_bang): do not strip '\0' from the left.
Sun Jul 27 21:16:30 2003 WATANABE Hirofumi <[email protected]>
* ext/openssl/extconf.rb: better support MinGW. add
dir_config("kerberos") and with_config("pkg-config").
* mkconfig.rb: initialize global variables to avoid warnings.
Sun Jul 27 19:35:06 2003 Hidetoshi NAGAI <[email protected]>
* ext/tcltklib/tcltklib.c: add some methods to support
multiple interpreters (low level)
* ext/tk/lib/multi-tk.rb: new library to support multiple Tk
interpreters (high level)
* ext/tcltklib/demo/safeTk.rb: new sample of safeTk interpreter
* ext/tk/sample/safe-tk.rb: new sample of multi-tk.rb
* ext/tk/lib/tk.rb: bug fix and add feature to supprt multi-tk
* ext/tk/lib/tkafter.rb: ditto
Sun Jul 27 14:43:37 2003 NAKAMURA, Hiroshi <[email protected]>
* lib/debug.rb: fix breakpoint parameter parsing/checking.
(?:(file|class):)(line_number|method)
Sun Jul 27 10:21:28 2003 Masatoshi SEKI <[email protected]>
* lib/drb/unix.rb: add UNIXFileOwner, UNIXFileGroup.
Sun Jul 27 03:10:43 2003 Nobuyoshi Nakada <[email protected]>
* io.c (io_reopen): avoid dup2() equal handles not to close itself and
to get rid of a msvcrt bug. [ruby-dev:20919]
Sun Jul 27 00:37:16 2003 WATANABE Hirofumi <[email protected]>
* lib/tmpdir.rb: use GetWindowsDirectory, not GetSystemDirectory.
[ruby-talk:77073]
Sat Jul 26 21:25:21 2003 NAKAMURA Usaku <[email protected]>
* io.c (rb_fdopen): set errno if it's zero on win32 platforms.
* ext/openssl/ossl_ssl.c (TO_SOCKET): define special version when
_WIN32 is defined. this is ruby's problem, not OpenSSL.
* win32/win32.c: remove some old comments.
Sat Jul 26 14:26:57 2003 Yukihiro Matsumoto <[email protected]>
* ext/tk/lib/tk.rb (TkCore::chooseDirectory): back up wrongly
removed method.
Sat Jul 26 14:14:12 2003 Nobuyoshi Nakada <[email protected]>
* ext/stringio/stringio.c: includes Enumerable as well as IO.
[ruby-talk:77058]
Sat Jul 26 07:00:53 2003 Masatoshi SEKI <[email protected]>
* lib/erb.rb: fix % line.
Sat Jul 26 05:31:09 2003 GOTOU Yuuzou <[email protected]>
* ext/openssl/ossl.h: fix comment.
* ext/openssl/ossl.c (ossl_debug): should enable if no va-args
macro supplied.
Sat Jul 26 04:04:36 2003 GOTOU Yuuzou <[email protected]>
* ext/openssl/extconf.rb: refine va-args macro detection.
[ruby-talk:76983]
Sat Jul 26 01:33:51 2003 NAKAMURA Usaku <[email protected]>
* ext/openssl/ossl_ssl.c (ossl_ssl_setup): need to pass the real
socket to SSL_get_fd on native win32 platforms.
Sat Jul 26 01:20:29 2003 Yukihiro Matsumoto <[email protected]>
* variable.c (rb_mod_const_missing): "const_missing" should not
appear in the caller(); add call frame adjustment.
* eval.c (rb_method_missing): simplify call frame adjustment.
Fri Jul 26 00:04:25 2003 NAKAMURA, Hiroshi <[email protected]>
* ext/openssl/sample: add samples.
- cert2text.rb: dump certificate file as text.
- crlstore.rb: CRL store implementation. Fetch CRL via HTTP when
http-access2 is installed.
- certstore.rb: certificate store implementation.
- cert_store_view.rb: certificate store viewer with FXRuby. Uses
c_rehash.rb, crlstore.rb and certstore.rb.
Fri Jul 25 16:43:03 2003 Hidetoshi NAGAI <[email protected]>
* ext/tcltklib/tcltklib.c: add TclTkIp#create_slave,
TclTkIp#_make_safe and TclTkIp#safe?
* ext/tcltklib/MANUAL.euc: modify descriptions
* ext/tk/lib/tk.rb: bug fix [ruby-talk:76980] and modify to
support multi Tk IPs
* ext/tk/lib/tkafter.rb: modify to support multi Tk IPs
Fri Jul 25 15:47:39 2003 GOTOU Yuuzou <[email protected]>
* ext/openssl/extconf.rb: add check for BN_rand_range() and
BN_pseudo_rand_range().
* ext/openssl/ossl_bn.c (ossl_bn_s_rand_range): should raise
NotImplementedError if BN_rand_range() wan not defined.
* ext/openssl/ossl_bn.c (ossl_bn_s_pseudo_rand_range): should raise
NotImplementedError if BN_pseudo_rand_range() wan not defined.
* ext/openssl/ossl_pkcs7.c (ossl_pkcs7_s_encrypt): avoid compiler
warning for OpenSSL-0.9.6.
* ext/openssl/ossl_pkcs7.c (ossl_pkcs7si_initialize): ditto.
Fri Jul 25 14:34:55 2003 Yukihiro Matsumoto <[email protected]>
* ext/socket/socket.c (tcp_s_gethostbyname): was using
uninitialized size_t value. [ruby-talk:76946]
Fri Jul 25 13:38:38 2003 Nobuyoshi Nakada <[email protected]>
* re.c (rb_reg_options_m): use rb_reg_options() to mask internal
flags.
* re.c (rb_reg_initialize_m): allow nil as third argument and
ignore, and mask code flags if the argument is given.
[ruby-dev:20885]
* re.c (rb_reg_options): get common flags directly.
Fri Jul 25 03:52:21 2003 why the lucky stiff <[email protected]>
* lib/yaml/dbm.rb: replace indexes with values_at.
Fri Jul 25 02:55:59 2003 GOTOU Yuuzou <[email protected]>
* ext/openssl/extconf.rb: add check for libsocket and libnsl.
* ext/openssl/extconf.rb: use pkg-config to build CFLAGS and LDFLAGS.
Fri Jul 25 01:27:59 2003 why the lucky stiff <[email protected]>
* ext/syck/emitter.c (syck_emitter_flush): accepts count
of bytes to flush. anchor offsets now functional.
* ext/syck/syck.h (syck_emitter_flush): ditto.
* ext/syck/rubyext.c: ditto.
* ext/syck/token.c: URI escaping now supported.
Thu Jul 24 16:41:31 2003 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb (have_type): check if a type is defined.
* lib/mkmf.rb (check_sizeof): check size of a type.
* ext/dbm/extconf.rb: check if type DBM is defined.
[ruby-talk:76693]
Thu Jul 24 16:18:40 2003 Nobuyoshi Nakada <[email protected]>
* ChangeLog (add-log-time-format): "%c" contains timezone on
XEmacs.
Thu Jul 24 16:05:22 2003 Nobuyoshi Nakada <[email protected]>
* configure.in (AC_C_VOLATILE): check if volatile works.
* defines.h (volatile): removed.
* eval.c (rb_thread_group): Thread#group. [new]
Thu Jul 24 15:50:42 2003 GOTOU Yuuzou <[email protected]>
* ext/openssl/extconf.rb: add check for win32 OpenSSL libraries.
* ext/openssl/extconf.rb: add check for __VA_ARGS__.
* ext/openssl/ossl.h: avoid non C99 compiler errors.
Thu Jul 24 13:32:56 2003 Yukihiro Matsumoto <[email protected]>
* eval.c (thgroup_add): no warning for terminated threads.
Thu Jul 24 13:09:26 2003 Tanaka Akira <[email protected]>
* lib/pathname.rb: added.
Thu Jul 24 11:21:10 2003 Nobuyoshi Nakada <[email protected]>
* ext/io/wait/extconf.rb: removed unnecessary backward
compatibility stuff.
Thu Jul 24 11:09:10 2003 WATANABE Hirofumi <[email protected]>
* ext/openssl/extconf.rb: revert use of dir_config.
Thu Jul 24 09:58:32 2003 NAKAMURA Usaku <[email protected]>
* ext/Win32API/lib/win32/resolv.rb: added.
* lib/resolv.rb: support Win32 platforms. based on Tietew's work
[ruby-dev:15573].
Thu Jul 24 04:05:46 2003 GOTOU Yuuzou <[email protected]>
* ext/openssl/ssl.h: undef X509_NAME and PKCS7_SIGNER_INFO to
avoid name confliction on mswin32.
* ext/openssl/ssl.c (ossl_protect_obj2bio): avoid VC++ warnings
in function prototype.
* ext/openssl/ssl.c (ossl_protect_membio2str): ditto.
* ext/openssl/ssl.c (ossl_protect_x509_ary2sk): ditto.
Thu Jul 24 03:44:04 2003 Michal Rokos <[email protected]>
* ext/openssl/extconf.rb: cut check for OpenSSL version
Thu Jul 24 03:41:30 2003 NAKAMURA Usaku <[email protected]>
* ext/tcltklib/tcltklib.c (ip_init): need at least one statement after
label.
Thu Jul 24 01:48:03 2003 Yukihiro Matsumoto <[email protected]>
* lib/cgi.rb (CGI::QueryExtension::[]): should return StringIO (or
Tempfile) for multipart/form.
* variable.c (rb_define_const): give warning for non constant
name. [ruby-core:01287]
Thu Jul 24 01:51:08 2003 GOTOU Yuuzou <[email protected]>
* lib/webrick: imported.
* MANIFEST: added webrick files.
Thu Jul 24 01:32:04 2003 WATANABE Hirofumi <[email protected]>
* lib/tmpdir.rb (tmpdir): new method. remove TMPDIR.
use GetSystemWindowsDirectory(GetSystemDirectory), not GetTempPath.
Thu Jul 24 01:08:43 2003 GOTOU Yuuzou <[email protected]>
* ext/openssl: imported.
Wed Jul 23 23:06:59 2003 WATANABE Hirofumi <[email protected]>
* file.c (DOSISH): better Cygwin support.
Wed Jul 23 19:13:21 2003 Yukihiro Matsumoto <[email protected]>
* string.c (rb_str_split_m): the receiver may be empty string.
Wed Jul 23 18:43:00 2003 Masatoshi SEKI <[email protected]>
* lib/erb.rb: import erb-2.0.4b1.
Wed Jul 23 18:21:52 2003 Nobuyoshi Nakada <[email protected]>
* ext/io/wait: imported.
Wed Jul 23 16:07:35 2003 Hidetoshi NAGAI <[email protected]>
* process.c: unify indentation
* configure.in: add --enable-setreuid option
* ext/tcltklib/tcltklib.c: TclTkIp.new accepts 'ip-name' and 'options'
* ext/tk/lib/tk.rb: support arguments of TclTkIp.new
* ext/tk/lib/tk*.rb: preparations for multi-Tk interpreter support
Wed Jul 23 15:49:01 2003 Yukihiro Matsumoto <[email protected]>
* string.c (rb_str_lstrip_bang): strip NUL along with white
spaces. [ruby-talk:76659]
* string.c (rb_str_rstrip_bang): ditto.
Wed Jul 23 14:19:17 2003 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb (log_src, checking_for, create_header):
Logging.message is printf like format.
Wed Jul 23 10:11:15 2003 Nobuyoshi Nakada <[email protected]>
* ext/iconv/iconv.c (check_iconv): check if Iconv instance.
* ext/iconv/iconv.c (iconv_convert): stringify argument.
Wed Jul 23 02:39:46 2003 Hidetoshi NAGAI <[email protected]>
* process.c: add a module for raw syscalls to control UID/GID
* process.c: add modules for portable UID/GID control
Tue Jul 22 19:16:40 2003 Tanaka Akira <[email protected]>
* ext/iconv/iconv.c (iconv_failure_initialize): limit
inspect message. [ruby-dev:20785]
* ext/iconv/iconv.c (rb_str_derive): share with original
string if possible. [ruby-dev:20785]
Tue Jul 22 17:22:34 2003 Yukihiro Matsumoto <[email protected]>
* variable.c (rb_mod_const_missing): new method. [ruby-core:00441]
* variable.c (rb_const_get_at): allow "const_missing" hook.
* variable.c (rb_const_get_0): ditto.
* eval.c (method_missing): rename from rb_undefined to clarify.
* eval.c (ruby_finalize_0): update exit status if any of END proc
raises SystemExit. [ruby-core:01256]
* signal.c (rb_trap_exit): wrap rb_eval_cmd
* eval.c (rb_exec_end_proc): reduce rb_protect().
Tue Jul 22 17:15:57 2003 WATANABE Hirofumi <[email protected]>
* MANIFEST (lib/cgi/session/pstore.rb, lib/yaml/baseemitter.rb):
added.
Tue Jul 22 10:52:19 2003 NAKAMURA Usaku <[email protected]>
* lib/tmpdir.rb: remove charcters after "\000" and regularize path.
Tue Jul 22 02:22:45 2003 Yukihiro Matsumoto <[email protected]>
* numeric.c (num_equal): should not use rb_equal().
* string.c (rb_str_equal): should return nil for non string
operand to conform comparable convention. [ruby-dev:20759]
Tue Jul 22 00:19:19 2003 Yukihiro Matsumoto <[email protected]>
* lib/tmpdir.rb: new library to get temporary directory path,
using GetTempPath on Win32 environment.
* lib/tempfile.rb: now uses tmpdir.rb.
* lib/cgi/session.rb, ib/drb/unix.rb: ditto.
Mon Jul 21 01:53:43 2003 Yukihiro Matsumoto <[email protected]>
* string.c (rb_string_value_cstr): check null byte in the string