-
Notifications
You must be signed in to change notification settings - Fork 37
/
ChangeLog
3025 lines (1711 loc) · 84.4 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
2014-03-16 Sho Hashimoto <[email protected]>
* lib/bitclust/functionreferenceparser.rb
(BitClust::FunctionReferenceParser::parse_file): support version
branching.
2014-03-08 Sho Hashimoto <[email protected]>
* lib/bitclust/rdcompiler.rb (BitClust::RDCompiler::rdoc_url):
change rdoc link target.
2013-09-08 Sho Hashimoto <[email protected]>
* lib/bitclust/rrdparser.rb (BitClust::RRDParser#read_object_body):
support level 3 or more refs to object. (see #7900)
2013-04-12 Kazuhiro NISHIYAMA <[email protected]>
* lib/bitclust/subcommands/setup_command.rb (BitClust::SetupCommand#checkout):
use result of system directly instead of calling "svn help" with
redirects. because it may cause permission problem on cygwin.
see https://twitter.com/higaki/status/322542075927212034
2013-04-06 Sho Hashimoto <[email protected]>
* lib/bitclust/nameutils.rb
(BitClust::NameUtils::CLASS_NAME_RE): support main and
*::compatible class. (see #8186)
(BitClust::NameUtils::CLASS_PATH_RE): ditto.
2012-10-09 Ippei Obayashi <[email protected]>
* lib/bitclust/subcommands/server_command.rb
(BitClust::Subcommands::ServerCommand#initialize): fix set_srcdir call
(BitClust::Subcommands::ServerCommand#srcdir_root): fix default srcdir
2012-09-24 okkez <[email protected]>
* lib/bitclust/subcommand.rb: split subcommands.
* lib/bitclust/subcommands/update_command.rb: split update
subcommand.
* lib/bitclust/subcommands/setup_command.rb: split setup
subcommand.
* lib/bitclust/subcommands/server_command.rb: split server
subcommand.
* lib/bitclust/subcommands/query_command.rb: split query
subcommand.
* lib/bitclust/subcommands/property_command.rb: split property
subcommand.
* lib/bitclust/subcommands/lookup_command.rb: split lookup
subcommand.
* lib/bitclust/subcommands/list_command.rb: split list subcommand.
* lib/bitclust/subcommands/init_command.rb: split init subcommand.
2012-09-16 Sho Hashimoto <[email protected]>
* lib/bitclust/subcommand.rb (BitClust::SetupCommand#checkout):
check svn installed Windows, too. (see #7026)
2012-09-15 Sho Hashimoto <[email protected]>
* lib/bitclust/subcommand.rb (BitClust::ServerCommand#exec): start
browser mingw, cygwin and bccwin. (same as r5167)
2012-09-02 okkez <[email protected]>
* lib/bitclust/subcommand.rb (BitClust::SetupCommand#prepare): do
not overwrite config.yml if exist it. fix #6949
2012-08-26 Sho Hashimoto <[email protected]>
* lib/bitclust/subcommand.rb (BitClust::ServerCommand#initialize):
add :BindAddress to @params to delete warning.
2012-08-25 Sho Hashimoto <[email protected]>
* lib/bitclust/runner.rb: do not push Pathname object to
$LOAD_PATH. (fixes #6925)
2012-08-25 Sho Hashimoto <[email protected]>
* lib/bitclust/subcommand.rb (BitClust::ServerCommand#parse): fix
instance method reference. (fixes #6924)
2012-08-25 Sho Hashimoto <[email protected]>
* lib/bitclust/nameutils.rb (BitClust::NameUtils): add #!~ to
methodname (fixes #6915)
2012-08-15 okkez <[email protected]>
* standalone.rb: remove unused file.
2012-08-12 Sho Hashimoto <[email protected]>
* lib/bitclust/classentry.rb (BitClust::ClassEntry#superclass):
enable to return superclass from alias class. (see #6826)
2012-08-11 Sho Hashimoto <[email protected]>
* lib/bitclust/subcommand.rb (BitClust::SetupCommand#prepare): fix
typo. thanks dice (fixes #6856)
2012-08-07 Sho Hashimoto <[email protected]>
* tools/bc-tohtmlpackage.rb (#main): support multi name
method. (see #5257)
(#create_html_file): ditto.
(#create_html_method_file): ditto.
2012-06-04 Sho Hashimoto <[email protected]>
* lib/bitclust/completion.rb
(BitClust::Completion::search_methods_from_mname): remove unused
line. (fixes #6542)
2012-06-01 Sho Hashimoto <[email protected]>
* data/bitclust/template.lillia/library: display all error
classes. (see #6350)
* data/bitclust/template.offline/library: ditto.
* data/bitclust/template/library: ditto.
2012-06-01 Sho Hashimoto <[email protected]>
* data/bitclust/template.lillia/library: display all classes.
(see #6350)
* data/bitclust/template.offline/library: ditto.
* data/bitclust/template/library: ditto.
2012-05-27 wanabe <[email protected]>
* data/bitclust/template.offline/class: update to keep with template/.
fix #5944. see #5503.
* data/bitclust/template.offline/library: ditto.
2012-05-25 Sho Hashimoto <[email protected]>
* tools/bc-tohtmlpackage.rb (main): do not copy .svn in images.
2012-05-23 Sho Hashimoto <[email protected]>
* standalone.rb: start browser mingw, cygwin and bccwin.
(fixes #6461)
2012-02-29 Kazuhiro NISHIYAMA <[email protected]>
* packer.rb: add bitclust_libdir to avoid LoadError in bin/bitclust.
2012-02-12 wanabe <[email protected]>
* data/bitclust/template/library: sort classes according to
inheritance hierarchy. #5943
* data/bitclust/template.offline/library: ditto.
* data/bitclust/template.lillia/library: ditto.
* data/bitclust/catalog/ja_JP.EUC-JP: add "Classes", "Modules" and
"Objects".
2011-12-19 Kazuhiro NISHIYAMA <[email protected]>
* bitclust.gemspec, packer.rb: change from redmine.ruby-lang.org
to bugs.ruby-lang.org.
2011-12-19 Kazuhiro NISHIYAMA <[email protected]>
* packer.rb: follow rename at r4950.
2011-12-17 okkez <okkez000gmail.com>
* lib/bitclust/subcommand (BitClust::ServerCommand): add.
2011-12-15 okkez <okkez000gmail.com>
* lib/bitclust/subcommand: move subcommand classes under BitClust
module.
2011-12-12 okkez <okkez000gmail.com>
* bin/bitclust: split subcommands from bin/bitclust.
* lib/bitclust/subcommand: split subcommands from bin/bitclust.
2011-12-11 okkez <[email protected]>
* bin/bitclust (SetupCommand): add.
(#_main): add --version option.
(#_main): read config from $HOME/.bitclust/config.
(#_main): add --target option.
2011-10-31 okkez <[email protected]>
* standalone.rb: add srcdir_root method and use it.
* bin/bitclust.rb (PropertyCommand#exec): bin/bitclust.rb is a
command line tool.
* Rakefile: add gem related tasks.
* lib/bitclust/version.rb: add.
* bitclust.gemspec (Gem): add.
* Gemfile: add.
2011-08-14 okkez <[email protected]>
* lib/bitclust/rdcompiler.rb
(BitClust::RDCompiler#method_entry_chunk): compile @todo.
(BitClust::RDCompiler#todo): add.
* lib/bitclust/preprocessor.rb (BitClust::Preprocessor#next_line):
preprocess #@todo to @todo.
2011-07-18 okkez <[email protected]>
* packer.rb (#system_verbose): fix deprecated links. fixes #5040
2011-07-17 Sho Hashimoto <[email protected]>
* lib/bitclust/refsdatabase.rb
(BitClust::RefsDatabase#extract): allow level 5 and 6 refs.
(fixes #5035)
2011-06-21 okkez <[email protected]>
* lib/bitclust/libraryentry.rb
(BitClust::LibraryEntry#sublibrary): do not append duplicate
sublibraries. fixes #4901
2011-06-10 okkez <[email protected]>
* tools/forall-ruby.rb (#main): remove GEM_HOME environment
variable.
2011-06-01 okkez <[email protected]>
* lib/bitclust/crossrubyutils.rb
(BitClust::CrossRubyUtils#forall_ruby): reject rvm's gemset.
(BitClust::CrossRubyUtils#build_crossruby_table): remove GEM_HOME
environment variable.
(BitClust::CrossRubyUtils#print_table): beautify table content.
2011-04-29 Kazuhiro NISHIYAMA <[email protected]>
* packer.rb: make *.tar.xz instead of *.tar.bz2.
2011-02-13 okkez <[email protected]>
* tools/bc-tohtmlpackage.rb: set Encoding.default_external.
* lib/bitclust.rb: do not set Encoding.default_external.
2011-02-12 okkez <[email protected]>
* lib/bitclust/rdcompiler.rb (BitClust::RDCompiler#method_info):
unset Regexp 'n' option to reduce warnings when Ruby1.9.
* lib/bitclust.rb: set Encoding.default_external = 'euc-jp'.
* tools/bc-convert.rb: do not set $KCODE when Ruby1.9.
* tools/bc-tohtml.rb: ditto.
* config.in: ditto.
* bin/bitclust.rb (#srcdir_root): reduce warnings.
* lib/bitclust/parseutils.rb (BitClust::LineStream#gets):
StrintIO#path is removed after Ruby1.9.
* Rakefile: add.
* test/run_test.rb: add.
2011-02-11 okkez <[email protected]>
* tools/bc-tohtml.rb (#main): fix template path.
* template.offline: move to ...
* data/bitclust/template.offline: ... this.
2010-10-28 okkez <[email protected]>
* server.rb: now can see C API
* packer.rb (#system_verbose): change URI of "rurema wiki" (fix #3885)
2010-09-29 okkez <[email protected]>
* packer.rb: bump version 1.9.1 -> 1.9.2
2010-06-27 Sho Hashimoto <[email protected]>
* lib/bitclust/screen.rb (BitClust::URLMapper#document_url): allow
'-' to document_url.
2010-06-25 okkez <[email protected]>
* theme/default/style.css: remove attributes align, valign (fix #55)
* theme/lillia/style.css: ditto.
2010-06-21 okkez <[email protected]>
* tools/bc-checkparams.rb: add a tool to check difference between
signature and @param list.
2010-05-02 okkez <[email protected]>
* lib/bitclust/rdcompiler.rb (BitClust::RDCompiler#bracket_link):
now can handle type 'f' bracket link.
* test/test_rdcompiler.rb (TestRDCompiler#test_bracket_link): fix
typo and add test for type 'f' bracket link.
* data/bitclust/template.lillia/layout: apply layout to lillia theme.
* data/bitclust/template.lillia/class: ditto.
* data/bitclust/template.lillia/class-index: ditto.
* data/bitclust/template.lillia/doc: ditto.
* data/bitclust/template.lillia/library: ditto.
* data/bitclust/template.lillia/library-index: ditto.
* data/bitclust/template.lillia/method: ditto.
* data/bitclust/template.lillia/rd_file: ditto.
2010-04-18 wanabe <[email protected]>
* lib/bitclust/searcher.rb: add require 'functiondatabase'.
a patch from Ippei Obayashi (fix #3166).
2010-04-15 wanabe <[email protected]>
* tools/bc-tohtml.rb (main): enable 'bc-tohtml --capi file --target=NAME'.
(lookup): accept function name when C API mode.
* lib/bitclust/functionreferenceparser.rb (FunctionReferenceParser.parse_file):
added.
(FunctionReferenceParser#parse): return array of functions.
* template.offline/function: added.
2010-04-10 wanabe <[email protected]>
* standalone.rb: enable 'ruby standalone.rb --baseurl=URL
{--auto|--database=PATH} --capi'.
* lib/bitclust/app.rb (BitClust::App#initialize): enable to pass
FunctionDatabase to request handler.
* lib/bitclust/requesthandler.rb: save FunctionDatabase and use.
2010-04-09 okkez <[email protected]>
* tools/bc-methods.rb (#main): avoid tracer.
2010-04-08 okkez <[email protected]>
* tools/bc-rdoc.rb (DiffCommand#parse): use
BitClust::MethodDatabase instead of BitClust::Database
2010-04-01 okkez <[email protected]>
* data/bitclust/template/layout: apply layout.
* data/bitclust/template/search: ditto.
* data/bitclust/template/library-index: ditto.
* data/bitclust/template/library: ditto.
* data/bitclust/template/function-index: ditto.
* data/bitclust/template/function: ditto.
* data/bitclust/template/doc: ditto.
* data/bitclust/template/class-index: ditto.
* data/bitclust/template/class: ditto.
* data/bitclust/template/method: ditto.
* lib/bitclust/screen.rb (BitClust::TemplateScreen#run_template): ditto.
2010-03-30 wanabe <[email protected]>
* lib/bitclust/searcher.rb: enable "bitclust --capi search [NAME]".
* lib/bitclust/functiondatabase.rb(search_functions): add.
* lib/bitclust/completion.rb (_search_functions): add for completion.
* lib/bitclust/functionentry.rb (name_match?): ditto.
2010-03-29 wanabe <[email protected]>
* bin/bitclust.rb (LookupCommand): enable "bitclust --capi lookup
--function".
* lib/bitclust/functionentry.rb (BitClust::FunctionEntry): new alias
kind -> type_label.
* test/test_bitclust.rb: add test for above.
2010-03-28 wanabe <[email protected]>
* bin/bitclust.rb (ListCommand): enable "bitclust --capi list --function".
* test/test_bitclust.rb: add test of bin/bitclust.rb.
* test/db-test/: add DB for test.
2010-03-25 Sho Hashimoto <[email protected]>
* data/bitclust/template/method: translate topic path.
* template.offline/method: ditto.
2009-12-14 okkez <[email protected]>
* data/bitclust/template/search: display elapsed time.
* lib/bitclust/requesthandler.rb
(BitClust::RequestHandler#handle_search): ditto.
* lib/bitclust/screen.rb (BitClust::SearchScreen#initialize): ditto.
* tools/bc-tohtmlpackage.rb (#main): copy images to output directory.
* theme/default/style.css: fix style problems.
2009-10-13 okkez <[email protected]>
* lib/bitclust/requesthandler.rb
(BitClust::RackRequestHandler#handle): rescue
BitClust::NotFoundError and return not_found_response.
2009-09-14 okkez <[email protected]>
* lib/bitclust/exception.rb (BitClust::NotFoundError): add new
error.
(BitClust::LibraryNotFound, BitClust::ClassNotFound)
(BitClust::MethodNotFound, BitClust::FunctionNotFound)
(BitClust::DocNotFound): change super class UserError to NotFoundError.
* lib/bitclust/screen.rb (BitClust::NotFoundScreen): add new
screen.
* lib/bitclust/requesthandler.rb
(BitClust::RequestHandler#handle_method): raise MethodNotFound
when cannot fetch methods.
(BitClust::RequestHandler#handle): handle BitClust::NotFoundError.
2009-08-08 okkez <[email protected]>
* lib/bitclust/completion.rb
(BitClust::Completion#search_methods_from_mname): handle module
function correctly. a patch from Ippei Obayashi (fix #1409).
(BitClust::Completion#mspec_from_cref_mname): add new method.
2009-07-22 okkez <[email protected]>
* test/test_rdcompiler.rb: add require 'methoddatabase' (see #1770)
2009-07-15 okkez <[email protected]>
* test/test_rdcompiler.rb (TestRDCompiler#test_method): add css classes.
(TestRDCompiler#test_method2): ditto.
* lib/bitclust/rdcompiler.rb
(BitClust::RDCompiler#method_entry_chunk): remove needless space.
2009-07-15 okkez <[email protected]>
* lib/bitclust/rdcompiler.rb (BitClust::RDCompiler#man_link):
remove needless space.
* test/test_rdcompiler.rb (TestRDCompiler#test_braket_link): ditto.
2009-07-10 Kazuhiro NISHIYAMA <[email protected]>
* lib/bitclust/rdcompiler.rb (BitClust::RDCompiler#see): do not
split [[m:$,]] (closes #1754)
* test/test_rdcompiler.rb (TestRDCompiler#test_array_join): add a
test.
2009-07-04 okkez <[email protected]>
* theme/default/images/external.png: add svn:mime-type image/png.
2009-07-04 okkez <[email protected]>
* theme/default/style.css: add style "a.external".
* theme/default/images/external.png: add a png image.
* lib/bitclust/rdcompiler.rb (BitClust::RDCompiler#direct_url)
(BitClust::RDCompiler#blade_link, BitClust::RDCompiler#rfc_link)
(BitClust::RDCompiler#man_link): add "external" css class.
2009-07-04 okkez <[email protected]>
* lib/bitclust/rdcompiler.rb: trim spaces.
* lib/bitclust/app.rb: ditto.
2009-06-25 okkez <[email protected]>
* tools/bc-ancestors.rb: add new tool.
2009-06-04 Kazuhiro NISHIYAMA <[email protected]>
* lib/bitclust/methodsignature.rb
(BitClust::MethodSignature#friendly_string): `command` should
treat as a special case. (closes #1561)
* test/test_methodsignature.rb: add tests.
2009-05-03 TAMURA Takashi <[email protected]>
* data/bitclust/template/library: add a missing </tr>.
* lib/bitclust/rdcompiler.rb (BitClust::RDCompiler::bracket_link):
use readable labels for '/' and '_builtin'.
* lib/bitclust/rdcompiler.rb (BitClust::RDCompiler::initialize):
use a hash to pass catalog to rdcompiler.
* lib/bitclust/screen.rb (BitClust::DocScreen::rdcompiler)
* lib/bitclust/screen.rb (BitClust::TemplateScreen::rdcompiler): ditto.
2009-04-25 TAMURA Takashi <[email protected]>
* data/bitclust/template.lillia/:
add the system identifier of HTML 4.01 to templates.
* data/bitclust/template.lillia/library:
use added methods.
* lib/bitclust/libraryentry.rb (BitClust::LibraryEntry::all_classes):
(BitClust::LibraryEntry::all_error_classes):
add new methods.
* lib/bitclust/screen.rb (BitClust::TemplateScreen::compile_method):
* lib/bitclust/rdcompiler.rb (BitClust::RDCompiler::method_signature):
(BitClust::RDCompiler::compile_method):
compile_method now can take an option.
* theme/lillia/:
* data/bitclust/template.lillia:
add a theme and a template.
* lib/bitclust/app.rb (BitClust::App::initialize): add new options.
* standalone.rb: ditto.
* lib/bitclust/rdcompiler.rb (BitClust::RDCompiler):
set class to html elemets.
* lib/bitclust/screen.rb (BitClust::URLMapper::js_url): add a new method.
* lib/bitclust/screen.rb (BitClust::TemplateScreen::js_url): ditto.
* lib/bitclust/libraryentry.rb (BitClust::LibraryEntry::error_classes): ditto.
* lib/bitclust/docentry.rb (BitClust::DocEntry): ditto.
2009-04-20 okkez <[email protected]>
* template.offline/rd_file: change to the same design as template for online.
* template.offline/method: ditto.
* template.offline/library-index: ditto.
* template.offline/library: ditto.
* template.offline/doc: ditto.
* template.offline/class-index: ditto.
* template.offline/class: ditto.
2009-04-20 okkez <[email protected]>
* data/bitclust/template/function-index: fix classes.
* data/bitclust/template/library-index: ditto.
* data/bitclust/template/library: ditto.
2009-04-20 okkez <[email protected]>
* tools/bc-tohtmlpackage.rb: change default output directory.
* tools/bc-tohtmlpackage.rb: create output directory if it doesn't exist.
* tools/bc-tochm.rb: ditto.
2009-04-20 okkez <[email protected]>
* tools/bc-tohtmlpackage.rb: add favicon. trim white spaces.
2009-04-20 okkez <[email protected]>
* tools/bc-tochm.rb: set svn:executable.
* tools/bc-tohtmlpackage.rb: ditto.
* tools/stattodo.rb: ditto.
2009-04-20 Kazuhiro NISHIYAMA <[email protected]>
* data/bitclust/template/*: remove / because there are not XHTML.
2009-04-18 TAMURA Takashi <[email protected]>
* tools/bc-tohtmlpackage.rb
add a tool to create an html package.
* tools/bc-tohtmlpackage.rb (encodename_package):
Add an option, --fs-casesensitive, which allow case-sensitive file names.
2009-04-17 Kazuhiro NISHIYAMA <[email protected]>
* lib/bitclust/methodsignature.rb, lib/bitclust/nameutils.rb,
test/test_nameutils.rb: fix unary operator signature (fix #1384)
2009-04-17 Kazuhiro NISHIYAMA <[email protected]>
* lib/bitclust/screen.rb, theme/default/rurema.png,
data/bitclust/template/*: add favicon.
2009-03-15 okkez <[email protected]>
* config.ru.sample: Add another sample of config.ru for rackup command.
2009-03-15 okkez <[email protected]>
* standalone.rb: fix mount point.
* lib/bitclust/app.rb (BitClust::App#service): fix redirect (fix #1228)
* lib/bitclust/app.rb (BitClust::App#initialize): fix multi
version's viewpath.
* lib/bitclust/app.rb (BitClust::App#index): fix redirect.
2009-02-24 Kazuhiro NISHIYAMA <[email protected]>
* lib/bitclust/screen.rb, lib/bitclust/requesthandler.rb,
data/bitclust/template/*: add opensearchdescription.
2009-02-13 Kazuhiro NISHIYAMA <[email protected]>
* packer.rb: add -Ke to `bitclust init` and `bitclust update` too.
* config.ru: auto search themedir.
2008-12-08 okkez <[email protected]>
* standalone.rb: Fix view_path.
* lib/bitclust/app.rb (BitClust::App#initialize): Fix :cgi_url.
2008-11-03 Kazuhiro NISHIYAMA <[email protected]>
* config.ru, standalone.rb, lib/bitclust/app.rb,
lib/bitclust/interface.rb,
lib/bitclust/requesthandler.rb, standalone.rb:
support rack.
* lib/bitclust/compat.rb, lib/bitclust/requesthandler.rb:
use bytesize instead of size.
2008-08-31 okkez <[email protected]>
* lib/bitclust/methodsignature.rb (BitClust::MethodSignature):
fix regexp to match '-> ()' (fix #521)
2008-08-29 okkez <[email protected]>
* tools/bc-tochm.rb (#main): use BitClust::MethodDatabase instead
BitClust::Database
* tools/bc-tochm.rb (#main): template -> data/bitclust/template
2008-08-26 Kazuhiro NISHIYAMA <[email protected]>
* standalone.rb: do not mount '/' twice when --auto.
2008-08-23 Yutaka HARA <yhara.at.kmc.gr.jp>
* bin/standalone.rb: redirect '/' to '#{basepath}/view/'.
Sat Aug 16 15:49:16 2008 Minero Aoki <[email protected]>
* theme/default/style.css: table should always printed in 100%
width.
* data/bitclust/template/*: <table>s participate in the entries
class.
* lib/bitclust/methodsignature.rb: gvar should be shown as
"$gvar", not "self $gvar".
Sat Aug 16 15:07:23 2008 Minero Aoki <[email protected]>
* theme/default/style.css: make method links a block, to widen
clickable area. (refs #177)
* data/bitclust/template/class: locate only one anchor for one
<td>.
* lib/bitclust/htmlutils.rb: new method #method_url.
Fri Aug 15 02:21:17 2008 Minero Aoki <[email protected]>
* data/bitclust/template/search: method parameters were wrongly
shown.
Fri Aug 15 02:11:40 2008 Minero Aoki <[email protected]>
* data/bitclust/template/search: translate topic path.
Fri Aug 15 02:10:12 2008 Minero Aoki <[email protected]>
* lib/bitclust/screen.rb: new method friendly_library_name.
* data/bitclust/template/library: do not link to current page in
topic path.
* data/bitclust/template/class: translate "ancestors".
* lib/bitclust/screen.rb: translate search button label.
* data/bitclust/catalog/ja_JP.EUC-JP: more translation.
* data/bitclust/template/search: fix syntax error.
Fri Aug 15 01:16:48 2008 Minero Aoki <[email protected]>
* lib/bitclust/screen.rb: add utility methods #manual_home_link
and #friendly_library_link.
* tools/gencatalog.rb: strip "\n" from catalog keys and values.
* data/bitclust/template/*: translate topic-path.
* data/bitclust/catalog/ja_JP.EUC-JP: more translation.
Fri Aug 15 01:15:01 2008 Minero Aoki <[email protected]>
* lib/bitclust/htmlutils.rb: refactoring.
Fri Aug 15 00:36:23 2008 Minero Aoki <[email protected]>
* lib/bitclust/screen.rb (default_message_catalog): :datadir
includes "bitclust/" prefix.
Thu Aug 14 23:45:42 2008 Minero Aoki <[email protected]>
* standalone.rb: templatedir -> datadir.
Thu Aug 14 22:44:47 2008 Minero Aoki <[email protected]>
* template -> data/bitclust/template
* catalog -> data/bitclust/catalog
Thu Aug 14 22:42:18 2008 Minero Aoki <[email protected]>
* lib/bitclust/messagecatalog.rb: new file.
* lib/bitclust/screen.rb: make messages translatable by
MessageCatalog.
* lib/bitclust/rdcompiler.rb: receive a MessageCatalog (but not
used yet).
* template/*: translate messages.
* catalog/ja_JP.EUC-JP: new file.
* config.in: new configuration parameter :catalogdir.
* config.in: new configuration parameter :datadir.
* tools/gencatalog.rb: new tool to generate message translation
catalog file from source codes.
Wed Aug 13 14:16:41 2008 Minero Aoki <[email protected]>
* lib/bitclust/methodsignature.rb (friendly_string): show return
types for also unary/binary operators.
Wed Aug 13 13:59:21 2008 Minero Aoki <[email protected]>
* lib/bitclust/methodsignature.rb: new class MethodSignature,
which represents RRD method signature line ("--- m(param) {...} ->
type").
* lib/bitclust/screen.rb (foreach_method_chunk): yields a
MethodSignature to the template.
* lib/bitclust/rdcompiler.rb (method_signature): show method
signature in user-friendly form ("x + y" rather than "+(y)").
(refs #170)
* template/class: ditto.
* lib/bitclust/rdcompiler.rb (method_signature): makes the whole
signature a hyperlink. (refs #188)
* template/class: ditto.
* template/search: ditto.
* tools/check-signature.rb: a new tool to check method signature
format.
Tue Aug 12 18:55:06 2008 Minero Aoki <[email protected]>
* config.in: use MethodDatabase instead of Database.
Tue Aug 12 18:54:18 2008 Minero Aoki <[email protected]>
* tools/update-database.rb: use MethodDatabase.
Tue Aug 12 18:29:16 2008 Minero Aoki <[email protected]>
* lib/bitclust/methoddatabase.rb: LoadError fixed.
* lib/bitclust/functiondatabase.rb: ditto.
* lib/bitclust/server.rb: ditto.
* lib/bitclust/libraryentry.rb: fix typo.
Tue Aug 12 18:22:16 2008 Minero Aoki <[email protected]>
* lib/bitclust/entry.rb: split file.
* lib/bitclust/libraryentry.rb: new file.
* lib/bitclust/classentry.rb: new file.
* lib/bitclust/methodentry.rb: new file.
* lib/bitclust/functionentry.rb: new file.
* lib/bitclust/docentry.rb: new file.
Tue Aug 12 18:03:32 2008 Minero Aoki <[email protected]>
* lib/bitclust.rb: should require bitclust/*database.rb.
(refs #422)
* lib/bitclust/server.rb: ditto.
Tue Aug 12 17:56:27 2008 Minero Aoki <[email protected]>
* lib/bitclust/completion.rb (search_methods_by_cname):
_search_methods must return a SearchResult. (closes #425)
Tue Aug 12 17:52:13 2008 Minero Aoki <[email protected]>
* lib/bitclust/refsdatabase.rb: reduce warnings.
* lib/bitclust/entry.rb: ditto.
* lib/bitclust/methoddatabase.rb: ditto.
Tue Aug 12 17:49:46 2008 Minero Aoki <[email protected]>
* lib/bitclust/entry.rb: use better error message. (closes #424)
Tue Aug 12 17:31:51 2008 Minero Aoki <[email protected]>
* lib/bitclust/database.rb: fork methoddatabase.rb.
* lib/bitclust/methoddatabase.rb: new file.
* lib/bitclust/functiondatabase.rb: inherit Database class, to
provide #propget. It is required to get work C-API reference.
(refs #422)
* lib/bitclust/searcher.rb: Database -> MethodDatabase.
* lib/bitclust/rrdparser.rb: ditto.
* bin/bitclust.rb: ditto.
Tue Aug 12 17:29:31 2008 Minero Aoki <[email protected]>
* lib/bitclust/completion.rb: implement class+type search.
(fixes #423)
* lib/bitclust/completion.rb: class name only search did not work.
Tue Aug 12 09:27:30 2008 Minero Aoki <[email protected]>
* lib/bitclust/database.rb (#search_method): result may not have
any class.
* lib/bitclust/completion.rb (#expand_method_name): should not
return nil.
2008-06-30 Kazuhiro NISHIYAMA <[email protected]>
* standalone.rb: allow without --database option when with --auto
option.
* packer.rb: remove default_version and --database option in server.rb.
2008-06-30 Kazuhiro NISHIYAMA <[email protected]>
* lib/bitclust/screen.rb, lib/bitclust/requesthandler.rb: error
response should not be 200 OK. see #204
2008-06-29 Kazuhiro NISHIYAMA <[email protected]>
* packer.rb: update default_version from "1.8.6" to "1.8.7".
2008-06-29 TAMURA Takashi <[email protected]>
* lib/bitclust/simplesearcher.rb (BitClust::SimpleSearcher::search_pattern):
Fixed #204
* lib/bitclust/requesthandler.rb (BitClust::RequestHandler::handle_search):
ditto.
* test/test_simplesearcher.rb (TestSearcher::test_simple_search):
new assertions.
2008-06-29 TAMURA Takashi <[email protected]>
* lib/bitclust/simplesearcher.rb (BitClust::SimpleSearcher::search_pattern):
should check whether pat includes only white spaces.
* test/test_rrdparser.rb (TestRRDParser::test_title):
new test.
* test/test_simplesearcher.rb (TestSearcher::test_simple_search):
ditto.
2008-06-28 TAMURA Takashi <[email protected]>
* tools/bc-tohtml.rb (main): fix a bug.
2008-06-25 TAMURA Takashi <[email protected]>
* template/method: fix heading levels.
* template/doc: ditto.
* lib/bitclust/rrdparser.rb (BitClust::RRDParser::RRDParser.split_doc):
split the title and the other.
* lib/bitclust/database.rb (BitClust::Database::copy_doc):
ditto.
2008-06-22 TAMURA Takashi <[email protected]>
* lib/bitclust/requesthandler.rb (BitClust::RequestHandler::handle_search):
use String#scan. use appropriate regexp.
* lib/bitclust/simplesearcher.rb (BitClust::SimpleSearcher::find_class):
should escape strings in regexps.
Sun Jun 22 00:30:59 2008 Minero Aoki <[email protected]>
* bin/refe.rb: automatically add command-relative libdir to the
load path.
* bin/refe.rb: automatically set $KCODE to 'EUC' on Ruby 1.8
(tmp).
2008-06-21 TAMURA Takashi <[email protected]>
* theme/default/style.css:
add margin to orderd lists.