-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
1738 lines (1018 loc) · 54.1 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
Sat Oct 4 04:48:49 2003 why the lucky stiff <[email protected]>
* ext/syck/rubyext.c: default keys handled.
* ext/syck/syck.h: lowered default buffer size to 16k for increased
performance.
* test/yaml: checkin of basic unit tests.
Sat Oct 4 04:24:19 2003 GOTOU Yuuzou <[email protected]>
* ext/openssl/extconf.rb: add check for X509V3_set_nconf.
* ext/openssl/ossl_x509ext.c (ossl_x509extfactory_set_config):
cannot implement if X509V3_set_nconf doesn't exist.
Sat Oct 4 02:12:44 2003 NAKAMURA, Hiroshi <[email protected]>
* lib/xsd/datatypes.rb: dump sign by itself. under the problematic
platform, sprintf("%+.10g", -0.0) => +0. sigh.
* sample/wsdl/amazon/*: update schema ver2 to ver3.
Sat Oct 4 01:33:46 2003 Tanaka Akira <[email protected]>
* lib/pathname.rb (initialize): duplicate and freeze argument.
(to_s): return duplicated string.
(children): new method.
(each_line): new alias to foreachline.
Fri Oct 3 16:13:19 2003 GOTOU Yuuzou <[email protected]>
* ext/openssl/ossl_asn1.c: add DER encoder and decoder.
* ext/openssl/ossl_asn1.h: add OpenSSL::ASN1 module.
* ext/openssl/ossl.c (Init_openssl): call Init_ossl_asn1.
* ext/openssl/extconf.rb: check if X509_ATTRIBUTE has field "single".
* ext/openssl/ossl_x509attr.c (ossl_x509attr_set_value): accept
DER encoded data argument.
* ext/openssl/ossl_x509attr.c (ossl_x509attr_get_value): return
DER encoded data in OpenSSL::ASN1 types.
Fri Oct 3 13:02:00 2003 Nathaniel Talbott <[email protected]>
* lib/test/unit.rb: refactored to use optparse.
* lib/test/unit.rb: added support for selecting the output
level from the command-line.
* lib/test/unit.rb: added a command-line switch to stop processing
the command-line, allowing arguments to be passed to tests.
* lib/test/unit.rb: changed the method for specifying a runner or a
filter from the command-line.
* lib/test/unit/collector/objectspace.rb: fixed a bug causing all
tests to be excluded when the filter was set to an empty array.
* test/testunit/collector/test_objectspace.rb: ditto.
Fri Oct 3 08:01:00 2003 Nathaniel Talbott <[email protected]>
* lib/test/unit/assertions.rb: added a default message for #assert,
#assert_block, and #flunk.
* test/testunit/test_assertions.rb: ditto.
* lib/test/unit/failure.rb: failures now show a better trace of where
they occurred.
* test/testunit/test_failure.rb: ditto (added).
* lib/test/unit/testcase.rb: ditto.
* test/testunit/test_testcase.rb: ditto.
* lib/test/unit/util/backtracefilter.rb: added.
* test/testunit/util/test_backtracefilter.rb: added.
* lib/test/unit/error.rb: changed to use BacktraceFilter and improved
output.
* test/testunit/test_error.rb: ditto.
Thu Oct 2 20:33:49 2003 Nobuyoshi Nakada <[email protected]>
* ext/iconv/iconv.c (iconv_failure_initialize): conform with
orthodox initialization method.
* ext/iconv/iconv.c (iconv_fail): initialize exception instance
from the class, and do not share instance variables with the
others. [ruby-dev:21470]
Thu Oct 2 18:20:27 2003 Nobuyoshi Nakada <[email protected]>
* time.c (Init_Time): define initialize. [ruby-dev:21469]
Thu Oct 2 17:39:38 2003 GOTOU Yuuzou <[email protected]>
* ext/openssl/ossl_engine.c: add a new module OpenSSL::Engine.
it supports OpenSSL hardware cryptographic engine interface.
* ext/openssl/ossl_engine.h: ditto.
* ext/openssl/MANIFEST: add ossl_engine.c and ossl_engine.h.
* ext/openssl/extconf.rb: add check for openssl/engine.h.
* ext/openssl/ossl.c: call Init_ossl_engine().
* ext/openssl/ossl.h: include openssl/engine.h.
* ext/openssl/ossl_pkey_{rsa,dsa,dh}.c: check if underlying
EVP_PKEY referes engine.
Thu Oct 2 17:22:37 2003 Yukihiro Matsumoto <[email protected]>
* time.c (time_load): restore instance variables (if any) before
loading from marshaled data.
Thu Oct 2 14:19:15 2003 Nobuyoshi Nakada <[email protected]>
* ext/iconv/iconv.c (iconv_fail): now yield erred substring, and
set error object to $!.
* ext/iconv/iconv.c (iconv_convert): error handler block should
return appended part and the rest. if rest is nil, the
conversion stops.
Thu Oct 2 12:00:18 2003 Nobuyoshi Nakada <[email protected]>
* variable.c (rb_const_defined_0): look up constants in Object as
well. [ruby-dev:21458]
* test/ruby/test_defined.rb (TestDefined::test_defined): test for
constants.
Thu Oct 2 11:17:00 2003 Nathaniel Talbott <[email protected]>
* lib/test/unit/assertions.rb: should not capture an
AssertionFailedError unless explicitly requested.
* test/testunit/test_assertions.rb: ditto.
* test/testunit/collector/test_objectspace.rb: fixed a test failure
caused by methods being returned in different orders on different
platforms by moving test sorting from TestSuite into the locations
where suites are constructed. [ruby-talk:83156]
* lib/test/unit/testcase.rb: ditto.
* lib/test/unit/testsuite.rb: ditto.
* lib/test/unit/collector/objectspace.rb: ditto.
Thu Oct 2 03:25:01 2003 NAKAMURA Usaku <[email protected]>
* eval.c (rb_thread_raise): prototype; avoid VC++ warning.
Thu Oct 2 01:37:34 2003 Yukihiro Matsumoto <[email protected]>
* time.c (time_mdump): new marshal dumper. _dump is still
available for compatibility.
* time.c (time_mload): new marshal loader.
* marshal.c (w_object): preserve instance variables for objects
with marshal_dump.
* marshal.c (r_object0): restore instance variables before calling
marshal_load.
* error.c (rb_warn_m): always return nil.
Thu Oct 2 01:32:46 2003 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_f_block_given_p): real required condition is
ruby_frame->prev->iter == ITER_CUR.
* eval.c (rb_block_given_p): ditto.
* eval.c (block_pass): update ruby_frame->iter only when previous
value is ITER_NOT.
Thu Oct 2 01:02:35 2003 Yukihiro Matsumoto <[email protected]>
* variable.c (rb_const_defined_at): should exclude constants from
Object when TYPE(klass) == T_MODULE *and* exclude is on.
[ruby-dev:21458]
* variable.c (rb_const_get_0): do not lookup constants from Object
when TYPE(klass) == T_MODULE *and* exclude is on.
Thu Oct 2 00:21:11 2003 NAKAMURA, Hiroshi <[email protected]>
* test/logger/test_logger.rb: unlinking file before close causes
problem under win32 box.
* lib/xsd/datatypes.rb(XSDFloat, XSDDouble): add +/- sign explicitly
when stringified and embedded into XML instance. Ruby's sprintf may
format -0.0 as "0.0" (no minus sign) depending on underlying C
sprintf implementation.
* test/xsd/test_xsd.rb, test/soap/test_basetype.rb: follow above change.
* test/soap/calc/*: give httpd config param "CGIInterpreter".
"/usr/bin/env ruby" thing does not work under non-Unix boxes.
Thu Oct 2 00:25:21 2003 Nobuyoshi Nakada <[email protected]>
* signal.c (ruby_signal_name): adjust to the prototype.
* process.c (pst_inspect): ditto.
* ext/etc/etc.c (etc_getgrent, Init_etc): typo.
Wed Oct 1 20:49:41 2003 Nobuyoshi Nakada <[email protected]>
* gc.c (heaps): manage slots and limits together. [ruby-dev:21453]
* gc.c (add_heap): should not clear heaps slot even if realloc()
failed.
Wed Oct 1 20:36:49 2003 WATANABE Hirofumi <[email protected]>
* MANIFEST: add wince/mkconfig_wce.rb.
Wed Oct 1 17:22:33 2003 Yukihiro Matsumoto <[email protected]>
* ext/etc/etc.c: add new functions: setpwent, getpwent, endpwent,
setgrent, getgrent, endgrent.
* ext/socket/socket.c (sock_s_gethostbyname): do not reverse lookup.
Wed Oct 1 17:01:30 2003 Nobuyoshi Nakada <[email protected]>
* eval.c (rb_load): Object scope had priority over required file
scope. [ruby-dev:21415]
Wed Oct 01 14:09:53 2003 Takaaki Uematsu <[email protected]>
* wince/mkconfig_wce.rb: sorry, forget to commit.
Wed Oct 01 10:08:42 2003 Takaaki Uematsu <[email protected]>
* wince/setup.mak: add sigmarionIII SDK support.
* wince/Makefile.sub: ditto.
* wince/mkexports.rb: fix linker error in SH4.
* wince/mkconfig_wce.rb: camouflage RUBY_PLATFORM for compiling ext.
Wed Oct 01 08:02:52 2003 Takaaki Uematsu <[email protected]>
* wince/time_wce.c (time): add zero check.
Tue Sep 30 16:11:05 2003 Yukihiro Matsumoto <[email protected]>
* Makefile.in: copy lex.c from $(srcdir) if it's not the current
directory. [ruby-dev:21437]
Tue Sep 30 11:29:23 2003 Tanaka Akira <[email protected]>
* process.c (pst_inspect): describe stopped process "stopped".
Tue Sep 30 09:31:56 2003 Nobuyoshi Nakada <[email protected]>
* test/runner.rb: glob for directories.
Tue Sep 30 09:11:43 2003 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_eval): while/until should not capture break unless
they are destination of the break.
Tue Sep 30 03:12:02 2003 Minero Aoki <[email protected]>
* lib/net/http.rb (finish): revert to 1.93.
* lib/net/pop.rb (finish): revert to 1.60.
* lib/net/smtp.rb (finish): revert to 1.67.
* lib/net/http.rb (do_start): ensure to close socket if failed to
start session.
* lib/net/pop.rb (do_start): ditto.
* lib/net/smtp.rb (do_start): ditto.
* lib/net/smtp.rb: SMTP#started? wrongly returned false always.
Tue Sep 30 02:54:49 2003 Minero Aoki <[email protected]>
* test/ruby/test_iterator.rb: new test
test_break__nested_loop[123].
Mon Sep 29 23:39:13 2003 Minero Aoki <[email protected]>
* lib/net/http.rb (finish): does not raise IOError even if
!started?, to allow closing socket which was opened before
session started.
* lib/net/pop.rb (finish): ditto.
* lib/net/smtp.rb (finish): ditto.
Mon Sep 29 19:06:51 2003 WATANABE Hirofumi <[email protected]>
* ext/win32ole/extconf.rb: add windows.h checking.
(ruby-bugs PR#1185)
Mon Sep 29 16:18:30 2003 NAKAMURA, Hiroshi <[email protected]>
* lib/logger.rb: check if the given logdevice object respond_to :write
and :close, not is_a? IO. duck duck.
* test/logger/test_logger.rb: self IO.pipe reading/writing may be
locked by the flood. use tempfile.
* lib/wsdl/xmlSchema/data.rb: wrong constant reference.
Mon Sep 29 16:11:23 2003 Minero Aoki <[email protected]>
* test/fileutils/test_fileutils.rb: clean up temporary symlink.
Patched by NaHi. [ruby-dev:21420]
Mon Sep 29 11:16:55 2003 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_thread_atfork): wrong format specifier.
[ruby-dev:21428]
* process.c (pst_inspect): better description.
Mon Sep 29 02:31:44 2003 GOTOU Yuuzou <[email protected]>
* lib/webrick/utils.rb (Utils::su): use setgid and setuid to
set real and effective IDs. and setup group access list by
initgroups.
Sun Sep 28 11:14:19 2003 Koji Arai <[email protected]>
* ext/digest/digest.c (Init_digest): `copy_object' was deprecated.
`initialize_copy' should be defined.
* ext/stringio/stringio.c (Init_stringio): ditto.
Sat Sep 27 18:25:13 2003 NAKAMURA, Hiroshi <[email protected]>
* lib/xsd/charset.rb: XSD::Charset.is_ces did return always true under
$KCODE = "NONE" environment. check added.
* test/xsd/test_xsd.rb: add tests for above fix.
Sat Sep 27 15:58:50 2003 NAKAMURA, Hiroshi <[email protected]>
* lib/soap/rpc/cgistub.rb: make logging severity threshold higher.
* lib/soap/rpc/standaloneServer.rb: defer WEBrick server start to give
a chance to reset logging severity threshold.
* test/soap/calc/test_*, test/soap/helloworld/test_helloworld.rb: run
silent.
Sat Sep 27 09:44:18 2003 Minero Aoki <[email protected]>
* test/fileutils/test_fileutils.rb: clear all errors on Windows.
[ruby-dev:21417]
* test/fileutils/test_nowrite.rb: ditto.
Sat Sep 27 04:57:07 2003 NAKAMURA, Hiroshi <[email protected]>
* test/ruby/test_file.rb: new file. only asserts unlink-before-close
behaviour now.
* test/soap/marshal/test_digraph.rb: should close before unlink.
unlink-before-close pattern is not needed here.
Sat Sep 27 03:32:37 2003 NAKAMURA, Hiroshi <[email protected]>
* test/soap/*, test/wsdl/*, test/xsd/*: move TestCase classes into
each module namespace. TestMarshal in
test/soap/marshal/test_marshal.rb crashed with
test/ruby/test_marshal.rb.
Sat Sep 27 01:30:59 2003 NAKAMURA Usaku <[email protected]>
* ext/socket/socket.c (ruby_connect): on win32, type of the 4th
argument of getsockopt is char *.
Fri Sep 26 18:35:40 2003 Nobuyoshi Nakada <[email protected]>
* lib/resolv-replace.rb: 1.8 compliance. [ruby-talk:82946]
Fri Sep 26 17:39:27 2003 NAKAMURA, Hiroshi <[email protected]>
* test/ruby/test_marshal.rb: add test for ruby's objects.
Fri Sep 26 09:52:44 2003 Nobuyoshi Nakada <[email protected]>
* defines.h (flush_register_windows): use volatile only for gcc on
Solaris. [ruby-dev:21403]
* lib/mkmf.rb (xsystem): use system directly to honor shell meta
charaters.
Fri Sep 26 00:10:13 2003 NAKAMURA, Hiroshi <[email protected]>
* lib/README: updated.
Thu Sep 25 17:48:10 2003 NAKAMURA Usaku <[email protected]>
* ext/openssl/ossl.c (ossl_buf2str): fix type of 1st argument for
rb_protect.
* ext/openssl/ossl_hmac.c (ossl_hmac_digest): should return meaningful
value.
Thu Sep 25 09:00:00 2003 Nathaniel Talbott <[email protected]>
* lib/ostruct.rb: Added OpenStruct#==.
* test/ostruct/test_ostruct.rb: Added.
Thu Sep 25 07:55:26 2003 Nobuyoshi Nakada <[email protected]>
* ext/win32ole/win32ole.c, ext/openssl/ossl_pkey_dsa.c,
ext/openssl/ossl_pkey_rsa.c, ext/bigdecimal/bigdecimal.h: must
not use C++ or C99 style comment yet. (ruby-bugs:PR#1184)
Thu Sep 25 00:23:22 2003 WATANABE Hirofumi <[email protected]>
* MANIFEST: add SOAP4R.
Thu Sep 25 00:13:15 2003 NAKAMURA, Hiroshi <[email protected]>
* lib/soap/* (29 files): SOAP4R added.
* lib/wsdl/* (42 files): WSDL4R added.
* lib/xsd/* (12 files): XSD4R added.
* test/soap/* (16 files): added.
* test/wsdl/* (2 files): added.
* test/xsd/* (3 files): added.
* sample/soap/* (27 files): added.
* sample/wsdl/* (13 files): added.
Wed Sep 24 02:08:11 2003 GOTOU Yuuzou <[email protected]>
* lib/webrick/httpservlet/cgihandler.rb: conform to mswin32.
[ruby-talk:82735], [ruby-talk:82748], [ruby-talk:82818]
Tue Sep 23 23:10:16 2003 NAKAMURA, Hiroshi <[email protected]>
* lib/logger.rb: add Logger#<<(msg) for writing msg without any
formatting.
* test/logger/test_logger.rb: ditto.
Tue Sep 23 20:47:51 2003 Yukihiro Matsumoto <[email protected]>
* error.c (rb_warn_m): should not warn if -W0 is specified.
[ruby-talk:82675]
Mon Sep 22 21:28:57 2003 WATANABE Hirofumi <[email protected]>
* MANIFEST: updated.
Mon Sep 22 19:22:26 2003 GOTOU Yuuzou <[email protected]>
* configure.in (AC_CHECK_FUNCS): add setuid and setgid.
Mon Sep 22 12:34:55 2003 Yukihiro Matsumoto <[email protected]>
* util.c (ruby_strtod): skip preceding zeros before counting
digits in the mantissa. (ruby-bugs PR#1181)
Sun Sep 21 04:12:36 2003 GOTOU Yuuzou <[email protected]>
* ext/openssl/ossl_ocsp.c (ossl_ocspreq_initialize): the argument
should be a String.
* ext/openssl/ossl_ocsp.c (ossl_ocspres_initialize): ditt.
* ext/openssl/ossl_x509attr.c (ossl_x509attr_initialize): ditto.
* ext/openssl/ossl_x509ext.c (ossl_x509ext_initialize): ditto.
* ext/openssl/ossl_x509ext.c (ossl_x509ext_set_value): ditto.
Sat Sep 20 11:49:05 2003 NAKAMURA, Hiroshi <[email protected]>
* lib/logger.rb: typo fixed.
* test/logger/test_logger.rb: new file.
Fri Sep 19 11:39:00 2003 Nathaniel Talbott <[email protected]>
* test/testunit/*: Added.
* lib/test/unit.rb: Documentation update.
* lib/test/unit/ui/console/testrunner.rb (TestRunner#initialize):
Ditto.
* lib/test/unit.rb: Factored out an ObjectSpace collector.
* lib/test/unit/collector/objectspace.rb: Ditto.
* sample/testunit/*: Added.
Fri Sep 19 01:00:48 2003 GOTOU Yuuzou <[email protected]>
* lib/webrick/log.rb (BasicLog#log): get rid of as ineffectual
condition.
* lib/webrick/log.rb (BasicLog#format): add "\n" to message.
Thu Sep 18 22:43:20 2003 Yukihiro Matsumoto <[email protected]>
* eval.c (proc_invoke): should push PROT_PCALL tag for orphans.
* eval.c (proc_invoke): should update "result" for orphans.
Thu Sep 18 20:33:03 2003 Tietew <[email protected]>
* parse.y (str_xquote): do not prepend escapes in
backqoute literals. [ruby-list:38409]
Thu Sep 18 20:30:17 2003 Tanaka Akira <[email protected]>
* lib/pathname.rb: update document.
Thu Sep 18 15:27:05 2003 NAKAMURA, Hiroshi <[email protected]>
* lib/logger.rb: new file. Logger, formerly called devel-logger or
Devel::Logger.
* sample/logger/*: new file. samples of logger.rb.
Wed Sep 17 23:41:45 2003 Yukihiro Matsumoto <[email protected]>
* eval.c (localjump_destination): should not raise ThreadError
exception for "break". [ruby-dev:21348]
* eval.c (proc_invoke): use result instead of prot_tag->retval.
retval is no longer propagated to the ancestors.
Wed Sep 17 20:34:00 2003 Nobuyoshi Nakada <[email protected]>
* parse.y (tokadd_string, parse_string, yylex): escaped terminator
is now interpreted as is. [ruby-talk:82206]
Wed Sep 17 18:52:36 2003 Minero Aoki <[email protected]>
* test/fileutils/fileassertions.rb: new file.
* test/fileutils/test_fileutils.rb: new file.
* test/fileutils/test_nowrite.rb: new file.
Wed Sep 17 18:51:02 2003 Minero Aoki <[email protected]>
* test/strscan/test_stringscanner.rb: require test/unit.
Wed Sep 17 18:35:34 2003 Minero Aoki <[email protected]>
* test/strscan/test_stringscanner.rb: new file.
Wed Sep 17 18:03:30 2003 GOTOU Yuuzou <[email protected]>
* ext/openssl: all files are reviewed to simplify and avoid memory leak.
* ext/openssl/extconf.rb: add check for assert.h.
* ext/openssl/ossl.c (ossl_buf2str): new function to convert
C buffer to String and free buffer.
* ext/openssl/ossl.c (ossl_x509_ary2sk): new function to convert
Array of OpenSSL::X509 to STACK_OF(X509) with exception safe.
* ext/openssl/ossl.c (ossl_to_der, ossl_to_der_if_possible): new
functions to convert object to DER string.
* ext/openssl/ossl.h: ditto.
* ext/openssl/ossl_bio.c (ossl_membio2str): new function to convert
BIO to String object and free BIO.
* ext/openssl/ossl_bio.h: ditto.
* ext/openssl/ossl_pkcs7.c (ossl_pkcs7_to_der): add for "to_der".
* ext/openssl/ossl_x509name.c (ossl_x509name_to_der): ditto.
* ext/openssl/ossl_x509ext.c (ossl_x509ext_to_der): ditto.
* ext/openssl/ossl_x509ext.c (create_ext_from_array): removed
and reimplement in openssl/x509.rb.
* ext/openssl/ossl_x509attr.c: reimplemented and disable some
method temporarily. this class doesn't work fine without ASN.1
data support;-) I'll rewrite in near future.
* ext/openssl/lib/openssl/x509.c (X509::Attribute): get rid off
unused code.
* ext/openssl/lib/openssl/x509.c (X509::ExtensionFactory): refine all.
Tue Sep 16 22:25:06 2003 NAKAMURA, Hiroshi <[email protected]>
* test/csv/test_csv.rb: add negative tests of row_sep.
Tue Sep 16 18:02:36 2003 Yukihiro Matsumoto <[email protected]>
* regex.c (re_compile_pattern): should not translate character
class range edge. [ruby-list:38393]
Tue Sep 16 16:47:56 2003 WATANABE Hirofumi <[email protected]>
* MANIFEST: add test/csv/mac.csv.
* win32/Makefile.sub, bcc32/Makefile.sub (test): add phony NUL target.
Mon Sep 15 19:02:52 2003 NAKAMURA, Hiroshi <[email protected]>
* lib/csv.rb: add extra pamameter to specify row(record) separater
character. To parse Mac's CR separated CSV, do like this.
CSV.open("mac.csv", "r", ?,, ?\r) { |row| p row.to_a }
The 3rd parameter in this example ?, is for column separater and the
4th ?\r is for row separater. Row separater is nil by default. Nil
separater means "\r\n" or "\n".
* test/csv/test_csv.rb: add tests for above feature.
* test/csv/mac.csv: added. Sample CR separated CSV file.
Fri Sep 12 22:41:48 2003 Michal Rokos <[email protected]>
* ext/openssl/ossl.c: move ASN.1 stuff to ossl_asn1.[ch]
* ext/openssl/ossl.c: move BIO stuff to ossl_bio.[ch]
* ext/openssl/ossl_asn1.[ch]: new files
* ext/openssl/ossl_bio.[ch]: new files
Fri Sep 12 12:30:41 2003 Nobuyoshi Nakada <[email protected]>
* intern.h (rb_disable_super, rb_enable_super): replace with dummy
expressions instead of prototypes. the functions remain yet for
binary compatibility. [ruby-talk:81758]
Fri Sep 12 12:09:54 2003 Yukihiro Matsumoto <[email protected]>
* bignum.c (rb_big_and): convert argument using 'to_int'.
* bignum.c (rb_big_or): ditto.
* bignum.c (rb_big_xor): ditto.
Fri Sep 11 22:06:14 2003 David Black <[email protected]>
* lib/scanf.rb: Took out useless @matched_item variable; some small
refactoring.
Thu Sep 11 08:43:44 2003 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_f_require): allow "require" on $SAFE>0, if feature
name is not tainted.
* lib/rexml/parsers/baseparser.rb (REXML::Parsers::BaseParser::stream):
Supports StringIO.
Wed Sep 10 22:47:30 2003 GOTOU Yuuzou <[email protected]>
* ext/openssl/ossl.h: add a workaround for win32 platform.
libeay32.dll doesn't export functions defined in conf_api.h.
* ext/openssl/ossl_config.c (ossl_config_initialize): ditto.
* ext/openssl/ossl_config.c (ossl_config_add_value): ditto.
* ext/openssl/ossl_config.c (set_conf_section_i): should check
if the argument is Array.
Wed Sep 10 22:41:54 2003 Tietew <[email protected]>
* eval.c (win32_get_exception_list): avoid VC7 warning.
[ruby-win32:577]
Tue Sep 9 10:39:51 2003 Nobuyoshi Nakada <[email protected]>
* eval.c (struct tag): dst should be VALUE.
Tue Sep 9 10:39:51 2003 Nobuyoshi Nakada <[email protected]>
* eval.c (localjump_destination): stop at the scope where the current
block was created. [ruby-dev:21353]
Tue Sep 9 05:17:04 2003 GOTOU Yuuzou <[email protected]>
* ext/openssl/ossl_config.rb: avoid compile error in OpenSSL-0.9.6.
Tue Sep 9 02:41:35 2003 Michal Rokos <[email protected]>
* ext/openssl/ossl_config.c: Refine compatibility.
Tue Sep 9 01:50:45 2003 GOTOU Yuuzou <[email protected]>
* lib/webrick/httpserver.rb (HTTPServer#access_log): add "\n" to
the message.
* lib/webrick/log.rb (BasicLog#log): add "\n" only if needed.
Mon Sep 8 22:15:33 2003 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/multi-tk.rb: modify security check at creating
a new interpreter
Mon Sep 8 20:00:12 2003 Nobuyoshi Nakada <[email protected]>
* lib/optparse.rb, lib/optparse/version.rb: search also all
capital versions.
Mon Sep 8 19:26:33 2003 GOTOU Yuuzou <[email protected]>
* ext/openssl/ossl.h: include openssl/conf.h and openssl/conf_api.h.
* ext/openssl/ossl_config.c: refine all with backward compatibility.
* ext/openssl/ossl_config.h: export GetConfigPtr() and DupConfigPtr().
* ext/openssl/ossl_x509.c: added new constants under X509 module.
DEFAULT_CERT_AREA, DEFAULT_CERT_DIR, DEFAULT_CERT_FILE,
DEFAULT_CERT_DIR_ENV, DEFAULT_CERT_FILE_ENV and DEFAULT_PRIVATE_DIR.
* ext/openssl/ossl_x509ext.c (ossl_x509extfactory_free): don't free
the members of the struct. it's left to GC.
* ext/openssl/ossl_x509ext.c (ossl_x509_set_config): add for config=.
* ext/openssl/ossl_x509ext.c (Xossl_x509extfactory_initialize):
add attr readers: issuer_certificate, subject_certificate,
subject_request, crl and config.
Mon Sep 8 18:26:41 2003 GOTOU Yuuzou <[email protected]>
* lib/webrick/accesslog.rb (AccessLog::setup_params): use req.port
instead of config[:Port] or req.request_uri.port.
* lib/webrick/httprequest.rb (HTTPRequest#meta_vars): ditto.
* lib/webrick/httpservlet/filehandler.rb (FileHandler#dir_list): ditto.
* lib/webrick/config.rb: :Listen option never be used.
* lib/webrick/server.rb (GenericServer#initialize): don't use :Listen
option and add warning message.
* lib/webrick/log.rb (BasicLog#<<): shortcut of log(INFO, ...).
* lib/webrick/httpserver.rb (HTTPServer#accesslog): use << for logging.
Sun Sep 7 16:08:28 2003 Hidetoshi NAGAI <[email protected]>
* ext/tcltklib/tcltklib.c (lib_mainloop_core): fixed signal-trap bug
* ext/tk/lib/*.rb : Ruby/Tk works at $SAFE == 4
Sat Sep 6 02:26:34 2003 NAKAMURA, Hiroshi <[email protected]>
* test/ruby/test_*.rb: assert_same, assert_match, and so on.
Sat Sep 6 18:45:46 2003 Mauricio Fernandez <[email protected]>
* parse.y (assignable): call rb_compile_error(), not rb_bug().
[ruby-core:01523]
Sat Sep 6 17:40:41 2003 GOTOU Yuuzou <[email protected]>
* ext/openssl/ruby_missing.c: rid of unnecessary backward
compatibility stuff. and remove DEFINE_ALLOC_WRAPPER from
all sources.
* ext/openssl/ossl_x509ext.c (X509::Extension.new): new method.
* ext/openssl/ossl_x509ext.c (X509::Extension#oid=): new method.
* ext/openssl/ossl_x509ext.c (X509::Extension#value=): new method.
* ext/openssl/ossl_x509ext.c (X509::Extension#critical=): new method.
Sat Sep 6 01:23:22 2003 NAKAMURA Usaku <[email protected]>
* win32/win32.c (CreateChild): need to quote cmd if RUBYSHELL is set.
* win32/win32.c (CreateChild): fix condition about whether to call
shell or not.
Sat Sep 6 00:36:20 2003 Nobuyoshi Nakada <[email protected]>
* Makefile.in (test): phony target.
* lib/mkmf.rb (have_library, find_library): configure by library
name.
* lib/optparse.rb (OptionParser#order, #permute, #parse): allow an
array as argument.
* test/ruby/test_*.rb: moved invariants to left side in
assert_equal, and use assert_nil, assert_raises and so on.
* win32/win32.c (isInternalCmd): distinguish command.com and
cmd.exe.
* win32/win32.c (make_cmdvector): a character just after wildcard
was ignored. [ruby-core:01518]
Fri Sep 5 20:27:08 2003 NAKAMURA, Hiroshi <[email protected]>
* test/ruby/test_*.rb: replace 'assert(a == b)' with assert_equal(a, b)'
Fri Sep 5 18:00:51 2003 GOTOU Yuuzou <[email protected]>
* ext/openssl/lib/openssl/x509.rb: new method X509::Name::parse.
* ext/openssl/ossl_digest.c: add ossl_digest_new().
* ext/openssl/ossl_digest.h: ditto.
* ext/openssl/ossl_cipher.c: add ossl_cipher_new().
* ext/openssl/ossl_cipher.h: ditto.
Fri Sep 5 15:32:04 2003 Nobuyoshi Nakada <[email protected]>
* misc/ruby-mode.el (ruby-font-lock-maybe-here-docs): should not
search delimiter forward if found in backward.
Fri Sep 5 13:32:48 2003 Nobuyoshi Nakada <[email protected]>
* test/runner.rb: arguments should be keys.
Fri Sep 5 12:09:55 2003 WATANABE Hirofumi <[email protected]>
* test/ruby/test_system.rb (test_system): check existence of ruby
interpreter.
Fri Sep 5 11:32:17 2003 Nobuyoshi Nakada <[email protected]>
* lib/optparse.rb (--version): fix assignment/reference order.
* lib/optparse.rb (OptionParser#help): new; OptionParser#to_s may
be deprecated in future.
* lib/optparse/version.rb (OptionParser#show_version): hide Object.
* test/runner.rb: fix optparse usage.
* test/runner.rb: glob all testsuits if no tests given.
Fri Sep 5 10:42:58 2003 NAKAMURA, Hiroshi <[email protected]>
* test/runner.rb: added. gets testcases from command line and runs it.
* test/ruby/test_gc.rb: remove useless part which was for dumping test
result.
Fri Sep 5 09:28:59 2003 NAKAMURA, Hiroshi <[email protected]>
* test/ruby/test_gc.rb: added. splitter.rb which I made to split
sample/test.rb into test/ruby/test_* kindly removed GC test (the
last section in the original test) to reduce things to be worried.
Fri Sep 5 03:00:04 2003 Nobuyoshi Nakada <[email protected]>
* test/ruby/test_iterator.rb (test_block_in_arg): add no block
given tests.
* test/ruby/test_iterator.rb (test_ljump): uncomment LocalJumpError
test.
Fri Sep 5 01:10:11 2003 NAKAMURA, Hiroshi <[email protected]>
* test/ruby: tests for ruby itself.
* test/ruby/test_*.rb: split sample/test.rb into 28 test/unit testcases.
some tests could not be translates... search '!!' mark to see it.
* test/csv/test_csv.rb: should require 'csv', not '../lib/csv'. test
runner should set load path correctly.
Fri Sep 5 01:03:59 2003 NAKAMURA, Hiroshi <[email protected]>
* test/csv/test_csv.rb: close opened files for CSV::IOBuf explicitly.
opened file cannot be removed under win32 box.
Thu Sep 4 23:59:40 2003 Nobuyoshi Nakada <[email protected]>
* parse.y (tokadd_string): newlines have no special meanings in
%w/%W, otherwise they are ignored only when interpolation is
enabled. [ruby-dev:21325]
Thu Sep 4 19:38:25 2003 NAKAMURA, Hiroshi <[email protected]>
* ext/io/wait/.cvsignore: added.
* ext/openssl/.cvsignore: added.
Thu Sep 4 19:28:24 2003 NAKAMURA, Hiroshi <[email protected]>
* sample/openssl: added. Sample of standard distribution library
should be locate in sample/{module_name}/*.
* ext/openssl/sample/*: removed. move to sample/openssl/*.
Thu Sep 4 18:02:15 2003 NAKAMURA, Hiroshi <[email protected]>
* test/csv/test_csv.rb: use remove_const to reduce warnings. use
Dir.tmpdir to locate working files.
Thu Sep 4 17:41:31 2003 Nobuyoshi Nakada <[email protected]>
* misc/ruby-mode.el (ruby-here-doc-beg-re): underscore also is
valid delimiter.
* misc/ruby-mode.el (ruby-here-doc-end-match): must quote
arbitrary string to use as regexp.
* misc/ruby-mode.el (ruby-font-lock-maybe-here-docs): must not
call `ruby-here-doc-end-match' unless `ruby-here-doc-beg-re'
matched.
Thu Sep 4 15:40:07 2003 NAKAMURA, Hiroshi <[email protected]>
* test/csv/test_csv.rb: run on test/unit original layer.
Thu Sep 4 12:54:50 2003 why the lucky stiff <[email protected]>
* ext/syck/token.c: headerless documents with root-level spacing now
honored.
Thu Sep 4 00:06:14 2003 Yukihiro Matsumoto <[email protected]>
* eval.c (mark_frame_adj): need to adjust argv pointer if using
system's alloca. [ruby-core:01503]
Wed Sep 3 21:33:20 2003 NAKAMURA, Hiroshi <[email protected]>
* test: add test directory. Test::Unit aware testcases and needed
files should be located in this directory. dir/file name convention;
test/{module_name}/test_{testcase_name}.rb
test/{module_name}/{needed_files}
someday, someone will write testrunner which searches test_*.rb and
run testcases automatically.
* test/csv/*: add testcase for lib/csv.rb.
Wed Sep 3 01:37:09 2003 Yukihiro Matsumoto <[email protected]>
* io.c (rb_f_gets): should call next_argv() before type check
current_file. [ruby-list:38336]
Tue Sep 2 20:37:15 2003 GOTOU Yuuzou <[email protected]>
* ext/openssl/lib/net/protocols.rb (SSLIO#ssl_connect): warning
for skipping server verification.
Tue Sep 2 23:36:57 2003 Yukihiro Matsumoto <[email protected]>
* eval.c (proc_invoke): should retrieve retval when pcall is true.
Tue Sep 2 14:09:20 2003 Yukihiro Matsumoto <[email protected]>
* ext/socket/extconf.rb: check s6_addr8 in in6_addr (Tru64 UNIX).
the patch is submitted by nmu <[email protected]>.
* ext/socket/getaddrinfo.c (getaddrinfo): should use in6_addr8 on
some platforms.
* ext/socket/getnameinfo.c (getnameinfo): ditto.
Tue Sep 2 14:02:19 2003 Hidetoshi NAGAI <[email protected]>
* ext/tcltklib/tcltklib.c (ip_invoke): fixed bug on passing a exception
* ext/tk/lib/{tk.rb, tkcanvas.rb, tkfont.rb, tktext.rb} :
bug fix and improvement of font control