-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
7692 lines (4563 loc) · 245 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
Thu Apr 8 19:45:08 2004 Nobuyoshi Nakada <[email protected]>
* ext/extmk.rb (extmake): skip uncompiled extensions.
* lib/mkmf.rb (create_makefile): emit no rules for static library if
$static is nil, e.g., outside of ext/.
* lib/test/unit/ui/console/testrunner.rb (test_started): show test
name via $0.
* runruby.rb: set environments to use the compiled binary.
* test/runner.rb: do nothing while cross-compiling.
* test/drb/drbtest.rb, test/soap/calc/test_calc_cgi.rb: use envutil to
know ruby binary.
* test/ruby/envutil.rb: give priority to RUBY environment variable to
use just compiled binary and libraries.
Thu Apr 8 19:03:33 2004 Nobuyoshi Nakada <[email protected]>
* io.c (rb_io_binmode): inverted condition. [ruby-dev:23349]
Thu Apr 8 18:22:00 2004 Nobuyoshi Nakada <[email protected]>
* ext/iconv/iconv.c (iconv_s_list): return encoding list if no block
is given. [ruby-dev:23063]
Wed Apr 7 15:29:24 2004 Yukihiro Matsumoto <[email protected]>
* pack.c (pack_pack): use NUM2INT() instead of num2i32().
Wed Apr 7 12:32:02 2004 Kouhei Sutou <[email protected]>
* lib/rss/parser.rb, lib/rss/1.0.rb: accepted rdf:resource or
resource attribute in rdf:li.
* test/rss/test_parser.rb: added test for above change.
* lib/rss/dublincore.rb: reverted style.
* lib/rss/xmlparser.rb: normalized XMLParser class hierarchy.
Wed Apr 7 10:43:17 2004 Nobuyoshi Nakada <[email protected]>
* Makefile.in, common.mk, */Makefile.sub (ext/extinit.o): OUTFLAG
doesn't work for object files on VC.
* */Makefile.sub (config.h): need SIZEOF_TIME_T now.
Wed Apr 7 00:24:34 2004 Masatoshi SEKI <[email protected]>
* lib/rinda/rinda.rb: fix hash tuple bug.
* lib/rinda/tuplespace.rb: ditto.
* test/rinda/test_rinda.rb
Tue Apr 6 18:24:18 2004 Yukihiro Matsumoto <[email protected]>
* file.c (rb_get_path): get path string via "to_path" method if
path object is not a string. [Ruby2]
* gc.c (rb_gc_call_finalizer_at_exit): do not free threads in the
exit finalizers.
* io.c (rb_io_reopen): should use rb_io_check_io().
Tue Apr 6 16:46:09 2004 Tanaka Akira <[email protected]>
* configure.in: check the size of time_t.
* time.c (time_add): new function.
(time_plus): use time_add.
(time_minus): use time_add.
Tue Apr 6 13:11:48 2004 NAKAMURA Usaku <[email protected]>
* ext/socket/socket.c (raise_socket_error): never return.
* ext/socket/socket.c (make_hostent): must return value.
Tue Apr 6 00:14:43 2004 Yukihiro Matsumoto <[email protected]>
* error.c (Init_Exception): remove Exception#to_str. [Ruby2]
* eval.c (error_print): should no call "to_str" anymore use
"message" method instead.
* io.c (rb_f_open): Kernel#open() calls "to_open" if the first
argument responds to it. [Ruby2]
Tue Apr 6 00:13:43 2004 Masatoshi SEKI <[email protected]>
* lib/rinda/rinda.rb: add require 'drb/drb'
Mon Apr 5 22:25:32 2004 Tanaka Akira <[email protected]>
* test/zlib/test_zlib.rb: new file.
(TestZlibGzipWriter#test_new_nil): test for [ruby-dev:23228].
Mon Apr 5 22:16:23 2004 Minero Aoki <[email protected]>
* parse.y (assoc_list): {a: 1, b: 2} should be allowed.
[ruby-dev:23328]
Mon Apr 5 19:43:40 2004 Kazuo Saito <[email protected]>
* regexec.c: imported Oni Guruma 2.2.6.
Mon Apr 5 19:39:10 2004 Kazuo Saito <[email protected]>
* regparse.c, oniguruma.h: imported Oni Guruma 2.2.6.
Mon Apr 5 12:12:09 2004 NAKAMURA Usaku <[email protected]>
* ext/socket/socket.c (raise_socket_error): some platforms don't have
EAI_SYSTEM.
Mon Apr 5 08:18:23 2004 Dave Thomas <[email protected]>
* lib/rdoc/rdoc.rb: Remove leading ./ from file names so that cross
references work properly.
Sun Apr 4 14:01:20 2004 Dave Thomas <[email protected]>
* lib/rdoc/options.rb (Options::parse): Allow multiple -x options to
RDoc. Fix bug where files weren't being excluded properly
Sat Apr 3 09:36:38 2004 why the lucky stiff <[email protected]>
* ext/syck/syck.h: version 0.43.
Sat Apr 3 08:28:47 2004 why the lucky stiff <[email protected]>
* ext/syck/lib/gram.c: allow root-level inline collections.
[ruby-talk:94922]
* lib/yaml/rubytypes.rb (Symbol#to_yaml): emit symbols as implicits.
[ruby-talk:94930]
Fri Apr 2 19:28:48 2004 Nobuyoshi Nakada <[email protected]>
* bcc32/Makefile.sub (OUTFLAG): needed for static-linked-ext.
Fri Apr 2 18:00:05 2004 Nobuyoshi Nakada <[email protected]>
* ext/extmk.rb (extmake): extract necessary variables for static link
from Makefile.
* lib/mkmf.rb (create_makefile): save preload and libpath for next
compile.
Fri Apr 2 17:27:17 2004 Yukihiro Matsumoto <[email protected]>
* eval.c (top_include): include in the wrapped load is done for
the wrapper, not for a singleton class for wrapped main.
[ruby-dev:23305]
Fri Apr 2 15:13:44 2004 Yukihiro Matsumoto <[email protected]>
* bignum.c (rb_big_eq): use temporary double variable to save the
result (internal float register may be bigger than 64 bits, for
example, 80 bits on x86). [ruby-dev:23311]
Fri Apr 2 14:35:26 2004 Yukihiro Matsumoto <[email protected]>
* eval.c (block_pass): should generate unique identifier of the
pushing block. [ruby-talk:96363]
Fri Apr 2 11:36:20 2004 Minero Aoki <[email protected]>
* eval.c (Init_load): make $LOADED_FEATURES built-in.
[ruby-dev:23299]
* ruby.c (ruby_prog_init): make $PROGRAM_NAME built-in.
* lib/English.rb: remove $LOADED_FEATURES and $PROGRAM_NAME.
Fri Apr 2 07:31:38 2004 Yukihiro Matsumoto <[email protected]>
* ext/socket/socket.c: mistakingly removed do_not_reverse_lookup.
[ruby-list:39475]
* ext/socket/socket.c (make_hostent): fix memory leak, based on
the patch from HORIKAWA Hisashi <[email protected]>.
Thu Apr 1 22:55:33 2004 Dave Thomas <[email protected]>
* lib/rdoc/parsers/parse_rb.rb: Allow rdoc comments in
=begin rdoc/=end
* lib/rdoc/parsers/parse_rb.rb: Fix problem with comment in
top-level method being taken as file comment.
Thu Apr 1 22:55:04 2004 Dave Thomas <[email protected]>
* lib/rdoc/ri/ri_options.rb: Fix undefined variable warning.
Thu Apr 1 19:58:37 2004 NAKAMURA, Hiroshi <[email protected]>
* lib/soap/mapping/{factory.rb,registry.rb}: fixed illegal mapped URI
object with soap/marshal.
added URIFactory class for URI mapping. BasetypeFactory checks
instance_variables when original mapping is not allowed (ivar must
be empty). Instance of URI have instance_variables but it must be
llowed whenever original mapping is allowed or not.
Wed Mar 31 19:06:23 2004 Tanaka Akira <[email protected]>
* time.c (year_leap_p): new function.
(timegm_noleapsecond): ditto.
(search_time_t): use timegm_noleapsecond instead of
mktime for first guess.
Wed Mar 31 12:05:17 2004 Nobuyoshi Nakada <[email protected]>
* lib/delegate.rb (DelegateClass): define internal methods of the
result class, but not metaclass of the caller. [ruby-talk:96156]
* intern.h: provide proper prototypes. [ruby-core:02724]
* ruby.h: missing.h is now prerequisite to intern.h.
Wed Mar 31 11:17:16 2004 Yukihiro Matsumoto <[email protected]>
* pack.c (pack_pack): raises RangeError if uv is out of UTF8 value
range. [ruby-dev:23281]
* io.c (rb_io_binmode): stdio buffer should be empty when calling
IO#binmode. [ruby-talk:96155]
Tue Mar 30 20:25:34 2004 Tanaka Akira <[email protected]>
* time.c (search_time_t): limit guess range by mktime if it is
available. [ruby-dev:23274]
Tue Mar 30 18:19:00 2004 Nobuyoshi Nakada <[email protected]>
* eval.c (rb_eval): fix SEGV at retry in iterator's receiver.
[ruby-dev:23227]
Mon Mar 29 20:17:16 2004 Nobuyoshi Nakada <[email protected]>
* process.c (rb_exec): follow older behavior if close-on-exec is not
available.
* process.c (rb_fork): protect from exceptions while waiting failed
process, if status is given.
Sun Mar 28 16:25:37 2004 Nobuyoshi Nakada <[email protected]>
* cygwin/GNUmakefile.in (clean-local, distclean-local): remove
work files.
* win32/Makefile.sub (clean-local): ditto.
Sun Mar 28 14:23:02 2004 Minero Aoki <[email protected]>
* lib/net/pop.rb: def m( arg ) -> def m(arg).
Sun Mar 28 14:09:13 2004 Minero Aoki <[email protected]>
* lib/net/pop.rb (auth): failed when account/password include "%".
[ruby-talk:95933]
Sat Mar 27 21:40:41 2004 Tanaka Akira <[email protected]>
* (lib/open-uri.rb): permit extra semicolon in content-type field.
Sat Mar 27 10:40:48 2004 Tanaka Akira <[email protected]>
* (lib/pp.rb, lib/prettyprint.rb): define seplist in PP::PPMethods
instead of PrettyPrint.
Sat Mar 27 01:47:09 2004 NAKAMURA, Hiroshi <[email protected]>
* lib/logger.rb: trim tail space of each line. no user visible change.
* lib/rss/dublincore.rb: fixed class definition mismatch.
* sample/openssl/gen_csr.rb: fixed wrong usage text.
Thu Mar 25 23:15:24 2004 Dave Thomas <[email protected]>
* lib/rdoc/ri/ri_options.rb (RI::Options::show_version):
Add --version option
Thu Mar 25 21:45:00 2004 Shigeo Kobayashi <[email protected]>
* ext/bigdecimal/bigdecimal.c: Bug in + and - reported by Bret Jolly
fixed.
Thu Mar 25 21:01:32 2004 Nobuyoshi Nakada <[email protected]>
* version.c (ruby_show_copyright): obtain copyright year from
RUBY_RELEASE_YEAR.
* win32/resource.rb: ditto.
Thu Mar 25 19:37:35 2004 Nobuyoshi Nakada <[email protected]>
* win32/resource.rb: default rubyw icon to ruby.ico, and let DLL also
include them.
* win32/resource.rb: include winver.h for older WindowsCE.
Thu Mar 25 14:01:03 2004 Nobuyoshi Nakada <[email protected]>
* common.mk, */Makefile.sub (lib, dll): phony targets.
* configure.in (ruby, miniruby): ditto.
* cygwin/GNUmakefile.in (rubyw): ditto.
Thu Mar 25 04:16:18 2004 Dave Thomas <[email protected]>
* lib/rdoc/ri/ri_options.rb (RI::Options): Add the --list-names option,
which dumps our all known names
Thu Mar 25 03:57:47 2004 Dave Thomas <[email protected]>
* lib/rdoc/ri/ri_util.rb (NameDescriptor::initialize): No longer
allow nested classes to be designated using "."--you must
now use "::"
Thu Mar 25 02:00:18 2004 Dave Thomas <[email protected]>
* lib/rdoc/generators/template/html/one_page_html.rb (Page):
Fix to work with C modules.
Wed Mar 24 20:49:00 2004 Gavin Sinclair <[email protected]>
* lib/uri.rb: Documented (thanks Dmitry V. Sabanin).
* lib/uri/common.rb: Ditto.
* lib/uri/ftp.rb: Ditto.
* lib/uri/generic.rb: Ditto.
* lib/uri/http.rb: Ditto.
* lib/uri/https.rb: Ditto.
* lib/uri/ldap.rb: Ditto.
* lib/uri/mailto.rb: Ditto.
Wed Mar 24 18:48:05 2004 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb ($ruby, $topdir, $hdrdir): should not be affected by
DESTDIR after installed.
* lib/mkmf.rb (dummy_makefile): default file lists to be cleaned.
Wed Mar 24 12:32:56 2004 Dave Thomas <[email protected]>
* lib/rdoc/parsers/parse_c.rb (RDoc::C_Parser::handle_class_module):
Don't document methods if we don't know for sure the
class or module.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_class):
Don't store documentation for singleton classes if we
don't know the real class.
Wed Mar 24 11:11:26 2004 Dave Thomas <[email protected]>
* lib/rdoc/generators/html_generator.rb (Generators::HTMLGenerator::load_html_template):
Allow non-RDoc templates by putting a slash in the template name
Wed Mar 24 10:05:22 2004 Yukihiro Matsumoto <[email protected]>
* lib/tempfile.rb (Tempfile::_close): should not clear @tmpname
until the file is really removed. [ruby-core:02684]
Wed Mar 24 04:12:44 2004 Yukihiro Matsumoto <[email protected]>
* object.c (rb_mod_cvar_get): new method Module#class_variable_get.
* object.c (rb_mod_cvar_set): ditto (Module#class_variable_set).
Tue Mar 23 17:45:22 2004 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_thread_atfork): 1.9 warns no more for thread
termination. [ruby-dev:23212]
Tue Mar 23 14:46:10 2004 Nobuyoshi Nakada <[email protected]>
* Makefile.in, */Makefile.sub, common.mk (clean-local, distclean-local):
separate files under directories due to directory separator.
* */Makefile.sub (MKFILES): common.mk and */Makefile.sub should not be
removed.
* win32/Makefile.sub, wince/Makefile.sub: $* cannot appear in explicit
rules.
* cygwin/GNUmakefile.in: some mingw stuffs were missed.
* lib/mkmf.rb (create_makefile): Borland make wrongly removes braces
from command lines.
* bcc32/Makefile.sub: needs bcc32/mkexports.rb.
Mon Mar 22 08:21:17 2004 Nobuyoshi Nakada <[email protected]>
* Makefile.in, */Makefile.sub, common.mk: extract common portions.
* Makefile.in, cygwin/GNUmakefile.in, */Makefile.sub (RBCONFIG):
separated time stamp file for rbconfig.rb.
* configure.in: append common.mk to Makefile.
* mkconfig.rb: keep mtime of rbconfig.rb if unchanged.
* win32/rm.bat: remove multiple files.
* wince/mkconfig_wce.rb: use fake.rb instead.
Sun Mar 21 22:17:35 2004 GOTOU Yuuzou <[email protected]>
* lib/webrick/httpserver.rb (WEBrick::HTTPServer#virtual_host):
sort @virtual_hosts in address, port, host order.
* lib/webrick/httpserver.rb (WEBrick::HTTPServer#lookup_server):
hostname should not be match if :ServerAlias is not given.
Sun Mar 21 21:11:16 2004 Keiju Ishitsuka <[email protected]>
* lib/shell/*: bug fix for Shell#system(command_line_string).
Sun Mar 21 21:04:42 2004 WATANABE Hirofumi <[email protected]>
* ruby.1: add -width option to .Bl for old groff.
Sun Mar 21 18:57:37 2004 Kouhei Sutou <[email protected]>
* test/rss/*: Test::Unit::TestCase -> RSS::TestCase and
Test::Unit::Assertions -> RSS::Assertions.
Sun Mar 21 18:48:20 2004 Kouhei Sutou <[email protected]>
* lib/rss/{rss,dublincore,syndication}.rb: handled W3CDTF correctly.
Sun Mar 21 18:15:29 2004 Kouhei Sutou <[email protected]>
* test/rss/test_xml-stylesheet.rb: added tests for xml-stylesheet.
* lib/rss/xml-stylesheet.rb: added xml-stylesheet parsing
function.
Sat Mar 20 23:51:03 2004 WATANABE Hirofumi <[email protected]>
* eval.c (rb_require_safe): preserve old ruby_errinfo.
[ruby-talk:95409]
* eval.c (rb_f_raise): should not clear backtrace information if
exception object already have one.
Sat Mar 20 21:21:03 2004 WATANABE Hirofumi <[email protected]>
* ext/extmk.rb: rm -rf $extout, not extout.
Sat Mar 20 15:25:36 2004 Dave Thomas <[email protected]>
* lib/rdoc/generators/template/html/html.rb (RDoc::Page): Force
page background to white.
Sat Mar 20 09:33:36 2004 Tadayoshi Funaba <[email protected]>
* lib/date.rb, lib/date/format.rb: _parse() now accepts fractional
part of second minute that follows a comma or a full stop.
Fri Mar 19 21:06:21 2004 Yukihiro Matsumoto <[email protected]>
* parse.y (assoc_list): allow {sym: val} style Hash. [Ruby2]
this change is done by Nobuyoshi Nakada <[email protected]>.
Fri Mar 19 15:15:15 2004 Yukihiro Matsumoto <[email protected]>
* variable.c (rb_cvar_set): class variables become private to the
particular class/module. [Ruby2]
* variable.c (rb_cvar_get): ditto.
* variable.c (rb_cvar_defined): ditto.
Fri Mar 19 11:31:32 2004 NAKAMURA Usaku <[email protected]>
* lib/mkmf.rb ($beos, $solaris): add OS flags.
* lib/mkmf.rb (RUBY): / is not recognized as path separator on
nmake/bmake. [ruby-list:39388]
* lib/mkmf.rb (CLEANLIBS, CLEANOBJS): should remove *.exp with *.so.
Fri Mar 19 01:55:57 2004 Mauricio Fernandez <[email protected]>
* io.c (rb_io_sync): need not to check writable. [ruby-core:02674]
Thu Mar 18 19:47:44 2004 WATANABE Hirofumi <[email protected]>
* instruby.rb, rubytest.rb: do not depend on srcdir.
Thu Mar 18 18:50:06 2004 Nobuyoshi Nakada <[email protected]>
* mkconfig.rb: no longer embed srcdir and compile_dir into
rbconfig.rb.
* ext/extmk.rb, lib/mkmf.rb: obtain top_srcdir and topdir from library
paths.
Thu Mar 18 17:46:35 2004 Masatoshi SEKI <[email protected]>
* lib/drb/drb.rb: do not undef :to_a.
Thu Mar 18 16:22:38 2004 Yukihiro Matsumoto <[email protected]>
* eval.c (proc_eq): avoid false positive by using scope and
dyna_vars. no longer use frame.uniq.
* eval.c (proc_arity): arity is now defined as number of
parameters that would not be ignored. i.e. Proc.new{}.arity
returns zero. update test suites too.
Thu Mar 18 15:27:25 2004 Yukihiro Matsumoto <[email protected]>
* eval.c: remove specialized version of rb_Array(). use simple
one defined in object.c.
* object.c (Init_Object): remove Kernel#to_a.
* enum.c (enum_zip): use "to_a" instead of "to_ary".
Wed Mar 17 00:22:03 2004 Kazuo Saito <[email protected]>
* oniguruma.h: imported Oniguruma 2.2.5.
* regparse.c: ditto.
Tue Mar 16 11:14:17 Hirokazu Yamamoto <[email protected]>
* dir.c (fnmatch_helper): File.fnmatch('\.', '.') should return true.
(Rev1.112 lost compatiblity)
* dir.c (fnmatch_helper): File.fnmatch('\/', '/', File::FNM_PATHNAME)
should return true. (Rev1.112 lost compatiblity)
* dir.c (fnmatch): File.fnmatch('**/.boo', '.foo/.boo',
File::FNM_PATHNAME) should return false because of leading period.
Mon Mar 15 17:01:07 2004 Yukihiro Matsumoto <[email protected]>
* error.c (exc_initialize): calling 'to_str' each time just for
type checking is too heavy. [ruby-core:02661]
Mon Mar 15 10:14:51 2004 GOTOU Yuuzou <[email protected]>
* ext/openssl/lib/openssl/ssl.rb (OpenSSL::SSL::SocketForwarder):
add do_not_reverse_lookup.
Mon Mar 15 07:39:13 2004 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_yield_0): should not re-submit TAG_BREAK if this
yield is not break destination. [ruby-dev:23197]
Sun Mar 14 22:07:38 2004 Nobuyoshi Nakada <[email protected]>
* eval.c (rb_thread_raise): err at unstarted thread. (PR#1302)
Sat Mar 13 14:56:32 2004 Masatoshi SEKI <[email protected]>
* test/drb/ut_drb.rb: use 'druby://localhost:0'. [ruby-dev:23078]
* test/drb/ut_eval.rb: ditto.
* test/drb/ut_large.rb: ditto.
* test/drb/ut_safe1.rb: ditto.
* test/drb/ut_drb_drbssl.rb: use 'drbssl://localhost:0'.
Fri Mar 12 23:52:56 Hirokazu Yamamoto <[email protected]>
* dir.c (fnmatch): directory recursion '**/' can be used with
File::FNM_PATHNAME. [ruby-dev:22901]
* dir.c (fnmatch, fnmatch_helper): only '/' is accepted as path
separator even in DOSISH environment. [ruby-dev:22974]
[ruby-list:39337]
* dir.c (fnmatch_helper): faster '*' matching.
Fri Mar 12 20:19:16 2004 Nobuyoshi Nakada <[email protected]>
* configure.in (rb_cv_noreturn): default for platforms not support
prototypes.
* ruby.c (ruby_init_loadpath): buffer for path name should have
MAXPATHLEN.
* lib/mkmf.rb (configuration): include topdir and hdrdir in VPATH.
* lib/mkmf.rb (create_makefile): default dependency rule.
Fri Mar 12 07:35:36 2004 GOTOU Yuuzou <[email protected]>
* lib/webrick/config.rb (WEBrick::Config::General): add
:DoNotReverseLookup.
* lib/webrick/server.rb (WEBrick::GenericServer#accept): call
do_not_reverse_lookup for each socket if :DoNotReverseLookup
is set. [ruby-code:02357]
Wed Mar 10 22:26:25 2004 Minero Aoki <[email protected]>
* lib/fileutils.rb (remove_dir): should handle symlink correctly.
This patch is contributed by Christian Loew. [ruby-talk:94635]
Wed Mar 10 16:28:42 2004 Yukihiro Matsumoto <[email protected]>
* eval.c (return_jump): set return value to the return
destination. separated from localjump_destination().
* eval.c (break_jump): break innermost loop (or thread or proc).
* eval.c (rb_yield_0): set exit_value for block break.
Wed Mar 10 16:00:14 2004 Yukihiro Matsumoto <[email protected]>
* struct.c (rb_struct_s_def): Struct::new executes block with
generated struct class. [ruby-talk:02606]
Wed Mar 10 15:58:43 2004 Ryan Davis <[email protected]>
* eval.c (eval): Only print backtrace if generating the backtrace
doesn't generate an exception. [ruby-core:02621]
Wed Mar 10 10:15:16 2004 NAKAMURA Usaku <[email protected]>
* ruby.c (opt_W_getter): get rid of warning.
* bcc32/Makefile.sub, win32/Makefile.sub, wince/Makefile.sub:
fixed dependency.
Tue Mar 9 13:04:26 2004 Yukihiro Matsumoto <[email protected]>
* io.c (rb_io_ungetc): raise IOError instead of calling
rb_sys_fail(). [ruby-talk:23181]
Tue Mar 09 10:03:40 2004 NAKAMURA Usaku <[email protected]>
* bcc32/Makefile.sub, win32/Makefile.sub, wince/Makefile.sub:
replaced regex.c entry with Oniguruma files.
Tue Mar 9 01:09:46 2004 Kazuo Saito <[email protected]>
* Makefile.in: replaced regex.c entry with Oniguruma files.
Mon Mar 8 23:16:07 2004 Minero Aoki <[email protected]>
* lib/net/http.rb: HTTPHeader did not initialized correctly.
* lib/net/http.rb (connect): does same debug output.
Mon Mar 8 21:38:18 2004 Minero Aoki <[email protected]>
* lib/net/http.rb (add_header): remove warning. [ruby-dev:23170]
Mon Mar 8 21:09:39 Hirokazu Yamamoto <[email protected]>
* dir.c (range): Cancel change for incomplete '['. More discussion
is needed.
Mon Mar 8 19:35:13 2004 akira yamada <[email protected]>
* lib/uri/common.rb (URI::REGEXP::PATTERN::HOSTPORT): (?:#{PORT})
-> (?::#{PORT}). [ruby-dev:23170]
Mon Mar 8 15:03:24 Hirokazu Yamamoto <[email protected]>
* dir.c (range): treat incomplete '[' as ordinary character (like
has_magic does). fix buffer overrun at incomplete escape like '[\'.
Mon Mar 8 13:35:32 2004 WATANABE Hirofumi <[email protected]>
* regparse.c (parse_exp): need to separate initialization for bcc32.
[ruby-dev:23169]
* oniguruma.h (ONIG_EXTERN): check __GNUC__ instead of __CYGWIN__.
Mon Mar 8 01:05:55 2004 GOTOU Yuuzou <[email protected]>
* lib/webrick/config.rb (WEBrick::Config::HTTP): rename :RequestHander
to :RequestCallback and add new option :ServerAlias.
* lib/webrick/httpserver.rb (WEBrick::HTTPServer#run): use
:RequestCallback and warn if :RequestHandler is in server's option.
* lib/webrick/httpserver.rb (WEBrick::HTTPServer#run): should print
error message for WEBrick::HTTPSataus::Error.
* lib/webrick/httpserver.rb (WEBrick::HTTPServer#lookup_server):
lookup for hostname from :ServerAlias if the req.host is not match
to :ServerName.
* lib/webrick/httpservlet.rb (WEBrick::HTTPServlet::CGIHandler#do_GET):
use $?.exitstatus and refine log message.
Sun Mar 7 16:22:26 2004 WATANABE Hirofumi <[email protected]>
* Makefile.in (lex.c): use $? instead of $<.
* lib/pstore.rb (commit_new): use FileUtils.copy_stream for Cygwin.
[ruby-dev:23157]
Sun Mar 7 05:34:42 2004 Minero Aoki <[email protected]>
* lib/net/http.rb: HTTPHeader keeps its header fields as an array.
* lib/net/http.rb: new method HTTPHeader#add_header, get_fields.
* lib/net/http.rb: new method HTTPHeader#content_length=.
* lib/net/http.rb: new method HTTPHeader#content_type, main_type,
sub_type, type_params, content_type=, set_content_type.
* lib/net/http.rb (HTTPHeader#basic_encode): result of pack(m) may
contain multiple LFs.
Sun Mar 7 03:11:00 2004 Minero Aoki <[email protected]>
* lib/net/http.rb: new method Net::HTTPRequest#body(=).
* lib/net/http.rb: new method Net::HTTPRequest#body_stream(=).
Sun Mar 7 02:06:07 2004 Minero Aoki <[email protected]>
* lib/net/http.rb: spin off https code again.
* lib/net/https.rb: new file.
* ext/openssl/lib/net/https.rb: removed. moved to net/https with
slight modifications.
* ext/openssl/lib/net/protocol.rb: removed. merged with net/http.
* lib/net/protocol.rb: new class BufferedIO.
* lib/net/protocol.rb: InternetMessageIO < BufferedIO.
* lib/net/protocol.rb: BufferedIO.new takes an IO.
* lib/net/smtp.rb: follow InternetMessageIO's change.
* lib/net/pop.rb: ditto.
Sun Mar 7 00:55:03 2004 Minero Aoki <[email protected]>
* lib/net/protocol.rb: remove method: InternetMessageIO#address,
port, ip_address, read_timeout(=), socket.
* lib/net/protocol.rb: simplify code.
* lib/net/protocol.rb: apply latest coding style.
Sat Mar 6 15:15:05 2004 Nobuyoshi Nakada <[email protected]>
* ext/strscan/depend: depends on re.h and regex.h.
* ext/strscan/strscan.c: no version check needed.
* ext/strscan/strscan.c (strscan_init_copy): struct re_registers must
not be bitwise copied.
Sat Mar 6 11:14:33 2004 David Black <[email protected]>
* lib/scanf.rb: refixed the previous fix in IO#block_scanf
Sat Mar 6 10:49:40 2004 David Black <[email protected]>
* lib/scanf.rb: fixed a logic glitch in IO#block_scanf
Sat Mar 6 02:00:19 2004 Minero Aoki <[email protected]>
* lib/net/http.rb: net/https is merged.
* ext/openssl/lib/net/https.rb: ditto.
Fri Mar 6 00:39:21 2004 Kazuo Saito <[email protected]>
* oniggnu.h: imported from Oniguruma library.
* oniguruma.h: ditto.
* regcomp.c: ditto.
* regenc.c: ditto.
* regenc.h: ditto.
* regerror.c: ditto.
* regex.c: ditto.
* regexec.c: ditto.
* reggnu.c: ditto.
* regint.h: ditto.
* regparse.c: ditto.
* regparse.h: ditto.
* ascii.c: ditto.
* euc_jp.c: ditto.
* sjis.c: ditto.
* utf8.c: ditto.
* MANIFEST: added Oniguruma files listed above.
* LEGAL: added Oniguruma license.
* regex.h: now includes oniggnu.h.
* re.c: applied Oniguruma patch.
Fri Mar 5 23:13:08 2004 Minero Aoki <[email protected]>
* lib/net/http.rb: support WebDAV methods, PROPPATCH, LOCK,
UNLOCK, OPTIONS, PROPFIND, DELETE, MOVE, COPY, MKCOL.
This patch is contributed by Tatsuki Sugiura.
Fri Mar 5 20:58:37 2004 Minero Aoki <[email protected]>
* lib/net/http.rb: Net::HTTPResponse#response is obsolete.
[ruby-core:02592]
* lib/net/http.rb: Net::HTTPResponse#header is obsolete.
* lib/net/http.rb: Net::HTTPResponse#read_header is obsolete.
Fri Mar 5 20:10:57 2004 Minero Aoki <[email protected]>
* ext/strscan/strscan.c: new method StringScanner#initialize_copy
to allow #dup and #clone.
* test/strscan/test_strscan.rb: test StringScanner#dup.
Fri Mar 5 19:42:09 2004 Minero Aoki <[email protected]>
* lib/net/http.rb (HTTPResponse#to_ary): should return an object
which does not respond to #to_ary. It causes infinite loop in
puts. [ruby-core:02578]
Fri Mar 5 00:51:35 2004 Dave Thomas <[email protected]>
* lib/test/unit.rb: Move RDoc documentation so that you can
now say 'ri Test::Unit'
Thu Mar 4 22:31:40 2004 Nobuyoshi Nakada <[email protected]>
* Makefile.in: miniruby is not needed for cross compile.
* configure.in (PREP): miniruby for native compile.
Thu Mar 4 11:46:32 2004 Nobuyoshi Nakada <[email protected]>
* lib/drb/extservm.rb (DRb::ExtServManager#invoke_service_command):
detach server processes to get rid of zombies.
Thu Mar 4 10:41:25 2004 Yukihiro Matsumoto <[email protected]>
* ruby.h (T_MASK): save 1 bit in flags bits by shifting T_xxx
values.
Thu Mar 4 08:08:36 2004 Nobuyoshi Nakada <[email protected]>
* ext/syck/rubyext.c: get rid of warnings.
* lib/rss/taxonomy.rb: ditto.
* lib/rdoc/ri/ri_formatter.rb: ditto.
* test/ruby/test_assignment.rb: ditto.
Thu Mar 4 01:17:28 2004 Nobuyoshi Nakada <[email protected]>
* lib/rdoc/ri/ri_display.rb (DefaultDisplay::page): wait until the
pager terminates.
Wed Mar 3 13:10:56 2004 Yukihiro Matsumoto <[email protected]>
* eval.c (method_hash): new method. [ruby-talk:93968]
* eval.c (proc_eq): do not compare dyna_vars.
* eval.c (proc_hash): new method.
* eval.c (rb_yield_0): protect break/return from within orphan (or
lambda) Proc object.
Wed Mar 3 09:52:05 2004 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb ($topdir): use compile_dir only when not installed yet.
[ruby-talk:94098]
Wed Mar 3 01:18:52 2004 Kouhei Sutou <[email protected]>
* lib/rss/converter.rb: handled Uconv::Error.
* lib/rss/dublincore.rb: DublincoreModel -> DublinCoreModel
Wed Mar 3 00:59:30 2004 David Black <[email protected]>
* lib/scanf.rb: soak_up_spaces only ungetc's non-space last
character
* lib/scanf.rb: IO#block_scanf now returns partial last iteration
array if format string matches partly
Tue Mar 2 16:30:21 2004 Nobuyoshi Nakada <[email protected]>
* io.c (pipe_open): erred program name should be reported by
exceptions, instead of the first argument.
* process.c (rb_spawn): ditto.
* process.c (proc_spawn_v): use first argument as program name.
* win32/win32.c (rb_w32_aspawn): ditto.
* win32/win32.c (CreateChild): search executable file if no program
name given.
* lib/drb/extservm.rb (invoke_service_command): use Process.spawn.
[ruby-dev:23103]
* lib/rdoc/ri/ri_display.rb (setup_pager): use IO.popen.
[ruby-dev:23086], [ruby-dev:23103]
* lib/rdoc/diagram.rb (convert_to_png): ditto.
* lib/rdoc/generators/chm_generator.rb (compile_project): ditto.
Tue Mar 2 12:24:03 2004 NAKAMURA Usaku <[email protected]>
* win32/Makefile.sub, wince/Makefile.sub (config.h): shouldn't check
defined? NORETURN. [ruby-dev:23100]
Tue Mar 2 11:28:40 2004 Nobuyoshi Nakada <[email protected]>
* test/ruby/test_iterator.rb (test_ljump): cannot use
assert_nothing_raised due to passing block.
Tue Mar 2 06:23:14 2004 David Black <[email protected]>
* lib/scanf.rb: fixed Kernel#scanf to propagate code block
Mon Mar 1 23:25:40 2004 David Black <[email protected]>
* lib/scanf.rb: Partial fix so STDIN#scanf works with new
STDIN#pos behavior
Mon Mar 1 19:42:05 Hirokazu Yamamoto <[email protected]>
* bcc32/setup.mak: configure's default is "--enable-install-doc"
* win32/setup.mak: ditto.
Mon Mar 1 12:24:10 2004 Dave Thomas <[email protected]>
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_alias):
Allow aliases to have parentheses
Sun Feb 29 23:14:53 2004 Dave Thomas <[email protected]>
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_class):
Handle :nodoc: on singleton classes.
Sat Feb 28 21:50:20 Hirokazu Yamamoto <[email protected]>
* bcc32/Makefile.sub, bcc32/README.bcc32, bcc32/configure.bat,
bcc32/setup.mak: new configure scheme. use ``configure --prefix=dir''
instead of ``make DESTDIR=dir install''.
--with-static-linked-ext support on bccwin32. [ruby-dev:23034]
(by Nakada. Thanks.)
* bcc32/setup.mak: "configure --disable-install-doc" is now working.
* win32/setup.mak: ditto.
Sat Feb 28 15:09:49 Hirokazu Yamamoto <[email protected]>
* bcc32/configure.bat: append missing label ":exit".
* bcc32/configure.bat: fix typo.
Sat Feb 28 10:31:03 2004 Masatoshi SEKI <[email protected]>
* MANIFEST: add test_erb.rb
* lib/erb.rb, test/erb/test_erb.rb: don't forget filename,
if both filename and safe_level given. [ruby-dev:23050]
Sat Feb 28 01:08:40 2004 Yukihiro Matsumoto <[email protected]>
* parse.y (yylex): should not allow symbol for invalid global
variable (e.g. `:$-)`). [ruby-core:02518]
Fri Feb 27 20:37:09 2004 Yukihiro Matsumoto <[email protected]>
* eval.c (proc_invoke): no orphan block check is needed when pcall
is true.
* eval.c (localjump_destination): update localjump condition.
Fri Feb 27 02:10:49 2004 Yukihiro Matsumoto <[email protected]>