-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
15549 lines (9222 loc) · 492 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Wed May 18 17:38:51 2005 WATANABE Hirofumi <[email protected]>
* dir.c (glob_helper): check whether path is "" before calling
do_opendir. [ruby-dev:26183]
Wed May 18 13:40:48 2005 NAKAMURA Usaku <[email protected]>
* win32/win32.c (NtInitialize): fix typo.
Wed May 18 11:07:47 2005 Nobuyoshi Nakada <[email protected]>
* dir.c (glob_helper): get rid of using String. [ruby-dev:26180]
* eval.c (ruby_options), win32/win32.c (NtInitialize): move argument
intialization back. [ruby-dev:26180]
Tue May 17 11:49:18 2005 NAKAMURA Usaku <[email protected]>
* win32/win32.c (unixtime_to_filetime): use localtime() instead of
gmtime() when using FileLocalTimeToFileTime().
Mon May 16 22:42:52 2005 Nobuyoshi Nakada <[email protected]>
* win32/win32.h, {bcc32,win32,wince}/Makefile.sub: moved rb_[ugp]id_t
to get rid of redefinition warnings on mingw.
* class.c (rb_class_init_copy): singleton class is disallowed to copy,
from its definition. fixed: [ruby-talk:142749]
* parse.y (pragma_encoding): add prototype to suppress false warning
by VC.
* process.c (proc_spawn_v): use rb_w32_aspawn on Win32.
Mon May 16 03:29:01 2005 Hirokazu Yamamoto <[email protected]>
* win32/win32.{h,c}: define rb_{p,g,u}id_t.
Mon May 16 00:21:02 2005 Tanaka Akira <[email protected]>
* lib/pathname.rb (Pathname#unlink): use SystemCallError instead of
Errno::EISDIR because EISDIR is not portable.
[ruby-core:5001]
Sun May 15 22:28:10 2005 Masatoshi SEKI <[email protected]>
* lib/drb/drb.rb (DRbObject#method_missing): use raise(exception).
[ruby-dev:26164]
Sun May 15 18:56:35 2005 Nobuyoshi Nakada <[email protected]>
* configure.in, ruby.h: define rb_[pgu]id_t macros instead of typedefs
to get rid of types which might not be defined yet. [ruby-dev:26165]
Sun May 15 14:35:46 2005 Tanaka Akira <[email protected]>
* lib/pathname.rb (Pathname#unlink): unlink a symlink to a directory
was failed. [ruby-core:4992]
Sun May 15 09:57:30 2005 Nobuyoshi Nakada <[email protected]>
* win32/win32.c (unixtime_to_filetime): deal with DST.
[ruby-talk:141817]
Sat May 14 23:59:11 2005 Nobuyoshi Nakada <[email protected]>
* error.c (exc_exception, {exit,name_err,syserr}_initialize): call
Execption#initialize. fixed: [ruby-talk:142593]
Sat May 14 23:56:41 2005 Erik Huelsmann <[email protected]>
* configure.in: Check for the availability of pid_t, gid_t and uid_t and
remove AC_TYPE_UID_T. fixed: [ruby-core:04745]
* defines.h: Remove pid_t typedef.
* ruby.h: Define rb_pid_t, rb_gid_t and rb_uid_t in accordance with
the available system types.
* process.c: Change instances of pid_t and gid_t to their rb_*
counterparts.
* ext/pty/pty.c: Change pid_t to rb_pid_t.
* vms/config.h: Define HAVE_{P,G,U}ID_T to 1.
* win32/Makefile.sub: Remove #define for {g,u}id_t.
* win32/win32.c: Change pid_t to rb_pid_t.
* wince/Makefile.sub: Remove #define for {g,u}id_t.
* wince/sys/types.h: Remove definitions of {p,g,u}id_t.
Sat May 14 11:47:57 2005 Nobuyoshi Nakada <[email protected]>
* intern.h (ruby_pragma): prototype. [ruby-core:04881]
* parse.y (parser_pragma): parse Emacsen hack.
* parse.y (parser_prepare): deal with specific syntax at the top.
* ruby.c (load_file): read the first line iff it started with shebang.
Fri May 13 23:44:22 2005 Nobuyoshi Nakada <[email protected]>
* ext/extmk.rb: keep srcdir unexpanded.
* lib/mkmf.rb (create_makefile): quote topdir and hdrdir if necessary.
fixed: [ruby-core:04932]
* lib/mkmf.rb (configuration), {bcc32,win32,wince}/Makefile.sub: make
also INSTALL_PROG and INSTALL_DATA system dependent.
fixed: [ruby-core:04931]
Fri May 13 23:32:55 2005 Nobuyoshi Nakada <[email protected]>
* eval.c (unknown_node): add volatile directive to prototype.
Fri May 13 17:50:49 2005 Hirokazu Yamamoto <[email protected]>
* variable.c (generic_ivar_get): rb_attr_get should not warn.
[ruby-dev:26010]
Thu May 12 17:41:00 2005 NARUSE, Yui <[email protected]>
* ext/nkf/nkf-utf8/nkf.c: follow nkf 2.0.5
Thu May 12 16:50:40 2005 Hirokazu Yamamoto <[email protected]>
* lib/rdoc/parsers/parse_c.rb: more readability for mixing
progress "c..." and warning message.
Thu May 12 15:50:56 2005 Tilman Sauerbeck <[email protected]>
* lib/rdoc/parsers/parse_c.rb: show parsing progress for C files.
[ruby-core:4341]
Thu May 12 09:53:57 2005 Nobuyoshi Nakada <[email protected]>
* version.c (ruby_show_version): flush for non-tty stdout.
Thu May 12 01:23:55 2005 Nobuyoshi Nakada <[email protected]>
* eval.c (unknown_node): ignore broken NODE to get rid of accessing
possibly inaccessible address. fixed: [ruby-dev:26122]
should emit more useful information like [ruby-dev:26126], though.
Wed May 11 15:58:39 2005 Yukihiro Matsumoto <[email protected]>
* eval.c (break_jump): break should not cross functions.
[ruby-list:40818]
Wed May 11 10:41:54 2005 Hirokazu Yamamoto <[email protected]>
* lib/tempfile.rb (Tempfile#unlink): fixed typo.
Wed May 11 01:03:36 2005 Nobuyoshi Nakada <[email protected]>
* eval.c (TMP_ALLOC): use macro NEW_NODE() to get rid of warnings on
platforms which have no alloca(). fixed: [ruby-talk:141301]
Sun May 8 23:17:47 2005 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk/timer.rb: fix typo.
Sun May 8 21:00:50 2005 Hirokazu Yamamoto <[email protected]>
* hash.c (Init_Hash): remove custom "hash" and "eql?".
(ported from 1.8) [ruby-dev:26132]
Sun May 8 16:50:25 2005 Hirokazu Yamamoto <[email protected]>
* lib/profiler.rb: fixed "undefined method `[]' for nil:NilClass"
[ruby-core:4775] [ruby-talk:140401] [ruby-dev:26118]
Sat May 7 22:58:00 2005 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb (have_var): no libs argument is given.
Fri May 6 08:08:37 2005 Nobuyoshi Nakada <[email protected]>
* hash.c:rb_hash_hash_i() should be static. [ruby-core:04815]
* re.c should include regint.h for declarations of oniguruma
functions. [ruby-core:04815]
Sun May 1 09:15:17 2005 Nobuyoshi Nakada <[email protected]>
* ruby.c (process_sflag): replace '-' in variable names with '_'.
[ruby-dev:26107]
* eval.c (rb_eval), parse.y (arg): reduce fixnum range literal at
parser. fixed: [ruby-dev:26113]
Sat Apr 30 11:59:25 2005 Nobuyoshi Nakada <[email protected]>
* configure.in (RUBY_FUNC_ATTRIBUTE): check for function attribute.
[ruby-dev:26109]
* eval.c, gc.c: moved noinline to configure.in.
* rubyio.h (DEPRECATED): moved to configure.in.
* ruby.h (DEPRECATED, NOINLINE): default definition.
* win{32,ce}/Makefile.sub (config.h): deprecated and noinline for
__declspec() are available for VC++7 or later.
Sat Apr 30 06:57:39 2005 GOTOU Yuuzou <[email protected]>
* lib/webrick/cgi.rb: new methods WEBrick::CGI#[], WEBrick::CGI#logger
and WEBrick::CGI#config. these are necessary to use an instance of
WEBrick::CGI as the first argument of HTTPServlet#get_instance.
(suggested by Tatsuki Sugiura)
* lib/webrick/cgi.rb
(WEBrick::CGI#initalize): set a dummy to @config[:ServerSoftware]
if SERVER_SOFTWARE environment variable is not given.
(WEBrick::CGI#start): req.path_info must be a String.
(WEBrick::CGI::Socket#request_line): treat REQUEST_METHOD, PATH_INFO
and SCRIPT_NAME to run in console.
* lib/webrick/httputils.rb (WEBrick::HTTPUtils.escape_path): should
not use String#split("/"). it removes trailing empty path component.
Thu Apr 28 08:21:51 2005 Nobuyoshi Nakada <[email protected]>
* ruby.c (set_arg0): use also environment variable space for setting
$0. [ruby-core:04774]
Wed Apr 27 23:42:22 2005 Nobuyoshi Nakada <[email protected]>
* win32/Makefile.sub (OPTFLAGS): default global optimization to
disabled only for VC++6.
Tue Apr 26 22:58:00 2005 Hidetoshi NAGAI <[email protected]>
* ext/tk/tcltklib.c (ip_invoke_core): call Tcl's "::unknown"
command when can't get information of target command.
Mon Apr 25 13:54:55 2005 speakillof <[email protected]>
* lib/rexml/encodings/SHIFT-JIS.rb: encoding and decoding were
swapped. [ruby-core:4772]
Mon Apr 25 01:18:43 2005 Tanaka Akira <[email protected]>
* oniguruma.h (OnigWarnFunc): add a variadic argument.
[ruby-core:4751]
Sat Apr 23 19:49:21 2005 Hirokazu Yamamoto <[email protected]>
* ext/tk/tcltklib.c (ip_RubyExitCommand): exit with status code
via TclTkIp#_eval didn't work. [ruby-talk:139390]
Sat Apr 23 11:45:29 2005 Nobuyoshi Nakada <[email protected]>
* eval.c (rb_provided): should check also path name to be loaded.
fixed: [ruby-dev:26093]
Fri Apr 22 16:55:35 2005 Hirokazu Yamamoto <[email protected]>
* ext/tk/tcltklib.c (ip_set_exc_message): fixed memory leak.
* ext/tk/tcltklib.c: eTkCallbackReturn was not initialized.
Thu Apr 21 06:45:28 2005 Nobuyoshi Nakada <[email protected]>
* ruby.c (ruby_incpush_expand, proc_options): expand relative path
given with -I option. [ruby-dev:26090]
* configure.in, lib/mkmf.rb, {bcc32,win32,wince}/Makefile.sub: improve
C++ support. [ruby-dev:26089]
Thu Apr 21 01:53:09 2005 Minero Aoki <[email protected]>
* lib/net/http.rb: add rdoc.
Thu Apr 21 00:07:50 2005 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb (create_makefile): support platforms have file separator
other than /.
* {bcc32,win32,wince}/Makefile.sub (BUILD_FILE_SEPARATOR): separator
of building platform.
* {bcc32,win32,wince}/Makefile.sub (CP, INSTALL): use COPY command.
Wed Apr 20 23:22:39 2005 Nobuyoshi Nakada <[email protected]>
* Makefile.in, common.mk: miniruby depends on MINIOBJS.
* dmydln.c (dln_load): dummy function to raise LoadError.
* cygwin/GNUmakefile.in, {bcc32,win32,wince}/Makefile.sub: miniruby
can't load extensions on Windows.
Wed Apr 20 23:01:35 2005 Nobuyoshi Nakada <[email protected]>
* win32/ifchange.bat: delete testing files.
Wed Apr 20 22:54:54 2005 Minero Aoki <[email protected]>
* lib/net/http.rb: new method Net::HTTP.post_form.
* lib/net/http.rb: new method Net::HTTPHeader#set_form_data and
its alias #form_data=.
* lib/net/http.rb: Net::HTTPHeader#add_header -> add_field
(adjustted to Ruby 1.8).
Wed Apr 20 10:53:30 2005 WATANABE Hirofumi <[email protected]>
* lib/rdoc/parsers/parse_rb.rb (lex_init): use IRB module.
[ruby-core:04737]
Wed Apr 20 07:27:18 2005 Nobuyoshi Nakada <[email protected]>
* {bcc32,win32,wince}/configure.bat, {bcc32,win32,wince}/setup.mak:
add extout option.
* bcc32/setup.mak: make configuration variables overridable.
Tue Apr 19 23:37:09 2005 WATANABE Hirofumi <[email protected]>
* lib/ftools.rb (File.safe_unlink): do not modify a symlinked file.
Tue Apr 19 23:02:40 2005 Nobuyoshi Nakada <[email protected]>
* eval.c (search_required): deal with features with path too.
* intern.h (rb_file_expand_path): prototype. fixed: [ruby-dev:26082]
Tue Apr 19 08:38:07 2005 Nobuyoshi Nakada <[email protected]>
* eval.c (search_required, rb_require_safe): expand path in
rb_features. [ruby-dev:26079]
* file.c (rb_find_file_ext): return absolute path.
* ext/extmk.rb: expand path for ext/**/extconf.rb.
* eval.c (search_required): handle static linked extensions.
Mon Apr 18 15:37:35 2005 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_attr): attribute name check added.
* numeric.c (flo_plus): small typo fix.
Mon Apr 18 11:25:14 2005 Hirokazu Yamamoto <[email protected]>
* ext/zlib/zlib.c (zstream_run): fixed SEGV. [ruby-core:4712]
Sun Apr 17 23:57:49 2005 Nobuyoshi Nakada <[email protected]>
* ext/extmk.rb (extmake, parse_args): do not expand destdir.
* ext/extmk.rb (relative_from): treat mere drive letter as an absolute
path.
Sat Apr 16 17:01:16 2005 Kouhei Sutou <[email protected]>
* sample/rss/tdiary_plugin/rss-recent.rb (rss_recent_cache_rss):
use the first date information of items as site date information
if channel doesn't have date information.
Sat Apr 16 15:27:03 2005 Nobuyoshi Nakada <[email protected]>
* configure.in (RUBY_PROG_INSTALL): not add -p option to INSTALL.
files need timestamps to be kept are only ar-archive on a few
platforms, and be installed by instruby.rb but not INSTALL.
fixed: [ruby-core:04721]
* mkconfig.rb: purge autoconf value variables.
Sat Apr 16 10:33:48 2005 Hirokazu Yamamoto <[email protected]>
* bcc32/Makefile.sub: quick hack... prepend DESTDIR.
still have restriction on DESTDIR ("", "/", "e:")
Sat Apr 16 03:59:42 2005 GOTOU Yuuzou <[email protected]>
* ext/openssl/extconf.rb: check for OPENSSL_cleanse.
* ext/openssl/openssl_missing.h: ditto.
Fri Apr 15 22:40:19 2005 Masaki Suketa <[email protected]>
* ext/win32ole/tests/testWIN32OLE.rb: add test for WIN32OLE.codepage=
* ext/win32ole/tests/testOLETYPELIB.rb: correct expected message.
Fri Apr 15 22:04:07 2005 Masaki Suketa <[email protected]>
* ext/win32ole/win32ole.c(ole_invoke): retry after converting Qnil
to VT_EMPTY.
Thu Apr 14 19:05:06 2005 Minero Aoki <[email protected]>
* parse.y [ripper] (regexp): dispatch regexp option.
[ruby-Bugs:1688]
* ext/ripper/lib/core.rb: regenerated (interface changed).
Thu Apr 14 18:59:43 2005 Minero Aoki <[email protected]>
* lib/fileutils.rb (remove_file): ignore exceptions caused by
chmod.
* lib/fileutils.rb (remove_dir): try to get rights to rmdir.
[ruby-Bugs:1502]
Thu Apr 14 18:51:02 2005 Keiju Ishitsuka <[email protected]>
* lib/irb/ruby-lex.rb, lib/irb/slex.rb: bug fix of [ruby-Bugs-1745]
* lib/irb/ext/loader.rb, lib/irb/ext/save-history.rb:
fix location of @RCS_ID
* lib/irb/cmd/help.rb: a lost of release IRB 0.9.5.
Thu Apr 14 15:10:30 2005 Keiju Ishitsuka <[email protected]>
* lib/irb/notifier.rb, lib/irb/output-method.rb, lib/irb/ext/history.rb
fixed warning of 'ruby -w'
Thu Apr 14 05:35:45 2005 Keiju Ishitsuka <[email protected]>
* doc/irb/irb.rd.ja: a lost of release IRB 0.9.5.
* lib/irb/slex.rb: bug fix by [ruby-core:04707].
Thu Apr 14 00:20:31 2005 Keiju Ishitsuka <[email protected]>
* bin/irb lib/irb.rb lib/irb/...: IRB 0.9.5.
Wed Apr 13 23:40:21 2005 Kouhei Sutou <[email protected]>
* lib/rss/rss.rb (RSS::VERSION): 0.1.3 -> 0.1.4.
* lib/rss/rss.rb (RSS::Element#converter): fixed converter
transmission bug.
Wed Apr 13 22:12:16 2005 Nobuyoshi Nakada <[email protected]>
* lib/optparse.rb (OptionParser#order!): call handlers iff matches
non-switch.
Wed Apr 13 21:20:35 2005 WATANABE Hirofumi <[email protected]>
* configure.in (mingw32): extract msvcr*.dll from objdump result.
Wed Apr 13 19:25:31 2005 Nobuyoshi Nakada <[email protected]>
* configure.in (mingw32): use actual runtime DLL name as ruby DLL
name and default load path.
* win32/Makefile.sub, win32/setup.mak: ditto.
Tue Apr 12 19:30:36 2005 Nobuyoshi Nakada <[email protected]>
* lib/optparse.rb (OptionParser#make_switch, OptionParser#order!):
added non-option and end-of-args handler. [ruby-talk:136878]
(EXPERIMENTAL
Tue Apr 12 15:33:09 2005 Hidetoshi NAGAI <[email protected]>
* ext/tk/tcltklib.c (ip_finalize): better modification than the
previous commit [ruby-dev:26029].
Tue Apr 12 12:38:06 2005 Hidetoshi NAGAI <[email protected]>
* ext/tk/tcltklib.c (ip_finalize): fix SEGV when Tcl_GlobalEval()
modifies the argument string to eval.
Tue Apr 12 02:21:55 2005 Hidetoshi NAGAI <[email protected]>
* ext/tk/tcltklib.c (ip_finalize): add existence check of
Tcl commands before calling Tcl_GlobalEval().
Mon Apr 11 23:36:04 2005 Masatoshi SEKI <[email protected]>
* lib/drb/drb.rb: [druby-ja:123] fix: When reference of my object is
loaded, the object is tainted.
* test/drb/test_drb.rb: ditto.
Mon Apr 11 22:18:23 2005 WATANABE Hirofumi <[email protected]>
* dir.c, file.c (lstat): avoid warnings for mingw.
Mon Apr 11 20:11:06 2005 Hidetoshi NAGAI <[email protected]>
* ext/tk/tcltklib.c (ip_finalize): adhoc patch to avoid SEGV when exit
on Tcl/Tk8.3.x.
Mon Apr 11 15:24:20 2005 NAKAMURA Usaku <[email protected]>
* lib/mkmf.rb (configuration): shouldn't output hdrdir twice.
Sat Apr 9 18:20:31 2005 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk/image.rb: support to create TkImage object without
creating a new image object on Tk.
* ext/tk/lib/tk/menu.rb: use TkCommandNames on create_self()
* ext/tk/lib/tk/root.rb: TkRoot.to_eval() returns '.'.
* ext/tk/lib/tk/text.rb: add methods to create a TkText::IndexString
from (x, y) coords.
* ext/tk/lib/tkextlib/tile/: add demo and update support status.
Sat Apr 9 14:42:29 2005 Kouhei Sutou <[email protected]>
* sample/rss/tdiary_plugin/rss-recent.rb: supported configuration
via Web browser.
Fri Apr 8 20:17:48 2005 Nobuyoshi Nakada <[email protected]>
* ext/extmk.rb (extmake): hdrdir needs to be defined also in
Config::CONFIG.
* lib/mkmf.rb (configuration, create_makefile): get rid of recursive
macro reference.
Fri Apr 8 01:55:20 2005 Hidetoshi NAGAI <[email protected]>
* ext/tk/sample/demos-{en,jp}/goldberg.rb: reduced window size.
[ruby-dev:25992]
Thu Apr 7 23:58:40 2005 Nobuyoshi Nakada <[email protected]>
* ext/extmk.rb (extmake): keep directory names in Makefile as macros.
* lib/mkmf.rb (configuration, create_makefile): ditto.
* lib/mkmf.rb (CXX_EXT): separate C++ extensions.
Thu Apr 7 17:24:17 2005 Shugo Maeda <[email protected]>
* eval.c (rb_call0): "return" event hook should be always executed
if event_hooks is set.
Thu Apr 7 14:33:09 2005 Kouhei Sutou <[email protected]>
* test/rss/test_maker_dc.rb (test_date): added a test for #date=
and #dc_date=.
Thu Apr 7 11:49:53 2005 Kouhei Sutou <[email protected]>
* lib/rss/maker/dublincore.rb: _really_ supported multiple Dublin
Core items.
* test/rss/rss-assertions.rb (assert_multiple_dublin_core): added
an assertion for testing multiple Dublin Core items.
* test/rss/test_maker_dc.rb (test_rss10_multiple): added a test
for making multiple Dublin Core items.
Wed Apr 6 16:06:30 2005 Hirokazu Yamamoto <[email protected]>
* test/ruby/test_env.rb (test_key): should test ENV.key instead of
ENV.index. [ruby-dev:25994]
Tue Apr 5 16:01:12 2005 Kouhei Sutou <[email protected]>
* lib/rss/*: refactored.
- gave a name to 'x'.
- undef_method -> remove_method for avoiding a warning in ruby 1.6.
Tue Apr 5 15:45:33 2005 Kouhei Sutou <[email protected]>
* sample/rss/tdiary_plugin/rss-recent.rb:
new option: @options['rss-recent.use-image-link']:
use image as link instread of text if available.
* sample/rss/tdiary_plugin/rss-recent.rb (RSS_RECENT_VERSION):
0.0.5 -> 0.0.6.
Tue Apr 5 15:15:26 2005 Kouhei Sutou <[email protected]>
* lib/rss/dublincore.rb: supported multiple Dublin Core items.
* lib/rss/parser.rb: added class name registry for complex model
elements. (ex. have childlen elements, have some attributes and
a child element and so on.)
* lib/rss/maker/base.rb: added default current_element implementation.
* lib/rss/maker/dublincore.rb: supported multiple Dublin Core
items.
* lib/rss/maker/image.rb: supproted new Dublin Core API.
* lib/rss/trackback.rb (RSS::TrackBackUtils.new_with_value_if_need):
moved to RSS::Utils.
* lib/rss/utils.rb (RSS::Utils.new_with_value_if_need):
moved from RSS::TrackBackUtils.
* lib/rss/maker/image.rb: fixed invalid argument of
add_need_initialize_variable bug.
* lib/rss/maker/trackback.rb: ditto.
* lib/rss/rss.rb (Hash#merge): added for ruby 1.6.
* lib/rss/rss.rb (RSS::BaseModel.date_writer): changed to accept nil
for date value.
* test/test_dublincore.rb: added tests for plural accessor and
multiple Dublin Core items.
* test/test_setup_maker_1.0.rb: fixed swapped actual and expected
values.
Mon Apr 4 23:17:52 2005 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk.rb (TkComm#array2tk_list): accept enc-mode argument to
decide whether convert encoding of each element or not.
* ext/tk/lib/tk/variable.rb (TkVariable#value=): fail to convert the
encoding of array elements when assign an array to an TkVariable
object.
Mon Apr 4 10:26:48 2005 Hirokazu Yamamoto <[email protected]>
* ext/tk/lib/tk/dialog.rb: fixed typo.
Sat Apr 2 23:38:54 2005 Nobuyoshi Nakada <[email protected]>
* configure.in (CP, INSTALL): get rid of less portable options.
* lib/mkmf.rb (configuration, create_makefile): correct configuration
variable.
* wince/configure.bat, wince/setup.mak: add prefix, extstatic and
rdoc options.
* lib/mkmf.rb (create_makefile): ensure library directories get made
before copying libraries there.
Sat Apr 2 16:59:46 2005 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk.rb: forgot to update RELEASE_DATE
* ext/tk/lib/tk/variable.rb: fix namespace trouble when autoloading
* ext/tk/lib/tk/palette.rb: define Tcl variable 'tkPalette' as global
* ext/tk/lib/tk/dialog.rb: use array2tk_list method when calling
Tk.ip_eval.
* ext/tk/lib/tk/autoload.rb: add autoload entry 'TkDialogObj' and
'TkWarningObj'
Sat Apr 2 13:23:17 2005 Hirokazu Yamamoto <[email protected]>
* hash.c (env_key): ENV.index is deprecated as well as Hash#index.
use ENV.key instead. [ruby-dev:25974]
Sat Apr 2 02:19:11 2005 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk.rb (TkWindow.initialize): accept 'without_creating'
option without 'widgetname' option to allow creating a widget object
which is used as an argument of Tcl/Tk's widget allocation commands.
* ext/tk/lib/tk/image.rb (TkImage.initialize): accept 'imagename'
option to create a image object by the given name.
Thu Mar 31 22:23:51 2005 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb (SRC_EXT): exclude just case different suffixes on case
insensitive file system platforms.
* README.EXT, README.EXT.ja (Appendix C): utility functions.
Thu Mar 31 14:08:43 2005 GOTOU Yuuzou <[email protected]>
* ext/openssl/ossl_engine.c (ossl_engine_s_load): should return
value. [ruby-dev:25971]
Thu Mar 31 11:07:50 2005 Kouhei Sutou <[email protected]>
* lib/rss/parser.rb: @@setter -> @@setters.
* lib/rss/parser.rb
(RSS::BaseListener.register_uri)
(RSS::BaseListener.uri_registered?)
(RSS::BaseListener.install_get_text_element):
swapped the first argument and the second argument.
* lib/rss/taxonomy.rb: swapped the first argument and the second
argument for RSS::BaseListener.install_get_text_element.
* lib/rss/image.rb: ditto.
* lib/rss/syndication.rb: ditto.
* lib/rss/dublincore.rb: ditto.
* lib/rss/parser.rb: ditto.
* lib/rss/1.0.rb: ditto.
* lib/rss/2.0.rb: ditto.
* lib/rss/0.9.rb: ditto.
* lib/rss/content.rb: ditto.
Thu Mar 31 11:00:36 2005 Kouhei Sutou <[email protected]>
* lib/rss/parser.rb
(RSS::BaseListener.install_setter)
(RSS::BaseListener.register_uri): changed fallback way.
Thu Mar 31 08:25:40 2005 Nobuyoshi Nakada <[email protected]>
* common.mk (RUBYOPT): clear for the environment RubyGems installed.
* common.mk (clean-local): keep $(PREP) files till distclean.
* common.mk (check): do all tests.
Thu Mar 31 06:00:20 2005 GOTOU Yuuzou <[email protected]>
* ext/openssl/ossl_engine.c (ossl_engine_s_load): should not raise
error even if the specified engine could not be loaded. (Dynamic
engines don't have fixed name to load.)
Wed Mar 30 17:41:48 2005 Hidetoshi NAGAI <[email protected]>
* ext/tk/tcltklib.c: add TclTkIp#_create_console() method to create
a Tcl/Tk's console window.
* ext/tk/lib/multi-tk.rb: support TclTkIp#_create_console() method.
* ext/tk/lib/remote-tk.rb: ditto.
* ext/tk/lib/tk/console.rb: ditto.
* ext/tk/lib/tk.rb: update RELEASE_DATE
* ext/tk/sample/demo-*/check2.rb: use 'return' in the Proc object.
* ext/tk/sample/tkextlib/**: ditto.
Tue Mar 29 22:20:49 2005 Masatoshi SEKI <[email protected]>
* test/rinda/test_rinda.rb: use DRbObject.new_with instead of reinit.
[ruby-dev:25961]
Tue Mar 29 00:04:57 2005 Masatoshi SEKI <[email protected]>
* lib/drb/drb.rb: move method DRbObject#reinit to DRbObject.new_with.
extract method DRbObject.prepare_backtrace. add DRb.regist_server,
remove_server, fetch_server. change server in thread variable if
in-proc server. [druby-ja:113]
* lib/drb/gw.rb: ditto.
Mon Mar 28 20:53:44 2005 Nobuyoshi Nakada <[email protected]>
* ext/extmk.rb (extract_makefile): nothing to be removed when no file
was deleted.
* ext/extmk.rb (extmake): restore srcdir.
Mon Mar 28 08:39:49 2005 Nobuyoshi Nakada <[email protected]>
* ext/iconv/iconv.c (iconv_create): Iconv::Failure requires 3
arguments. (pointed out by NaHi)
Sun Mar 27 00:56:58 2005 Minero Aoki <[email protected]>
* lib/fileutils.rb (remove_file): ignore Errno::E* if force option
is set. [ruby-dev:25944]
Sat Mar 26 22:51:33 2005 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk.rb (_callback_entry_class?): add for checking whether
a class is available for a callback entry.
* ext/tk/lib/tk.rb (after_cancel): add Tk.after_cancel(afterID) method.
* ext/tk/lib/tk.rb (array2tk_list): change from private module method
of TkComm to public module method.
* ext/tk/lib/tk.rb (cget): add check that slot argument is not
empty string.
* ext/tk/lib/tk.rb (configinfo): ditto.
* ext/tk/lib/tk/itemconfig.rb (itemcget): add check that slot argument
is not empty string.
* ext/tk/lib/tk/itemconfig.rb (itemconfiginfo): ditto.
* ext/tk/lib/tk/entry.rb: add TkEntry#icursor and icursor= (alias of
cursor and cursor= method).
* ext/tk/lib/tk/font.rb: improve font treatment when the font name is
empty string.
* ext/tk/lib/tk/variable.rb: add :variable, :window and :procedure
type.
* ext/tk/lib/tk/variable.rb: improve treatment of array-type
tkvariable.
* ext/tk/lib/tkextlib/blt.rb: add commands for zooming.
* ext/tk/lib/tkextlib/blt/*: bug fix.
* ext/tk/lib/tkextlib/treectrl/tktreectrl.rb: bug fix and add methods
to call TreeCtrl commands for bindings.
* ext/tk/sample/tkextlib/blt/*: new sample scripts.
* ext/tk/sample/tkextlib/treectrl/*: ditto.
Fri Mar 25 10:53:16 2005 WATANABE Hirofumi <[email protected]>
* configure.in (WIN32_LEAN_AND_MEAN): removed because a lot of
troubles. [ruby-list:40721]
Thu Mar 24 23:10:44 2005 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb (macro_defined?): try to compile for an old compiler
which doesn't bail out at #error directive. [ruby-dev:25818]
* lib/mkmf.rb (check_sizeof): refine logging messages.
Wed Mar 23 19:08:10 2005 GOTOU Yuuzou <[email protected]>
* lib/webrick/utils.rb (WEBrick::Utils.create_listeners):
- should raise ArgumentError if no port is specified.
- even if the specified port is 0, all TCPServers should be
initialized with the port given to the first one.
* lib/webrick/server.rb (WEBrick::GenericServer#initialize): if :Port
parameter is 0, it should be updated with the port number which
ectually listened.
Wed Mar 23 16:12:40 2005 Shugo Maeda <[email protected]>
* parse.y (primary): fix lineno of rescue and ensure.
Wed Mar 23 00:39:05 2005 Shugo Maeda <[email protected]>
* test/ruby/test_settracefunc.rb (test_event): added tests for
"class" and "end" and "raise".
Sun Mar 20 22:51:19 2005 Nobuyoshi Nakada <[email protected]>
* lib/mkmf.rb (mkmf_failed): check if Makefile is created without
create_makefile.
Sat Mar 19 23:48:10 2005 Nobuyoshi Nakada <[email protected]>
* misc/ruby-mode.el (ruby-expr-beg): returned true always.
fixed: [ruby-list:40683]
Sat Mar 19 00:41:02 2005 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk/font.rb: add some TkFont class methods to get font
information without creating a TkFont object.
* ext/tk/lib/tkextlib/treectrl/tktreectrl.rb: bug fix and define some
classes for components of Tk::TreeCtrl
Thu Mar 17 17:42:13 2005 Yukihiro Matsumoto <[email protected]>
* struct.c (make_struct): allow non local-id field
names. [ruby-core:04575]
* struct.c (inspect_struct): ditto.
Wed Mar 16 23:39:13 2005 Shugo Maeda <[email protected]>
* test/ruby/test_settracefunc.rb: added test for c-return.
Wed Mar 16 22:57:43 2005 Shugo Maeda <[email protected]>
* eval.c (rb_call0): call_cfunc() should be protected.
* eval.c (rb_add_event_hook): use K&R style.
* eval.c (rb_remove_event_hook): ditto.
Wed Mar 16 22:03:15 2005 Shugo Maeda <[email protected]>
* eval.c (rb_add_event_hook): new function to add a hook function for
interpreter events.
Wed Mar 16 18:08:32 2005 Yukihiro Matsumoto <[email protected]>
* eval.c (rb_call0): reorganize "return" event post.
* eval.c (return_jump): no need to post "return" event here.
Tue Mar 15 23:49:19 2005 Nobuyoshi Nakada <[email protected]>
* ext/iconv/iconv.c (Init_iconv): InvalidEncoding also should include
Iconv::Failure.
Tue Mar 15 23:12:36 2005 Nobuyoshi Nakada <[email protected]>
* eval.c (recursive_check, recursive_push): more restrictive check.
fixed: [ruby-dev:25916]
Tue Mar 15 16:38:31 2005 Hidetoshi NAGAI <[email protected]>
* ext/tk/tkutil/tkutil.c (ary2list): give wrong arguments to hash2kv()
Mon Mar 14 19:39:33 2005 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk/timer.rb (TkTimer): forgot to clear @return_value
when restarting
* ext/tk/lib/tk/sample/cd_timer.rb: new sample of TkRTTimer
Mon Mar 14 12:21:03 2005 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk/timer.rb (TkRTTimer): forgot to reset the callback
time. So, 'continue' do all callbacks between 'stop' and 'continue'.
Mon Mar 14 08:14:56 2005 Yukihiro Matsumoto <[email protected]>
* object.c (str_to_id): raise ArgumentError for NUL containing
strings.
Mon Mar 14 00:13:49 2005 Hidetoshi NAGAI <[email protected]>
* ext/tk/lib/tk/timer.rb (TkRTTimer): correct calculation of offset
value. get a little better accuracy.
* ext/tk/sample/demos-en/widget: use a binding with no local variables
when eval a sample script.
* ext/tk/sample/demos-en/bind.rb: ditto.
* ext/tk/sample/demos-en/tcolor: ditto.
* ext/tk/sample/demos-jp/widget: ditto.
* ext/tk/sample/demos-jp/bind.rb: ditto.
* ext/tk/sample/demos-jp/tcolor: ditto.
Sun Mar 13 22:19:17 2005 Nobuyoshi Nakada <[email protected]>
* eval.c (recursive_pop): raise TypeError instead of fatal error.
fixed: [ruby-dev:25843]
Sun Mar 13 10:09:17 2005 Masatoshi SEKI <[email protected]>
* test/rinda/test_rinda.rb: remove test_gc. [ruby-dev:25871]
Sun Mar 13 02:32:54 2005 GOTOU Yuuzou <[email protected]>
* ext/openssl/ossl_ssl.c (ossl_tmp_dh_callback): should get DH
parameter from the current SSL object.
Sun Mar 13 02:09:03 2005 GOTOU Yuuzou <[email protected]>
* ext/openssl/ossl_pkey_dh.c (ossl_create_dh): fix typo.
patch from IWATSUKI Hiroyuki. [ruby-dev:25867]
* ext/openssl/ossl_ssl.c (ossl_tmp_dh_callback): ditto.
(ossl_call_tmp_dh_callback): ditto
Fri Mar 11 03:24:59 2005 Yukihiro Matsumoto <[email protected]>
* parse.y (primary): wrong var node was set for NODE_LAMBDA.
[ruby-core:04555]
Thu Mar 10 19:10:29 2005 Hidetoshi NAGAI <[email protected]>
* ext/tk/tcltklib.c (lib_eventloop_ensure): mis-delete a timer handler
when exit from a recursive called eventloop
* ext/tk/lib/tk/timer.rb: new TkRTTimer class, which can works for a
realtime operation
* ext/tk/sample/tkrttimer.rb: sample of TkRTTimer class
* ext/tk/lib/tk/textmark.rb: move TkTextMark#+ and TkTextMark#- to
TkText::IndexModMethods
* ext/tk/lib/tk/text.rb: improve TkTextMark#+ and TkTextMark#-, and
add them to TkText::IndexModMethods module
* ext/tk/sample/tktextio.rb: add test part of "seek by text index
modifiers"
Thu Mar 10 08:10:11 2005 Yukihiro Matsumoto <[email protected]>
* re.c (make_regexp): need to free internal regexp structure when
compilation fails. [ruby-talk:133228]