-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
23820 lines (13365 loc) · 712 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Sun 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 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 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 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 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: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 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 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 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 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 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.
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 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 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 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 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.
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
before retrieving C ptr. accessed via macro StringValueCStr.
* file.c: use StringValueCStr to retrieve paths to system calls.
* file.c (sys_fail2): raise error for two operand system calls
such as rename, link, symlink. (ruby-bugs PR#1047)
Sun Jul 20 11:03:25 2003 UENO Katsuhiro <[email protected]>
* ext/zlib/zlib.c (gzfile_read_header): gz->z.input may be nil after
finishing reading a gzip header.
Sat Jul 19 22:25:47 2003 Yukihiro Matsumoto <[email protected]>
* string.c (rb_str_match2): add warning to "~string".
[ruby-list:37751]
* lib/net/ftp.rb (Net::FTP::open): takes block. suggested by Gavin
Sinclair in [ruby-core:01237].
Sat Jul 19 19:03:24 2003 Takaaki Uematsu <[email protected]>
* wince/stdlib.c: add bsearch().
Sat Jul 19 11:27:25 2003 Yukihiro Matsumoto <[email protected]>
* lib/xmlrpc: import.
* eval.c (thgroup_add): should return group for terminated thread
case.
* eval.c (thgroup_add): do not raise ThreadError on terminated
thread addition for compatibility. just warning.
Sat Jul 19 04:50:56 2003 Nobuyoshi Nakada <[email protected]>
* ext/iconv/charset_alias.rb, ext/iconv/extconf.rb: make wrapper
script which maps charset names. [ruby-dev:20625]
* ext/iconv/iconv.c (charset_map): charset name map.
* ext/iconv/iconv.c (iconv_dfree): no exception while
finalization.
* ext/iconv/iconv.c (iconv_s_conv): new method Iconv.conv.
[ruby-dev:20588]
Sat Jul 19 03:09:18 2003 NAKAMURA Usaku <[email protected]>
* ext/Win32API/lib/win32/registry.rb (Win32::Registry::Error):
inherit StandardError instead of SystemCallError.
Sat Jul 19 02:00:39 2003 Nobuyoshi Nakada <[email protected]>
* eval.c (rb_attr): extra calls of method_added. [ruby-talk:76361]
Fri Jul 18 18:44:22 2003 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb (init_mkmf): clear $INSTALLFILES. [ruby-dev:20727]
Fri Jul 18 17:34:39 2003 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb (rm_f): use FileUtils.
* lib/mkmf.rb (modified?): return mtime of the target if
it exists and newer than times.
* lib/mkmf.rb (install_files): add a current directory
file even if it does not exist yet.
* lib/mkmf.rb (configuration): do not add $LDFLAGS to
DLDFLAGS.
* ext/extmk.rb (extmake): check whether Makefile is newer
than depend and MANIFEST.
Fri Jul 18 14:57:19 2003 NAKAMURA Usaku <[email protected]>
* win32/win32.c (make_cmdvector): recognize quote within string.
based on Nobu's patch ([ruby-win32:450]). [ruby-talk:75853]
Fri Jul 18 13:04:36 2003 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_f_missing): VCALL is called only for LOCAL_ID. no
check required.
* parse.y (primary): primary:tFID generates NODE_FCALL.
[ruby-dev:20641]
Thu Jul 17 18:50:26 2003 Yukihiro Matsumoto <[email protected]>
* re.c (match_captures): rename from "groups".
Thu Jul 17 17:57:32 2003 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_clear_cache_by_class): check both klass and origin.
Thu Jul 17 13:46:25 2003 Yukihiro Matsumoto <[email protected]>
* eval.c (ruby_init): set ruby_running to true after
initialization.
Thu Jul 17 13:42:53 2003 WATANABE Hirofumi <[email protected]>
* lib/ftools.rb (File::makedirs): do not handle "//" as a directory.
Wed Jul 16 16:23:58 2003 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_proc_new): call svalue_to_avalue for yield argument.
Wed Jul 16 00:31:00 2003 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_disable_super, rb_enable_super): deprecate.
* eval.c (thgroup_s_alloc): re-implement group struct.
* eval.c (thgroup_add): add check for enclose and frozen status.
Tue Jul 15 19:50:49 2003 Nobuyoshi Nakada <[email protected]>
* eval.c (rb_add_method, rb_alias): need to clear cache by
ID when method defined in parent class is cached for
grand child classes. [ruby-dev:20672]
Tue Jul 15 14:38:21 2003 Yukihiro Matsumoto <[email protected]>
* lib/matrix.rb: remove elements conversion to_f, to_i, to_r.
* lib/cgi/session/pstore.rb: add new file.
Tue Jul 15 03:30:41 2003 why the lucky stiff <[email protected]>
* ext/syck/rubyext.c (syck_mark_emitter): forgot to rb_gc_mark the
outgoing IO object.
Sun Jul 13 14:55:36 2003 Koji Arai <[email protected]>
* process.c (proc_getgroups, proc_setmaxgroups): fix typo.
Sat Jul 12 17:01:28 2003 NAKAMURA Usaku <[email protected]>
* struct.c (struct_entry): add prototype to avoid VC++ warnings.
Sat Jul 12 04:43:57 2003 why the lucky stiff <[email protected]>
* ext/syck/emitter.c: new emitter code.
* ext/syck/rubyext.c: Emitter class.
* lib/yaml.rb: Load Syck emitter, if available.
* lib/yaml/stream.rb: ditto.
* lib/yaml/baseemitter.rb: underlying class for all emitters.
* lib/yaml/rubytypes.rb: use BaseEmitter abstraction.
* lib/yaml/emitter.rb: ditto.
Sat Jul 12 04:23:13 2003 Nobuyoshi Nakada <[email protected]>
* eval.c (rb_undef): need to clear cache for inherited class.
(rubicon/builtin/TestModulePrivate.rb:test_undef_method)
Sat Jul 12 01:21:54 2003 Nobuyoshi Nakada <[email protected]>
* eval.c (avalue_to_svalue): typo.
* eval.c (rb_load): rb_prohibit_interrupt must not underflow.
* parse.y (NODE_STRTERM, tokadd_string, parse_string): moved
string nest level from a static variable to NODE_STRTERM, to
preserve it from word to word in %W/%w.
Fri Jul 11 22:37:18 2003 Nobuyoshi Nakada <[email protected]>
* configure.in (aix): needs ruby.imp even with gcc.
(ruby-bugs:PR#1007)
Fri Jul 11 18:37:37 2003 WATANABE Hirofumi <[email protected]>
* instruby.rb: do not handle directories. [ruby-dev:20613]
Fri Jul 11 16:09:09 2003 Yukihiro Matsumoto <[email protected]>
* util.c (ruby_strtod): exp should be less than MDMAXEXPT.
Thu Jul 10 14:42:02 2003 WATANABE Hirofumi <[email protected]>
* math.c (math_log): nan takes a dummy argument on Cygwin 1.5.0.
Wed Jul 9 23:50:46 2003 Nobuyoshi Nakada <[email protected]>
* regex.c (mbctab_sjis): 0x80 is not shift jis first byte.
[ruby-dev:20516]
Wed Jul 9 15:38:28 2003 WATANABE Hirofumi <[email protected]>
* instruby.rb: do not install shared libraries as man pages.
* mkconfig.rb: support text-mount on Cygwin.
Wed Jul 9 11:09:57 2003 NAKAMURA Usaku <[email protected]>
* re.c (match_entry): add prototype to avoid VC++ warnings.
Wed Jul 9 03:48:27 2003 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_load): put rb_load_file() in a thread critical
section. [ruby-dev:20490]
* eval.c (compile): put rb_compile_string() in a thread critical
section.
Tue Jul 8 02:35:41 2003 Yukihiro Matsumoto <[email protected]>
* variable.c (rb_const_get_0): should not warn if constant is not
defined. (ruby-bugs-ja PR#509)
* bignum.c (rb_big2dbl): give a warning on overflow.
(ruby-bugs-ja PR#510)
* util.c (ruby_strtod): change MDMAXEXPT from 511 to 308.
* pack.c (utf8_to_uv): long is sufficient. LONG_LONG is not
required.
Tue Jul 8 01:43:16 2003 Koji Arai <[email protected]>
* bignum.c (rb_big2str): support 32 bit (without `long long' type)
machines. (ruby-bugs-ja PR#512)
Mon Jul 7 10:22:46 2003 WATANABE Hirofumi <[email protected]>
* ext/dbm/extconf.rb (gdbm_compat, qdbm): add check for gdbm_compat
and qdbm.
Mon Jul 7 01:34:49 2003 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_call_super): k->super maybe NULL if klass is Kernel.
[ruby-dev:20519]
* gc.c (obj_free): clear method cache when freeing class/module.
Sat Jul 5 23:32:06 2003 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_mod_remove_method): allow "remove_method" to accept
multiple arguments.
Sat Jul 5 00:22:59 2003 Yukihiro Matsumoto <[email protected]>
* node.h (NEW_NODE): cast arguments to rb_node_newnode().
Fri Jul 4 21:48:44 2003 Nobuyoshi Nakada <[email protected]>