bitclust-core 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (127) hide show
  1. data/ChangeLog +2907 -0
  2. data/Gemfile +7 -0
  3. data/README +21 -0
  4. data/Rakefile +20 -0
  5. data/bin/bitclust +14 -0
  6. data/bin/refe +36 -0
  7. data/bitclust-dev.gemspec +33 -0
  8. data/bitclust.gemspec +30 -0
  9. data/config.in +23 -0
  10. data/config.ru +48 -0
  11. data/config.ru.sample +31 -0
  12. data/data/bitclust/catalog/ja_JP.EUC-JP +78 -0
  13. data/data/bitclust/catalog/ja_JP.UTF-8 +78 -0
  14. data/data/bitclust/template.lillia/class +98 -0
  15. data/data/bitclust/template.lillia/class-index +28 -0
  16. data/data/bitclust/template.lillia/doc +48 -0
  17. data/data/bitclust/template.lillia/layout +19 -0
  18. data/data/bitclust/template.lillia/library +129 -0
  19. data/data/bitclust/template.lillia/library-index +32 -0
  20. data/data/bitclust/template.lillia/method +20 -0
  21. data/data/bitclust/template.lillia/rd_file +6 -0
  22. data/data/bitclust/template.offline/class +67 -0
  23. data/data/bitclust/template.offline/class-index +28 -0
  24. data/data/bitclust/template.offline/doc +13 -0
  25. data/data/bitclust/template.offline/function +22 -0
  26. data/data/bitclust/template.offline/function-index +24 -0
  27. data/data/bitclust/template.offline/layout +18 -0
  28. data/data/bitclust/template.offline/library +87 -0
  29. data/data/bitclust/template.offline/library-index +32 -0
  30. data/data/bitclust/template.offline/method +21 -0
  31. data/data/bitclust/template.offline/rd_file +6 -0
  32. data/data/bitclust/template/class +133 -0
  33. data/data/bitclust/template/class-index +30 -0
  34. data/data/bitclust/template/doc +14 -0
  35. data/data/bitclust/template/function +21 -0
  36. data/data/bitclust/template/function-index +25 -0
  37. data/data/bitclust/template/layout +19 -0
  38. data/data/bitclust/template/library +89 -0
  39. data/data/bitclust/template/library-index +35 -0
  40. data/data/bitclust/template/method +24 -0
  41. data/data/bitclust/template/opensearchdescription +10 -0
  42. data/data/bitclust/template/search +57 -0
  43. data/lib/bitclust.rb +9 -0
  44. data/lib/bitclust/app.rb +129 -0
  45. data/lib/bitclust/classentry.rb +425 -0
  46. data/lib/bitclust/compat.rb +39 -0
  47. data/lib/bitclust/completion.rb +531 -0
  48. data/lib/bitclust/crossrubyutils.rb +91 -0
  49. data/lib/bitclust/database.rb +181 -0
  50. data/lib/bitclust/docentry.rb +83 -0
  51. data/lib/bitclust/entry.rb +223 -0
  52. data/lib/bitclust/exception.rb +38 -0
  53. data/lib/bitclust/functiondatabase.rb +115 -0
  54. data/lib/bitclust/functionentry.rb +81 -0
  55. data/lib/bitclust/functionreferenceparser.rb +76 -0
  56. data/lib/bitclust/htmlutils.rb +80 -0
  57. data/lib/bitclust/interface.rb +87 -0
  58. data/lib/bitclust/libraryentry.rb +211 -0
  59. data/lib/bitclust/lineinput.rb +165 -0
  60. data/lib/bitclust/messagecatalog.rb +95 -0
  61. data/lib/bitclust/methoddatabase.rb +401 -0
  62. data/lib/bitclust/methodentry.rb +202 -0
  63. data/lib/bitclust/methodid.rb +209 -0
  64. data/lib/bitclust/methodsignature.rb +82 -0
  65. data/lib/bitclust/nameutils.rb +236 -0
  66. data/lib/bitclust/parseutils.rb +60 -0
  67. data/lib/bitclust/preprocessor.rb +273 -0
  68. data/lib/bitclust/rdcompiler.rb +507 -0
  69. data/lib/bitclust/refsdatabase.rb +66 -0
  70. data/lib/bitclust/requesthandler.rb +330 -0
  71. data/lib/bitclust/ridatabase.rb +349 -0
  72. data/lib/bitclust/rrdparser.rb +522 -0
  73. data/lib/bitclust/runner.rb +143 -0
  74. data/lib/bitclust/screen.rb +554 -0
  75. data/lib/bitclust/searcher.rb +518 -0
  76. data/lib/bitclust/server.rb +59 -0
  77. data/lib/bitclust/simplesearcher.rb +84 -0
  78. data/lib/bitclust/subcommand.rb +746 -0
  79. data/lib/bitclust/textutils.rb +51 -0
  80. data/lib/bitclust/version.rb +3 -0
  81. data/packer.rb +224 -0
  82. data/refe2.gemspec +29 -0
  83. data/server.exe +0 -0
  84. data/server.exy +159 -0
  85. data/server.rb +10 -0
  86. data/setup.rb +1596 -0
  87. data/standalone.rb +193 -0
  88. data/test/run_test.rb +15 -0
  89. data/test/test_bitclust.rb +81 -0
  90. data/test/test_entry.rb +39 -0
  91. data/test/test_functiondatabase.rb +55 -0
  92. data/test/test_libraryentry.rb +31 -0
  93. data/test/test_methoddatabase.rb +81 -0
  94. data/test/test_methodsignature.rb +14 -0
  95. data/test/test_nameutils.rb +324 -0
  96. data/test/test_preprocessor.rb +84 -0
  97. data/test/test_rdcompiler.rb +534 -0
  98. data/test/test_refsdatabase.rb +76 -0
  99. data/test/test_rrdparser.rb +26 -0
  100. data/test/test_runner.rb +102 -0
  101. data/test/test_simplesearcher.rb +48 -0
  102. data/theme/default/images/external.png +0 -0
  103. data/theme/default/rurema.png +0 -0
  104. data/theme/default/style.css +288 -0
  105. data/theme/default/test.css +254 -0
  106. data/theme/lillia/rurema.png +0 -0
  107. data/theme/lillia/style.css +331 -0
  108. data/theme/lillia/test.css +254 -0
  109. data/tools/bc-ancestors.rb +153 -0
  110. data/tools/bc-checkparams.rb +246 -0
  111. data/tools/bc-classes.rb +80 -0
  112. data/tools/bc-convert.rb +165 -0
  113. data/tools/bc-list.rb +63 -0
  114. data/tools/bc-methods.rb +171 -0
  115. data/tools/bc-preproc.rb +42 -0
  116. data/tools/bc-rdoc.rb +343 -0
  117. data/tools/bc-tochm.rb +301 -0
  118. data/tools/bc-tohtml.rb +125 -0
  119. data/tools/bc-tohtmlpackage.rb +241 -0
  120. data/tools/check-signature.rb +19 -0
  121. data/tools/forall-ruby.rb +20 -0
  122. data/tools/gencatalog.rb +69 -0
  123. data/tools/statrefm.rb +98 -0
  124. data/tools/stattodo.rb +150 -0
  125. data/tools/update-database.rb +146 -0
  126. data/view.cgi +6 -0
  127. metadata +222 -0
data/ChangeLog ADDED
@@ -0,0 +1,2907 @@
1
+ 2012-06-04 Sho Hashimoto <sho-h@netlab.jp>
2
+
3
+ * lib/bitclust/completion.rb
4
+ (BitClust::Completion::search_methods_from_mname): remove unused
5
+ line. (fixes #6542)
6
+
7
+ 2012-06-01 Sho Hashimoto <sho-h@netlab.jp>
8
+
9
+ * data/bitclust/template.lillia/library: display all error
10
+ classes. (see #6350)
11
+
12
+ * data/bitclust/template.offline/library: ditto.
13
+
14
+ * data/bitclust/template/library: ditto.
15
+
16
+ 2012-06-01 Sho Hashimoto <sho-h@netlab.jp>
17
+
18
+ * data/bitclust/template.lillia/library: display all classes.
19
+ (see #6350)
20
+
21
+ * data/bitclust/template.offline/library: ditto.
22
+
23
+ * data/bitclust/template/library: ditto.
24
+
25
+ 2012-05-27 wanabe <s.wanabe@gmail.com>
26
+
27
+ * data/bitclust/template.offline/class: update to keep with template/.
28
+ fix #5944. see #5503.
29
+
30
+ * data/bitclust/template.offline/library: ditto.
31
+
32
+ 2012-05-25 Sho Hashimoto <sho-h@netlab.jp>
33
+
34
+ * tools/bc-tohtmlpackage.rb (main): do not copy .svn in images.
35
+
36
+ 2012-05-23 Sho Hashimoto <sho-h@netlab.jp>
37
+
38
+ * standalone.rb: start browser mingw, cygwin and bccwin.
39
+ (fixes #6461)
40
+
41
+ 2012-02-29 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
42
+
43
+ * packer.rb: add bitclust_libdir to avoid LoadError in bin/bitclust.
44
+
45
+ 2012-02-12 wanabe <s.wanabe@gmail.com>
46
+
47
+ * data/bitclust/template/library: sort classes according to
48
+ inheritance hierarchy. #5943
49
+
50
+ * data/bitclust/template.offline/library: ditto.
51
+
52
+ * data/bitclust/template.lillia/library: ditto.
53
+
54
+ * data/bitclust/catalog/ja_JP.EUC-JP: add "Classes", "Modules" and
55
+ "Objects".
56
+
57
+
58
+ 2011-12-19 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
59
+
60
+ * bitclust.gemspec, packer.rb: change from redmine.ruby-lang.org
61
+ to bugs.ruby-lang.org.
62
+
63
+ 2011-12-19 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
64
+
65
+ * packer.rb: follow rename at r4950.
66
+
67
+ 2011-12-17 okkez <okkez000gmail.com>
68
+
69
+ * lib/bitclust/subcommand (BitClust::ServerCommand): add.
70
+
71
+ 2011-12-15 okkez <okkez000gmail.com>
72
+
73
+ * lib/bitclust/subcommand: move subcommand classes under BitClust
74
+ module.
75
+
76
+ 2011-12-12 okkez <okkez000gmail.com>
77
+
78
+ * bin/bitclust: split subcommands from bin/bitclust.
79
+ * lib/bitclust/subcommand: split subcommands from bin/bitclust.
80
+
81
+ 2011-12-11 okkez <okkez000@gmail.com>
82
+
83
+ * bin/bitclust (SetupCommand): add.
84
+ (#_main): add --version option.
85
+ (#_main): read config from $HOME/.bitclust/config.
86
+ (#_main): add --target option.
87
+
88
+ 2011-10-31 okkez <okkez000@gmail.com>
89
+
90
+ * standalone.rb: add srcdir_root method and use it.
91
+
92
+ * bin/bitclust.rb (PropertyCommand#exec): bin/bitclust.rb is a
93
+ command line tool.
94
+
95
+ * Rakefile: add gem related tasks.
96
+
97
+ * lib/bitclust/version.rb: add.
98
+
99
+ * bitclust.gemspec (Gem): add.
100
+
101
+ * Gemfile: add.
102
+
103
+ 2011-08-14 okkez <okkez000@gmail.com>
104
+
105
+ * lib/bitclust/rdcompiler.rb
106
+ (BitClust::RDCompiler#method_entry_chunk): compile @todo.
107
+ (BitClust::RDCompiler#todo): add.
108
+
109
+ * lib/bitclust/preprocessor.rb (BitClust::Preprocessor#next_line):
110
+ preprocess #@todo to @todo.
111
+
112
+ 2011-07-18 okkez <okkez000@gmail.com>
113
+
114
+ * packer.rb (#system_verbose): fix deprecated links. fixes #5040
115
+
116
+ 2011-07-17 Sho Hashimoto <sho-h@netlab.jp>
117
+
118
+ * lib/bitclust/refsdatabase.rb
119
+ (BitClust::RefsDatabase#extract): allow level 5 and 6 refs.
120
+ (fixes #5035)
121
+
122
+ 2011-06-21 okkez <okkez000@gmail.com>
123
+
124
+ * lib/bitclust/libraryentry.rb
125
+ (BitClust::LibraryEntry#sublibrary): do not append duplicate
126
+ sublibraries. fixes #4901
127
+
128
+ 2011-06-10 okkez <okkez000@gmail.com>
129
+
130
+ * tools/forall-ruby.rb (#main): remove GEM_HOME environment
131
+ variable.
132
+
133
+ 2011-06-01 okkez <okkez000@gmail.com>
134
+
135
+ * lib/bitclust/crossrubyutils.rb
136
+ (BitClust::CrossRubyUtils#forall_ruby): reject rvm's gemset.
137
+ (BitClust::CrossRubyUtils#build_crossruby_table): remove GEM_HOME
138
+ environment variable.
139
+ (BitClust::CrossRubyUtils#print_table): beautify table content.
140
+
141
+ 2011-04-29 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
142
+
143
+ * packer.rb: make *.tar.xz instead of *.tar.bz2.
144
+
145
+ 2011-02-13 okkez <okkez000@gmail.com>
146
+
147
+ * tools/bc-tohtmlpackage.rb: set Encoding.default_external.
148
+
149
+ * lib/bitclust.rb: do not set Encoding.default_external.
150
+
151
+ 2011-02-12 okkez <okkez000@gmail.com>
152
+
153
+ * lib/bitclust/rdcompiler.rb (BitClust::RDCompiler#method_info):
154
+ unset Regexp 'n' option to reduce warnings when Ruby1.9.
155
+
156
+ * lib/bitclust.rb: set Encoding.default_external = 'euc-jp'.
157
+
158
+ * tools/bc-convert.rb: do not set $KCODE when Ruby1.9.
159
+
160
+ * tools/bc-tohtml.rb: ditto.
161
+
162
+ * config.in: ditto.
163
+
164
+ * bin/bitclust.rb (#srcdir_root): reduce warnings.
165
+
166
+ * lib/bitclust/parseutils.rb (BitClust::LineStream#gets):
167
+ StrintIO#path is removed after Ruby1.9.
168
+
169
+ * Rakefile: add.
170
+
171
+ * test/run_test.rb: add.
172
+
173
+ 2011-02-11 okkez <okkez000@gmail.com>
174
+
175
+ * tools/bc-tohtml.rb (#main): fix template path.
176
+
177
+ * template.offline: move to ...
178
+
179
+ * data/bitclust/template.offline: ... this.
180
+
181
+ 2010-10-28 okkez <okkez000@gmail.com>
182
+
183
+ * server.rb: now can see C API
184
+
185
+ * packer.rb (#system_verbose): change URI of "rurema wiki" (fix #3885)
186
+
187
+ 2010-09-29 okkez <okkez000@gmail.com>
188
+
189
+ * packer.rb: bump version 1.9.1 -> 1.9.2
190
+
191
+ 2010-06-27 Sho Hashimoto <sho-h@netlab.jp>
192
+
193
+ * lib/bitclust/screen.rb (BitClust::URLMapper#document_url): allow
194
+ '-' to document_url.
195
+
196
+ 2010-06-25 okkez <okkez000@gmail.com>
197
+
198
+ * theme/default/style.css: remove attributes align, valign (fix #55)
199
+
200
+ * theme/lillia/style.css: ditto.
201
+
202
+ 2010-06-21 okkez <okkez000@gmail.com>
203
+
204
+ * tools/bc-checkparams.rb: add a tool to check difference between
205
+ signature and @param list.
206
+
207
+ 2010-05-02 okkez <okkez000@gmail.com>
208
+
209
+ * lib/bitclust/rdcompiler.rb (BitClust::RDCompiler#bracket_link):
210
+ now can handle type 'f' bracket link.
211
+
212
+ * test/test_rdcompiler.rb (TestRDCompiler#test_bracket_link): fix
213
+ typo and add test for type 'f' bracket link.
214
+
215
+ * data/bitclust/template.lillia/layout: apply layout to lillia theme.
216
+
217
+ * data/bitclust/template.lillia/class: ditto.
218
+
219
+ * data/bitclust/template.lillia/class-index: ditto.
220
+
221
+ * data/bitclust/template.lillia/doc: ditto.
222
+
223
+ * data/bitclust/template.lillia/library: ditto.
224
+
225
+ * data/bitclust/template.lillia/library-index: ditto.
226
+
227
+ * data/bitclust/template.lillia/method: ditto.
228
+
229
+ * data/bitclust/template.lillia/rd_file: ditto.
230
+
231
+ 2010-04-18 wanabe <s.wanabe@gmail.com>
232
+
233
+ * lib/bitclust/searcher.rb: add require 'functiondatabase'.
234
+ a patch from Ippei Obayashi (fix #3166).
235
+
236
+ 2010-04-15 wanabe <s.wanabe@gmail.com>
237
+
238
+ * tools/bc-tohtml.rb (main): enable 'bc-tohtml --capi file --target=NAME'.
239
+ (lookup): accept function name when C API mode.
240
+
241
+ * lib/bitclust/functionreferenceparser.rb (FunctionReferenceParser.parse_file):
242
+ added.
243
+ (FunctionReferenceParser#parse): return array of functions.
244
+
245
+ * template.offline/function: added.
246
+
247
+ 2010-04-10 wanabe <s.wanabe@gmail.com>
248
+
249
+ * standalone.rb: enable 'ruby standalone.rb --baseurl=URL
250
+ {--auto|--database=PATH} --capi'.
251
+
252
+ * lib/bitclust/app.rb (BitClust::App#initialize): enable to pass
253
+ FunctionDatabase to request handler.
254
+
255
+ * lib/bitclust/requesthandler.rb: save FunctionDatabase and use.
256
+
257
+ 2010-04-09 okkez <okkez000@gmail.com>
258
+
259
+ * tools/bc-methods.rb (#main): avoid tracer.
260
+
261
+ 2010-04-08 okkez <okkez000@gmail.com>
262
+
263
+ * tools/bc-rdoc.rb (DiffCommand#parse): use
264
+ BitClust::MethodDatabase instead of BitClust::Database
265
+
266
+ 2010-04-01 okkez <okkez000@gmail.com>
267
+
268
+ * data/bitclust/template/layout: apply layout.
269
+
270
+ * data/bitclust/template/search: ditto.
271
+
272
+ * data/bitclust/template/library-index: ditto.
273
+
274
+ * data/bitclust/template/library: ditto.
275
+
276
+ * data/bitclust/template/function-index: ditto.
277
+
278
+ * data/bitclust/template/function: ditto.
279
+
280
+ * data/bitclust/template/doc: ditto.
281
+
282
+ * data/bitclust/template/class-index: ditto.
283
+
284
+ * data/bitclust/template/class: ditto.
285
+
286
+ * data/bitclust/template/method: ditto.
287
+
288
+ * lib/bitclust/screen.rb (BitClust::TemplateScreen#run_template): ditto.
289
+
290
+ 2010-03-30 wanabe <s.wanabe@gmail.com>
291
+
292
+ * lib/bitclust/searcher.rb: enable "bitclust --capi search [NAME]".
293
+
294
+ * lib/bitclust/functiondatabase.rb(search_functions): add.
295
+
296
+ * lib/bitclust/completion.rb (_search_functions): add for completion.
297
+
298
+ * lib/bitclust/functionentry.rb (name_match?): ditto.
299
+
300
+ 2010-03-29 wanabe <s.wanabe@gmail.com>
301
+
302
+ * bin/bitclust.rb (LookupCommand): enable "bitclust --capi lookup
303
+ --function".
304
+
305
+ * lib/bitclust/functionentry.rb (BitClust::FunctionEntry): new alias
306
+ kind -> type_label.
307
+
308
+ * test/test_bitclust.rb: add test for above.
309
+
310
+ 2010-03-28 wanabe <s.wanabe@gmail.com>
311
+
312
+ * bin/bitclust.rb (ListCommand): enable "bitclust --capi list --function".
313
+
314
+ * test/test_bitclust.rb: add test of bin/bitclust.rb.
315
+
316
+ * test/db-test/: add DB for test.
317
+
318
+ 2010-03-25 Sho Hashimoto <sho-h@netlab.jp>
319
+
320
+ * data/bitclust/template/method: translate topic path.
321
+
322
+ * template.offline/method: ditto.
323
+
324
+ 2009-12-14 okkez <okkez000@gmail.com>
325
+
326
+ * data/bitclust/template/search: display elapsed time.
327
+
328
+ * lib/bitclust/requesthandler.rb
329
+ (BitClust::RequestHandler#handle_search): ditto.
330
+
331
+ * lib/bitclust/screen.rb (BitClust::SearchScreen#initialize): ditto.
332
+
333
+ * tools/bc-tohtmlpackage.rb (#main): copy images to output directory.
334
+
335
+ * theme/default/style.css: fix style problems.
336
+
337
+ 2009-10-13 okkez <okkez000@gmail.com>
338
+
339
+ * lib/bitclust/requesthandler.rb
340
+ (BitClust::RackRequestHandler#handle): rescue
341
+ BitClust::NotFoundError and return not_found_response.
342
+
343
+ 2009-09-14 okkez <okkez000@gmail.com>
344
+
345
+ * lib/bitclust/exception.rb (BitClust::NotFoundError): add new
346
+ error.
347
+ (BitClust::LibraryNotFound, BitClust::ClassNotFound)
348
+ (BitClust::MethodNotFound, BitClust::FunctionNotFound)
349
+ (BitClust::DocNotFound): change super class UserError to NotFoundError.
350
+
351
+ * lib/bitclust/screen.rb (BitClust::NotFoundScreen): add new
352
+ screen.
353
+
354
+ * lib/bitclust/requesthandler.rb
355
+ (BitClust::RequestHandler#handle_method): raise MethodNotFound
356
+ when cannot fetch methods.
357
+ (BitClust::RequestHandler#handle): handle BitClust::NotFoundError.
358
+
359
+ 2009-08-08 okkez <okkez000@gmail.com>
360
+
361
+ * lib/bitclust/completion.rb
362
+ (BitClust::Completion#search_methods_from_mname): handle module
363
+ function correctly. a patch from Ippei Obayashi (fix #1409).
364
+ (BitClust::Completion#mspec_from_cref_mname): add new method.
365
+
366
+ 2009-07-22 okkez <okkez000@gmail.com>
367
+
368
+ * test/test_rdcompiler.rb: add require 'methoddatabase' (see #1770)
369
+
370
+ 2009-07-15 okkez <okkez000@gmail.com>
371
+
372
+ * test/test_rdcompiler.rb (TestRDCompiler#test_method): add css classes.
373
+ (TestRDCompiler#test_method2): ditto.
374
+
375
+ * lib/bitclust/rdcompiler.rb
376
+ (BitClust::RDCompiler#method_entry_chunk): remove needless space.
377
+
378
+ 2009-07-15 okkez <okkez000@gmail.com>
379
+
380
+ * lib/bitclust/rdcompiler.rb (BitClust::RDCompiler#man_link):
381
+ remove needless space.
382
+
383
+ * test/test_rdcompiler.rb (TestRDCompiler#test_braket_link): ditto.
384
+
385
+ 2009-07-10 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
386
+
387
+ * lib/bitclust/rdcompiler.rb (BitClust::RDCompiler#see): do not
388
+ split [[m:$,]] (closes #1754)
389
+
390
+ * test/test_rdcompiler.rb (TestRDCompiler#test_array_join): add a
391
+ test.
392
+
393
+ 2009-07-04 okkez <okkez000@gmail.com>
394
+
395
+ * theme/default/images/external.png: add svn:mime-type image/png.
396
+
397
+ 2009-07-04 okkez <okkez000@gmail.com>
398
+
399
+ * theme/default/style.css: add style "a.external".
400
+
401
+ * theme/default/images/external.png: add a png image.
402
+
403
+ * lib/bitclust/rdcompiler.rb (BitClust::RDCompiler#direct_url)
404
+ (BitClust::RDCompiler#blade_link, BitClust::RDCompiler#rfc_link)
405
+ (BitClust::RDCompiler#man_link): add "external" css class.
406
+
407
+ 2009-07-04 okkez <okkez000@gmail.com>
408
+
409
+ * lib/bitclust/rdcompiler.rb: trim spaces.
410
+
411
+ * lib/bitclust/app.rb: ditto.
412
+
413
+ 2009-06-25 okkez <okkez000@gmail.com>
414
+
415
+ * tools/bc-ancestors.rb: add new tool.
416
+
417
+ 2009-06-04 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
418
+
419
+ * lib/bitclust/methodsignature.rb
420
+ (BitClust::MethodSignature#friendly_string): `command` should
421
+ treat as a special case. (closes #1561)
422
+
423
+ * test/test_methodsignature.rb: add tests.
424
+
425
+ 2009-05-03 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
426
+
427
+ * data/bitclust/template/library: add a missing </tr>.
428
+
429
+ * lib/bitclust/rdcompiler.rb (BitClust::RDCompiler::bracket_link):
430
+ use readable labels for '/' and '_builtin'.
431
+
432
+ * lib/bitclust/rdcompiler.rb (BitClust::RDCompiler::initialize):
433
+ use a hash to pass catalog to rdcompiler.
434
+
435
+ * lib/bitclust/screen.rb (BitClust::DocScreen::rdcompiler)
436
+ * lib/bitclust/screen.rb (BitClust::TemplateScreen::rdcompiler): ditto.
437
+
438
+ 2009-04-25 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
439
+
440
+ * data/bitclust/template.lillia/:
441
+ add the system identifier of HTML 4.01 to templates.
442
+
443
+ * data/bitclust/template.lillia/library:
444
+ use added methods.
445
+
446
+ * lib/bitclust/libraryentry.rb (BitClust::LibraryEntry::all_classes):
447
+ (BitClust::LibraryEntry::all_error_classes):
448
+ add new methods.
449
+
450
+ * lib/bitclust/screen.rb (BitClust::TemplateScreen::compile_method):
451
+ * lib/bitclust/rdcompiler.rb (BitClust::RDCompiler::method_signature):
452
+ (BitClust::RDCompiler::compile_method):
453
+ compile_method now can take an option.
454
+
455
+ * theme/lillia/:
456
+ * data/bitclust/template.lillia:
457
+ add a theme and a template.
458
+
459
+ * lib/bitclust/app.rb (BitClust::App::initialize): add new options.
460
+ * standalone.rb: ditto.
461
+
462
+ * lib/bitclust/rdcompiler.rb (BitClust::RDCompiler):
463
+ set class to html elemets.
464
+
465
+ * lib/bitclust/screen.rb (BitClust::URLMapper::js_url): add a new method.
466
+ * lib/bitclust/screen.rb (BitClust::TemplateScreen::js_url): ditto.
467
+ * lib/bitclust/libraryentry.rb (BitClust::LibraryEntry::error_classes): ditto.
468
+ * lib/bitclust/docentry.rb (BitClust::DocEntry): ditto.
469
+
470
+ 2009-04-20 okkez <okkez000@gmail.com>
471
+
472
+ * template.offline/rd_file: change to the same design as template for online.
473
+
474
+ * template.offline/method: ditto.
475
+
476
+ * template.offline/library-index: ditto.
477
+
478
+ * template.offline/library: ditto.
479
+
480
+ * template.offline/doc: ditto.
481
+
482
+ * template.offline/class-index: ditto.
483
+
484
+ * template.offline/class: ditto.
485
+
486
+ 2009-04-20 okkez <okkez000@gmail.com>
487
+
488
+ * data/bitclust/template/function-index: fix classes.
489
+
490
+ * data/bitclust/template/library-index: ditto.
491
+
492
+ * data/bitclust/template/library: ditto.
493
+
494
+ 2009-04-20 okkez <okkez000@gmail.com>
495
+
496
+ * tools/bc-tohtmlpackage.rb: change default output directory.
497
+
498
+ * tools/bc-tohtmlpackage.rb: create output directory if it doesn't exist.
499
+
500
+ * tools/bc-tochm.rb: ditto.
501
+
502
+ 2009-04-20 okkez <okkez000@gmail.com>
503
+
504
+ * tools/bc-tohtmlpackage.rb: add favicon. trim white spaces.
505
+
506
+
507
+ 2009-04-20 okkez <okkez000@gmail.com>
508
+
509
+ * tools/bc-tochm.rb: set svn:executable.
510
+
511
+ * tools/bc-tohtmlpackage.rb: ditto.
512
+
513
+ * tools/stattodo.rb: ditto.
514
+
515
+ 2009-04-20 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
516
+
517
+ * data/bitclust/template/*: remove / because there are not XHTML.
518
+
519
+ 2009-04-18 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
520
+
521
+ * tools/bc-tohtmlpackage.rb
522
+ add a tool to create an html package.
523
+
524
+ * tools/bc-tohtmlpackage.rb (encodename_package):
525
+ Add an option, --fs-casesensitive, which allow case-sensitive file names.
526
+
527
+ 2009-04-17 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
528
+
529
+ * lib/bitclust/methodsignature.rb, lib/bitclust/nameutils.rb,
530
+ test/test_nameutils.rb: fix unary operator signature (fix #1384)
531
+
532
+ 2009-04-17 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
533
+
534
+ * lib/bitclust/screen.rb, theme/default/rurema.png,
535
+ data/bitclust/template/*: add favicon.
536
+
537
+ 2009-03-15 okkez <okkez000@gmail.com>
538
+
539
+ * config.ru.sample: Add another sample of config.ru for rackup command.
540
+
541
+ 2009-03-15 okkez <okkez000@gmail.com>
542
+
543
+ * standalone.rb: fix mount point.
544
+
545
+ * lib/bitclust/app.rb (BitClust::App#service): fix redirect (fix #1228)
546
+
547
+ * lib/bitclust/app.rb (BitClust::App#initialize): fix multi
548
+ version's viewpath.
549
+
550
+ * lib/bitclust/app.rb (BitClust::App#index): fix redirect.
551
+
552
+ 2009-02-24 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
553
+
554
+ * lib/bitclust/screen.rb, lib/bitclust/requesthandler.rb,
555
+ data/bitclust/template/*: add opensearchdescription.
556
+
557
+ 2009-02-13 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
558
+
559
+ * packer.rb: add -Ke to `bitclust init` and `bitclust update` too.
560
+
561
+ * config.ru: auto search themedir.
562
+
563
+ 2008-12-08 okkez <okkez000@gmail.com>
564
+
565
+ * standalone.rb: Fix view_path.
566
+
567
+ * lib/bitclust/app.rb (BitClust::App#initialize): Fix :cgi_url.
568
+
569
+ 2008-11-03 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
570
+
571
+ * config.ru, standalone.rb, lib/bitclust/app.rb,
572
+ lib/bitclust/interface.rb,
573
+ lib/bitclust/requesthandler.rb, standalone.rb:
574
+ support rack.
575
+
576
+ * lib/bitclust/compat.rb, lib/bitclust/requesthandler.rb:
577
+ use bytesize instead of size.
578
+
579
+ 2008-08-31 okkez <okkez000@gmail.com>
580
+
581
+ * lib/bitclust/methodsignature.rb (BitClust::MethodSignature):
582
+ fix regexp to match '-> ()' (fix #521)
583
+
584
+ 2008-08-29 okkez <okkez000@gmail.com>
585
+
586
+ * tools/bc-tochm.rb (#main): use BitClust::MethodDatabase instead
587
+ BitClust::Database
588
+ * tools/bc-tochm.rb (#main): template -> data/bitclust/template
589
+
590
+ 2008-08-26 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
591
+
592
+ * standalone.rb: do not mount '/' twice when --auto.
593
+
594
+ 2008-08-23 Yutaka HARA <yhara.at.kmc.gr.jp>
595
+
596
+ * bin/standalone.rb: redirect '/' to '#{basepath}/view/'.
597
+
598
+ Sat Aug 16 15:49:16 2008 Minero Aoki <aamine@loveruby.net>
599
+
600
+ * theme/default/style.css: table should always printed in 100%
601
+ width.
602
+
603
+ * data/bitclust/template/*: <table>s participate in the entries
604
+ class.
605
+
606
+ * lib/bitclust/methodsignature.rb: gvar should be shown as
607
+ "$gvar", not "self $gvar".
608
+
609
+ Sat Aug 16 15:07:23 2008 Minero Aoki <aamine@loveruby.net>
610
+
611
+ * theme/default/style.css: make method links a block, to widen
612
+ clickable area. (refs #177)
613
+
614
+ * data/bitclust/template/class: locate only one anchor for one
615
+ <td>.
616
+
617
+ * lib/bitclust/htmlutils.rb: new method #method_url.
618
+
619
+ Fri Aug 15 02:21:17 2008 Minero Aoki <aamine@loveruby.net>
620
+
621
+ * data/bitclust/template/search: method parameters were wrongly
622
+ shown.
623
+
624
+ Fri Aug 15 02:11:40 2008 Minero Aoki <aamine@loveruby.net>
625
+
626
+ * data/bitclust/template/search: translate topic path.
627
+
628
+ Fri Aug 15 02:10:12 2008 Minero Aoki <aamine@loveruby.net>
629
+
630
+ * lib/bitclust/screen.rb: new method friendly_library_name.
631
+
632
+ * data/bitclust/template/library: do not link to current page in
633
+ topic path.
634
+
635
+ * data/bitclust/template/class: translate "ancestors".
636
+
637
+ * lib/bitclust/screen.rb: translate search button label.
638
+
639
+ * data/bitclust/catalog/ja_JP.EUC-JP: more translation.
640
+
641
+ * data/bitclust/template/search: fix syntax error.
642
+
643
+ Fri Aug 15 01:16:48 2008 Minero Aoki <aamine@loveruby.net>
644
+
645
+ * lib/bitclust/screen.rb: add utility methods #manual_home_link
646
+ and #friendly_library_link.
647
+
648
+ * tools/gencatalog.rb: strip "\n" from catalog keys and values.
649
+
650
+ * data/bitclust/template/*: translate topic-path.
651
+
652
+ * data/bitclust/catalog/ja_JP.EUC-JP: more translation.
653
+
654
+ Fri Aug 15 01:15:01 2008 Minero Aoki <aamine@loveruby.net>
655
+
656
+ * lib/bitclust/htmlutils.rb: refactoring.
657
+
658
+ Fri Aug 15 00:36:23 2008 Minero Aoki <aamine@loveruby.net>
659
+
660
+ * lib/bitclust/screen.rb (default_message_catalog): :datadir
661
+ includes "bitclust/" prefix.
662
+
663
+ Thu Aug 14 23:45:42 2008 Minero Aoki <aamine@loveruby.net>
664
+
665
+ * standalone.rb: templatedir -> datadir.
666
+
667
+ Thu Aug 14 22:44:47 2008 Minero Aoki <aamine@loveruby.net>
668
+
669
+ * template -> data/bitclust/template
670
+
671
+ * catalog -> data/bitclust/catalog
672
+
673
+ Thu Aug 14 22:42:18 2008 Minero Aoki <aamine@loveruby.net>
674
+
675
+ * lib/bitclust/messagecatalog.rb: new file.
676
+
677
+ * lib/bitclust/screen.rb: make messages translatable by
678
+ MessageCatalog.
679
+
680
+ * lib/bitclust/rdcompiler.rb: receive a MessageCatalog (but not
681
+ used yet).
682
+
683
+ * template/*: translate messages.
684
+
685
+ * catalog/ja_JP.EUC-JP: new file.
686
+
687
+ * config.in: new configuration parameter :catalogdir.
688
+
689
+ * config.in: new configuration parameter :datadir.
690
+
691
+ * tools/gencatalog.rb: new tool to generate message translation
692
+ catalog file from source codes.
693
+
694
+ Wed Aug 13 14:16:41 2008 Minero Aoki <aamine@loveruby.net>
695
+
696
+ * lib/bitclust/methodsignature.rb (friendly_string): show return
697
+ types for also unary/binary operators.
698
+
699
+ Wed Aug 13 13:59:21 2008 Minero Aoki <aamine@loveruby.net>
700
+
701
+ * lib/bitclust/methodsignature.rb: new class MethodSignature,
702
+ which represents RRD method signature line ("--- m(param) {...} ->
703
+ type").
704
+
705
+ * lib/bitclust/screen.rb (foreach_method_chunk): yields a
706
+ MethodSignature to the template.
707
+
708
+ * lib/bitclust/rdcompiler.rb (method_signature): show method
709
+ signature in user-friendly form ("x + y" rather than "+(y)").
710
+ (refs #170)
711
+
712
+ * template/class: ditto.
713
+
714
+ * lib/bitclust/rdcompiler.rb (method_signature): makes the whole
715
+ signature a hyperlink. (refs #188)
716
+
717
+ * template/class: ditto.
718
+
719
+ * template/search: ditto.
720
+
721
+ * tools/check-signature.rb: a new tool to check method signature
722
+ format.
723
+
724
+ Tue Aug 12 18:55:06 2008 Minero Aoki <aamine@loveruby.net>
725
+
726
+ * config.in: use MethodDatabase instead of Database.
727
+
728
+ Tue Aug 12 18:54:18 2008 Minero Aoki <aamine@loveruby.net>
729
+
730
+ * tools/update-database.rb: use MethodDatabase.
731
+
732
+ Tue Aug 12 18:29:16 2008 Minero Aoki <aamine@loveruby.net>
733
+
734
+ * lib/bitclust/methoddatabase.rb: LoadError fixed.
735
+
736
+ * lib/bitclust/functiondatabase.rb: ditto.
737
+
738
+ * lib/bitclust/server.rb: ditto.
739
+
740
+ * lib/bitclust/libraryentry.rb: fix typo.
741
+
742
+ Tue Aug 12 18:22:16 2008 Minero Aoki <aamine@loveruby.net>
743
+
744
+ * lib/bitclust/entry.rb: split file.
745
+
746
+ * lib/bitclust/libraryentry.rb: new file.
747
+
748
+ * lib/bitclust/classentry.rb: new file.
749
+
750
+ * lib/bitclust/methodentry.rb: new file.
751
+
752
+ * lib/bitclust/functionentry.rb: new file.
753
+
754
+ * lib/bitclust/docentry.rb: new file.
755
+
756
+ Tue Aug 12 18:03:32 2008 Minero Aoki <aamine@loveruby.net>
757
+
758
+ * lib/bitclust.rb: should require bitclust/*database.rb.
759
+ (refs #422)
760
+
761
+ * lib/bitclust/server.rb: ditto.
762
+
763
+ Tue Aug 12 17:56:27 2008 Minero Aoki <aamine@loveruby.net>
764
+
765
+ * lib/bitclust/completion.rb (search_methods_by_cname):
766
+ _search_methods must return a SearchResult. (closes #425)
767
+
768
+ Tue Aug 12 17:52:13 2008 Minero Aoki <aamine@loveruby.net>
769
+
770
+ * lib/bitclust/refsdatabase.rb: reduce warnings.
771
+
772
+ * lib/bitclust/entry.rb: ditto.
773
+
774
+ * lib/bitclust/methoddatabase.rb: ditto.
775
+
776
+ Tue Aug 12 17:49:46 2008 Minero Aoki <aamine@loveruby.net>
777
+
778
+ * lib/bitclust/entry.rb: use better error message. (closes #424)
779
+
780
+ Tue Aug 12 17:31:51 2008 Minero Aoki <aamine@loveruby.net>
781
+
782
+ * lib/bitclust/database.rb: fork methoddatabase.rb.
783
+
784
+ * lib/bitclust/methoddatabase.rb: new file.
785
+
786
+ * lib/bitclust/functiondatabase.rb: inherit Database class, to
787
+ provide #propget. It is required to get work C-API reference.
788
+ (refs #422)
789
+
790
+ * lib/bitclust/searcher.rb: Database -> MethodDatabase.
791
+
792
+ * lib/bitclust/rrdparser.rb: ditto.
793
+
794
+ * bin/bitclust.rb: ditto.
795
+
796
+ Tue Aug 12 17:29:31 2008 Minero Aoki <aamine@loveruby.net>
797
+
798
+ * lib/bitclust/completion.rb: implement class+type search.
799
+ (fixes #423)
800
+
801
+ * lib/bitclust/completion.rb: class name only search did not work.
802
+
803
+ Tue Aug 12 09:27:30 2008 Minero Aoki <aamine@loveruby.net>
804
+
805
+ * lib/bitclust/database.rb (#search_method): result may not have
806
+ any class.
807
+
808
+ * lib/bitclust/completion.rb (#expand_method_name): should not
809
+ return nil.
810
+
811
+ 2008-06-30 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
812
+
813
+ * standalone.rb: allow without --database option when with --auto
814
+ option.
815
+
816
+ * packer.rb: remove default_version and --database option in server.rb.
817
+
818
+ 2008-06-30 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
819
+
820
+ * lib/bitclust/screen.rb, lib/bitclust/requesthandler.rb: error
821
+ response should not be 200 OK. see #204
822
+
823
+ 2008-06-29 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
824
+
825
+ * packer.rb: update default_version from "1.8.6" to "1.8.7".
826
+
827
+ 2008-06-29 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
828
+
829
+ * lib/bitclust/simplesearcher.rb (BitClust::SimpleSearcher::search_pattern):
830
+ Fixed #204
831
+
832
+ * lib/bitclust/requesthandler.rb (BitClust::RequestHandler::handle_search):
833
+ ditto.
834
+
835
+ * test/test_simplesearcher.rb (TestSearcher::test_simple_search):
836
+ new assertions.
837
+
838
+ 2008-06-29 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
839
+
840
+ * lib/bitclust/simplesearcher.rb (BitClust::SimpleSearcher::search_pattern):
841
+ should check whether pat includes only white spaces.
842
+
843
+ * test/test_rrdparser.rb (TestRRDParser::test_title):
844
+ new test.
845
+
846
+ * test/test_simplesearcher.rb (TestSearcher::test_simple_search):
847
+ ditto.
848
+
849
+ 2008-06-28 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
850
+
851
+ * tools/bc-tohtml.rb (main): fix a bug.
852
+
853
+ 2008-06-25 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
854
+
855
+ * template/method: fix heading levels.
856
+ * template/doc: ditto.
857
+
858
+ * lib/bitclust/rrdparser.rb (BitClust::RRDParser::RRDParser.split_doc):
859
+ split the title and the other.
860
+ * lib/bitclust/database.rb (BitClust::Database::copy_doc):
861
+ ditto.
862
+
863
+ 2008-06-22 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
864
+
865
+ * lib/bitclust/requesthandler.rb (BitClust::RequestHandler::handle_search):
866
+ use String#scan. use appropriate regexp.
867
+
868
+ * lib/bitclust/simplesearcher.rb (BitClust::SimpleSearcher::find_class):
869
+ should escape strings in regexps.
870
+
871
+ Sun Jun 22 00:30:59 2008 Minero Aoki <aamine@loveruby.net>
872
+
873
+ * bin/refe.rb: automatically add command-relative libdir to the
874
+ load path.
875
+
876
+ * bin/refe.rb: automatically set $KCODE to 'EUC' on Ruby 1.8
877
+ (tmp).
878
+
879
+ 2008-06-21 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
880
+
881
+ * theme/default/style.css:
882
+ add margin to orderd lists.
883
+ change font-size of h4.
884
+
885
+ 2008-06-19 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
886
+
887
+ * lib/bitclust/preprocessor.rb (BitClust::Preprocessor::self.read):
888
+ should use wrap.
889
+
890
+ 2008-06-16 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
891
+
892
+ * template/doc: minor edit.
893
+
894
+ 2008-06-14 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
895
+
896
+ * lib/bitclust/rdcompiler.rb (BitClust::RDCompiler::read_paragraph):
897
+ in regexp, should use //emlist\{ instead of //\w.
898
+
899
+ (BitClust::RDCompiler::read_method_entry_paragraph): ditto.
900
+
901
+ * test/test_rdcompiler.rb (TestRDCompiler::test_invalid_case):
902
+ new test.
903
+
904
+ 2008-06-11 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
905
+
906
+ * tools/bc-tochm.rb: refm.chm now includes other documents.
907
+
908
+ 2008-06-10 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
909
+
910
+ * packer.rb: generate refe-{1_8_6,1_9_0}{,.cmd}.
911
+
912
+ 2008-06-09 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
913
+
914
+ * lib/bitclust/screen.rb (BitClust::TemplateScreen::initialize):
915
+ set the encoding of the database to default_encoding.
916
+
917
+ * template: add `Home' to each breadcrumb navigation.
918
+
919
+ 2008-06-08 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
920
+
921
+ * lib/bitclust/screen.rb (BitClust::URLMapper::search_url):
922
+ new method.
923
+
924
+ * test/test_refsdatabase.rb (Test_RefsDatabase::test_make_refs):
925
+ new test.
926
+
927
+ 2008-06-08 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
928
+
929
+ * test/test_rdcompiler.rb (TestRDCompiler::test_braket_link):
930
+ add new assertions.
931
+
932
+ 2008-06-08 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
933
+
934
+ * tools/bc-tohtml.rb (main):
935
+ should pass the database to ScreenManager.entry_screen.
936
+
937
+ * lib/bitclust/database.rb (BitClust::Database::Database.dummy):
938
+ set Database#refs for dummy databases.
939
+
940
+ 2008-06-08 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
941
+
942
+ * tools/bc-tochm.rb (main):
943
+ delete ScreenManagerEx. use ScreenManager.
944
+ should pass the database to ScreenManager.entry_screen and others.
945
+
946
+ * lib/bitclust/screen.rb (BitClust::ScreenManager::initialize):
947
+ should not overwrite given configuration.
948
+
949
+ (BitClust::TemplateScreen::initialize): ditto.
950
+
951
+ 2008-06-08 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
952
+
953
+ * lib/bitclust/requesthandler.rb (BitClust::RequestHandler::handle_class):
954
+ pass the database to screen objects through the second argument.
955
+
956
+ (BitClust::RequestHandler::handle_doc): ditto.
957
+ (BitClust::RequestHandler::handle_search): ditto.
958
+ (BitClust::RequestHandler::handle_function): ditto.
959
+ (BitClust::RequestHandler::handle_method): ditto.
960
+ (BitClust::RequestHandler::handle_library): ditto.
961
+
962
+ * lib/bitclust/screen.rb (BitClust::IndexScreen::initialize):
963
+ now can take a database through the third argument.
964
+
965
+ (BitClust::EntryBoundScreen::initialize): ditto.
966
+ (BitClust::MethodScreen::initialize): ditto.
967
+
968
+ 2008-06-07 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
969
+
970
+ * lib/bitclust/database.rb (BitClust::Database::make_refs):
971
+ Database now contains references in method entries.
972
+
973
+ * lib/bitclust/rdcompiler.rb (BitClust::RDCompiler::reference_link):
974
+ new method. create a link from a reference ([[ref:c:String#m17n]] ...etc).
975
+
976
+ (BitClust::RDCompiler::bracket_link):
977
+ bracket_link now can take a label and a fragment.
978
+ bracket_link now can treat [[ref:c:String#m17n]] ...etc.
979
+
980
+ (BitClust::RDCompiler::h): now can take a fragment.
981
+
982
+ * lib/bitclust/htmlutils.rb (BitClust::HTMLUtils::library_link):
983
+ now can take a fragment.
984
+
985
+ 2008-06-07 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
986
+
987
+ * lib/bitclust/rdcompiler.rb (BitClust::RDCompiler::document_link):
988
+ new method. create a link to a document.
989
+
990
+ 2008-06-07 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
991
+
992
+ * lib/bitclust/exception.rb (BitClust::DocNotFound):
993
+ new error class.
994
+
995
+ 2008-06-07 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
996
+
997
+ * lib/bitclust/screen.rb (BitClust::DocScreen):
998
+ BitClust now can display documents.
999
+
1000
+ * lib/bitclust/entry.rb (BitClust::DocEntry):
1001
+ ditto.
1002
+
1003
+ * lib/bitclust/requesthandler.rb (BitClust::RequestHandler::handle_doc):
1004
+ ditto.
1005
+
1006
+ * template/doc: ditto.
1007
+
1008
+ * template.offline/doc: ditto.
1009
+
1010
+ * tools/bc-tohtml.rb (main): ditto.
1011
+
1012
+ 2008-06-07 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
1013
+
1014
+ * lib/bitclust/database.rb (BitClust::Database::docs):
1015
+ Database now can contain documents.
1016
+
1017
+ (BitClust::Database::make_refs):
1018
+ new method. make the database of references.
1019
+
1020
+ (BitClust::Database::copy_doc):
1021
+ new method. copy documents.
1022
+
1023
+ 2008-06-07 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
1024
+
1025
+ * lib/bitclust/rrdparser.rb (BitClust::RRDParser::RRDParser.title):
1026
+ new method. extract the title of a document.
1027
+
1028
+ 2008-06-07 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
1029
+
1030
+ * lib/bitclust/refsdatabase.rb (BitClust::RefsDatabase):
1031
+ add a new reference-database class.
1032
+
1033
+ * test/test_refsdatabase.rb (Test_RefsDatabase): ditto.
1034
+
1035
+ 2008-06-07 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
1036
+
1037
+ * lib/bitclust/completion.rb (BitClust::SearchResult::inspect):
1038
+ avoid too big SearchResult#inspect.
1039
+
1040
+ 2008-06-07 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
1041
+
1042
+ * lib/bitclust/preprocessor.rb (BitClust::Preprocessor::Preprocessor.read):
1043
+ add a File.read-like method.
1044
+
1045
+ 2008-06-07 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
1046
+
1047
+ * lib/bitclust/simplesearcher.rb (BitClust::SimpleSearcher::search_pattern):
1048
+ check whether pattern is empty.
1049
+
1050
+ 2008-06-02 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
1051
+
1052
+ * lib/bitclust/screen.rb (BitClust::ScreenManager):
1053
+ use a hash to store configuration data.
1054
+
1055
+ * lib/bitclust/screen.rb (BitClust::TemplateScreen::search_form):
1056
+ check whether called by bc-tochm.rb.
1057
+
1058
+ * tools/bc-tochm.rb (main): ditto.
1059
+
1060
+ * template/class (ancestors): ditto.
1061
+
1062
+ 2008-06-01 okkez <okkez000@gmail.com>
1063
+
1064
+ * tools/bc-tochm.rb (main):
1065
+ bc-tochm now can display target ruby version.
1066
+
1067
+ 2008-06-01 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
1068
+
1069
+ * standalone.rb: add default_encoding to the manager.
1070
+
1071
+ 2008-06-01 TAMURA Takashi <sh@sheepman.sakura.ne.jp>
1072
+
1073
+ * template/search: BitClust now takes a search query.
1074
+
1075
+ * template/class-index: ditto.
1076
+
1077
+ * template/function-index: ditto.
1078
+
1079
+ * template/function: ditto.
1080
+
1081
+ * template/library-index: ditto.
1082
+
1083
+ * template/library: ditto.
1084
+
1085
+ * template/class: ditto.
1086
+
1087
+ * template/method: ditto
1088
+
1089
+ * theme/default/style.css: ditto.
1090
+
1091
+ * lib/bitclust/screen.rb (BitClust::ScreenManager::seach_screen): ditto.
1092
+ (BitClust::TemplateScreen::search_form): ditto.
1093
+ (BitClust::SearchScreen::initialize): ditto.
1094
+
1095
+ * lib/bitclust/requesthandler.rb (BitClust::RequestHandler::handle_search): ditto.
1096
+
1097
+ * lib/bitclust/simplesearcher.rb (BitClust::SimpleSearcher): ditto.
1098
+
1099
+ * test/test_simplesearcher.rb (TestSearcher::test_simple_search): add a new test.
1100
+
1101
+ * test/test_entry.rb: minor edit.
1102
+
1103
+ * lib/bitclust/rrdparser.rb (BitClust::RRDParser.parse):
1104
+ add a new class method for debug.
1105
+
1106
+ 2008-05-29 okkez <okkez000@gmail.com>
1107
+
1108
+ * lib/bitclust/screen.rb (BitClust::ScreenManager::new_screen):
1109
+ BitClust now can display ruby version (from database property).
1110
+
1111
+ * standalone.rb: ditto.
1112
+
1113
+ * template/class: ditto.
1114
+
1115
+ * template/method: ditto.
1116
+
1117
+ * template/function: ditto.
1118
+
1119
+ * template/function-index: ditto.
1120
+
1121
+ * template/library-index: ditto.
1122
+
1123
+ * template/library: ditto.
1124
+
1125
+ 2008-05-25 TAMURA Takashi <sheepman@sheepman.sakura.ne.jp>
1126
+
1127
+ * lib/bitclust/requesthandler.rb (BitClust::RequestHandler::handle_class):
1128
+ BitClust now can display methods of ancestors in template/class pages.
1129
+
1130
+ * lib/bitclust/screen.rb (BitClust::ScreenManager::class_screen): ditto.
1131
+
1132
+ * template/class: ditto.
1133
+
1134
+ * lib/bitclust/entry.rb (BitClust::ClassEntry::entries):
1135
+ ClassEntry#entries now takes the depth of recursion.
1136
+
1137
+ * test/test_entry.rb: ditto.
1138
+
1139
+ 2008-05-24 TAMURA Takashi <sheepman@sheepman.sakura.ne.jp>
1140
+
1141
+ * template/class: allow the case that spaces don't exist between a signature and `{'
1142
+
1143
+ * tools/bc-rdoc.rb: should use ``require 'bitclust/ridatabase' ''
1144
+
1145
+ * tools/bc-methods.rb: take constants into a list when diff.
1146
+
1147
+ * test_nameutils.rb: add a test.
1148
+
1149
+ 2008-05-01 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
1150
+
1151
+ * packer.rb: File.expand_path path arguments.
1152
+
1153
+ 2008-02-17 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
1154
+
1155
+ * packer.rb: mkpath File.join(output_path, bitclust_dest_dir) instead
1156
+ of output_path.
1157
+
1158
+ 2008-01-26 TAMURA Takashi <sheepman@sheepman.sakura.ne.jp>
1159
+
1160
+ * tools/bc-methods.rb (defined_methods):
1161
+ should treat Object and Kernel as special cases.
1162
+
1163
+ * tools/bc-methods.rb : add a new option `--ruby='.
1164
+
1165
+ * lib/bitclust/crossrubyutils.rb (BitClust::CrossRubyUtils::get_ruby):
1166
+ add a new method that return the ruby interpreter path of a given version.
1167
+
1168
+ 2008-01-05 TAMURA Takashi <sheepman@sheepman.sakura.ne.jp>
1169
+
1170
+ * lib/bitclust/rdcompiler.rb (BitClust::RDCompiler):
1171
+ fix parsing at @param separated by empty lines.
1172
+
1173
+ * test/test_rdcompiler.rb (TestRDCompiler::test_dlist):
1174
+ ditto.
1175
+
1176
+ 2008-01-02 TAMURA Takashi <sheepman@sheepman.sakura.ne.jp>
1177
+
1178
+ * lib/bitclust/rdcompiler.rb (BitClust::RDCompiler):
1179
+ refactoring.
1180
+ fix the regexp of bracket link.
1181
+
1182
+ * test/test_rdcompiler.rb (TestRDCompiler):
1183
+ ditto.
1184
+
1185
+ 2008-01-01 TAMURA Takashi <sheepman@sheepman.sakura.ne.jp>
1186
+
1187
+ * lib/bitclust/rdcompiler.rb (BitClust::RDCompiler):
1188
+ use dlist for @param, @raise and so on.
1189
+
1190
+ * test/test_rdcompiler.rb (TestRDCompiler::test_method):
1191
+ ditto.
1192
+
1193
+ * lib/bitclust/rdcompiler.rb (BitClust::RDCompiler::dlist):
1194
+ allow nested pre (//emlist{) in dlist.
1195
+ use <p> in <dd>. empty lines separate paragraphs in dlist.
1196
+
1197
+ * test/test_rdcompiler.rb (TestRDCompiler): ditto.
1198
+
1199
+ 2007-12-31 TAMURA Takashi <sheepman@sheepman.sakura.ne.jp>
1200
+
1201
+ * test/test_rdcompiler.rb (TestRDCompiler):
1202
+ add new tests.
1203
+
1204
+ 2007-12-30 TAMURA Takashi <sheepman@sheepman.sakura.ne.jp>
1205
+
1206
+ * test/test_rdcompiler.rb (TestRDCompiler):
1207
+ add new tests.
1208
+
1209
+ 2007-12-29 TAMURA Takashi <sheepman@sheepman.sakura.ne.jp>
1210
+
1211
+ * test/test_rdcompiler.rb (TestRDCompiler):
1212
+ add new assertions.
1213
+
1214
+ 2007-12-27 TAMURA Takashi <sheepman@sheepman.sakura.ne.jp>
1215
+
1216
+ * lib/bitclust/nameutils.rb (BitClust::NameUtils::libname2id):
1217
+ fix regexp for redefinable not operator. a patch from Yugui
1218
+ [ruby-reference-manual:660].
1219
+
1220
+ * test/test_nameutils.rb (TestNameUtils::test_methodname): ditto
1221
+
1222
+ 2007-12-26 IWATSUKI Hiroyuki <don@na.rim.or.jp>
1223
+
1224
+ * tools/bc-tochm.rb (main): add alias method names to keyword page.
1225
+
1226
+ 2007-12-25 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
1227
+
1228
+ * packer.rb: generate readme.html.
1229
+
1230
+ * standalone.rb: use readme.html if exists.
1231
+
1232
+ * lib/bitclust/database.rb: do not write db files as CRLF.
1233
+
1234
+ 2007-12-24 TAMURA Takashi <sheepman@sheepman.sakura.ne.jp>
1235
+
1236
+ * test/test_rdcompiler.rb: add a new test.
1237
+
1238
+ Mon Dec 24 17:13:12 2007 Minero Aoki <aamine@loveruby.net>
1239
+
1240
+ * lib/bitclust/screen.rb (encoding): had failed when
1241
+ @entries.first is nil.
1242
+
1243
+ 2007-12-24 TAMURA Takashi <sheepman@sheepman.sakura.ne.jp>
1244
+
1245
+ * test/test_preprocessor.rb (TestPreprocessor::test_eval_cond):
1246
+ add new assertions.
1247
+
1248
+ * lib/bitclust/parseutils.rb: add a new require.
1249
+
1250
+ 2007-12-23 TAMURA Takashi <sheepman@sheepman.sakura.ne.jp>
1251
+
1252
+ * lib/bitclust/preprocessor.rb (BitClust::Preprocessor::eval_expr):
1253
+ make conjunctions(and, or) available.
1254
+
1255
+ * test/test_preprocessor.rb: add a new test.
1256
+
1257
+ 2007-12-18 TAMURA Takashi <sheepman@sheepman.sakura.ne.jp>
1258
+
1259
+ * template/*: escape entry names. [ruby-reference-manual:607]
1260
+
1261
+ * lib/bitclust/entry.rb (BitClust::Entry::Property::deserializer):
1262
+ fix [ruby-reference-manual:454].
1263
+
1264
+ 2007-12-16 TAMURA Takashi <sheepman@sheepman.sakura.ne.jp>
1265
+
1266
+ * lib/bitclust/database.rb (BitClust::Database::Database.dummy):
1267
+ dummy databases should have version info.
1268
+
1269
+ * lib/bitclust/rrdparser.rb (BitClust::RRDParser::RRDParser.parse_stdlib_file): ditto
1270
+
1271
+ 2007-12-13 TAMURA Takashi <sheepman@sheepman.sakura.ne.jp>
1272
+
1273
+ * lib/bitclust/rrdparser.rb (BitClust::RRDParser::Context::define_class):
1274
+ top class is BasicObject in 1.9.0
1275
+
1276
+ 2007-11-26 TAMURA Takashi <sheepman@sheepman.sakura.ne.jp>
1277
+
1278
+ * template/library: display Required Libraries and Sublibraries.
1279
+
1280
+ * template.offline/library: ditto.
1281
+
1282
+ * template/library-index: remove an adhoc indexing. do not display libraries that are sublibraries.
1283
+
1284
+ * template.offline/library-index: ditto.
1285
+
1286
+ * lib/bitclust/database.rb (Bitclust::Database::update_requires): LibraryEntry#requires should
1287
+ include all the required libraries recursively.
1288
+
1289
+ * lib/bitclust/database.rb (BitClust::Database::transaction): call update methods.
1290
+
1291
+ * lib/bitclust/database.rb (BitClust::Database): add new methods, Database#update_requires
1292
+ and Database#update_sublibraries.
1293
+
1294
+ * lib/bitclust/rrdparser.rb (BitClust::RRDParser::do_parse): add a new command `sublibrary'.
1295
+
1296
+ * lib/bitclust/entry.rb (LibraryEntry): add new properties, LibraryEntry#sublibraries and
1297
+ LibraryEntry#is_sublibrary.
1298
+
1299
+ * lib/bitclust/entry.rb (LibraryEntry): add new methods, LibraryEntry#sublibrary and
1300
+ LibraryEntry#all_requires.
1301
+
1302
+ 2007-11-25 TAMURA Takashi <sheepman@sheepman.sakura.ne.jp>
1303
+
1304
+ * template/class: fix a regexp to split signatures of Added Methods.
1305
+
1306
+ * template/method: put `$' in the cases of global variables.
1307
+
1308
+ * template.offline/method: ditto
1309
+
1310
+ 2007-11-24 TAMURA Takashi <sheepman@sheepman.sakura.ne.jp>
1311
+
1312
+ * template/class: fix a regexp to split signatures of methods.
1313
+
1314
+ 2007-11-23 TAMURA Takashi <sheepman@sheepman.sakura.ne.jp>
1315
+
1316
+ * template/library: do not display classes in required libraries
1317
+
1318
+ 2007-11-15 TAMURA Takashi <sheepman@sheepman.sakura.ne.jp>
1319
+
1320
+ * tools/bc-preproc.rb (main): fix typo
1321
+
1322
+ * lib/bitclust/preprocessor.rb (BitClust::Preprocessor::next_line): should check cond also when #@include
1323
+
1324
+ 2007-11-10 TAMURA Takashi <sheepman@sheepman.sakura.ne.jp>
1325
+
1326
+ * lib/bitclust/rrdparser.rb (BitClust::RRDParser.parse_stdlib_file): add a new argument `params'.
1327
+
1328
+ * lib/bitclust/screen.rb (BitClust::RDFileScreen): minor edit.
1329
+
1330
+ * lib/bitclust/rdcompiler.rb (BitClust::RDCompiler): add a new instance variable `@option'.
1331
+
1332
+ * template.offline/rd_file: minor edit
1333
+
1334
+ * tools/bc-tohtml.rb (main): add new options, --force and --ruby_version.
1335
+
1336
+ 2007-11-08 TAMURA Takashi <sheepman@sheepman.sakura.ne.jp>
1337
+
1338
+ * lib/bitclust/screen.rb (BitClust::RDFileScreen): add a new class for general RD files.
1339
+
1340
+ * tools/bc-tohtml.rb (main): a new feature of compiling general RD files.
1341
+
1342
+ * template.offline/rd_file: add a new template for general RD files.
1343
+
1344
+ * template.offline/class: fix the url of a css file.
1345
+
1346
+ 2007-11-07 TAMURA Takashi <sheepman@sheepman.sakura.ne.jp>
1347
+
1348
+ * lib/bitclust/ridatabase.rb (RiDatabase): take out RiDatabase from tools/bc-rdoc.rb.
1349
+
1350
+ * tools/bc-methods.rb (main): display RDoc domcuments of entries that do not exist in Rurima.
1351
+
1352
+ * template.offline/class: display all the methods in a single page. [ruby-reference-manual:557].
1353
+
1354
+ * template/library: separate classes into Exception ones and others.
1355
+
1356
+ Wed Nov 7 01:47:22 2007 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
1357
+
1358
+ * packer.rb: --database-version -> --database-versions.
1359
+ remove --database-dir.
1360
+
1361
+ * standalone.rb: add new option --auto and --browser.
1362
+
1363
+ Sun Nov 4 19:37:37 2007 Minero Aoki <aamine@loveruby.net>
1364
+
1365
+ * lib/bitclust/preprocessor.rb: new conditional statement #@until.
1366
+
1367
+ * lib/bitclust/rdcompiler.rb: new alias @arg (== @param).
1368
+
1369
+ Sat Oct 13 05:59:03 2007 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
1370
+
1371
+ * packer.rb: create archive files.
1372
+
1373
+ Tue Oct 9 12:08:50 2007 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
1374
+
1375
+ * packer.rb: new file.
1376
+
1377
+ * standalone.rb: add new option --bind-address.
1378
+
1379
+ Thu Aug 9 01:41:19 2007 Minero Aoki <aamine@loveruby.net>
1380
+
1381
+ * lib/bitclust/rdcompiler.rb (method_info): @see accepts comma
1382
+ separated ref list.
1383
+
1384
+ Thu Aug 9 01:23:23 2007 Minero Aoki <aamine@loveruby.net>
1385
+
1386
+ * lib/bitclust/rdcompiler.rb (method_info): compile @see.
1387
+
1388
+ Wed Aug 8 06:42:44 2007 Minero Aoki <aamine@loveruby.net>
1389
+
1390
+ * lib/bitclust/rdcompiler.rb (method_info): change output (tmp).
1391
+
1392
+ Wed Aug 8 06:38:11 2007 Minero Aoki <aamine@loveruby.net>
1393
+
1394
+ * lib/bitclust/rdcompiler.rb: compile @return, @param, ...
1395
+
1396
+ Mon Aug 6 03:36:02 2007 Minero Aoki <aamine@loveruby.net>
1397
+
1398
+ * tools/stattodo.rb: use history database.
1399
+
1400
+ * tools/ToDoHistory: add database file for backup.
1401
+
1402
+ * lib/bitclust/rrdparser.rb: fork preprocessor.rb and
1403
+ parseutils.rb.
1404
+
1405
+ * lib/bitclust/preprocessor.rb: new file.
1406
+
1407
+ * lib/bitclust/parseutils.rb: new file.
1408
+
1409
+ Sun Jul 1 18:45:03 2007 Minero Aoki <aamine@loveruby.net>
1410
+
1411
+ * standalone.rb: now --srcdir is optional.
1412
+
1413
+ Sun Jul 1 18:19:41 2007 Minero Aoki <aamine@loveruby.net>
1414
+
1415
+ * standalone.rb: --cgidir -> --themedir.
1416
+
1417
+ Sun Jul 1 18:09:56 2007 Minero Aoki <aamine@loveruby.net>
1418
+
1419
+ * standalone.rb: new file. WEBrick based server entry point.
1420
+
1421
+ * lib/bitclust/interface.rb: support WEBrick servlet (still
1422
+ multi-thread unsafe).
1423
+
1424
+ Sun Jun 17 04:40:59 2007 Minero Aoki <aamine@loveruby.net>
1425
+
1426
+ * lib/bitclust/functionreferenceparser.rb: parse function header.
1427
+
1428
+ * lib/bitclust/entry.rb (FunctionEntry): new persistent attribute
1429
+ "filename".
1430
+
1431
+ * template/function: show static and macro symbol.
1432
+
1433
+ Sat Jun 9 16:44:00 2007 Minero Aoki <aamine@loveruby.net>
1434
+
1435
+ * template/function: new file.
1436
+
1437
+ * template/function-index: new file.
1438
+
1439
+ * bin/bitclust.rb: support function database.
1440
+
1441
+ * lib/bitclust/requesthandler.rb: ditto.
1442
+
1443
+ * lib/bitclust/screen.rb: ditto.
1444
+
1445
+ * lib/bitclust/database.rb: new class FunctionDatabase.
1446
+
1447
+ * lib/bitclust/database.rb: new module DirectFileAccess.
1448
+
1449
+ * lib/bitclust/entry.rb: new class FunctionEntry.
1450
+
1451
+ * lib/bitclust/htmlutils.rb: new method #function_link.
1452
+
1453
+ * lib/bitclust/nameutils.rb: new method #functionname?.
1454
+
1455
+ * lib/bitclust/exception.rb: new exception class FunctionNotFound.
1456
+
1457
+ * lib/bitclust/functionreferenceparser.rb: new file.
1458
+
1459
+ Sun May 6 21:30:56 2007 Minero Aoki <aamine@loveruby.net>
1460
+
1461
+ * lib/bitclust/rdcompiler.rb (method_entry_paragraph): last change
1462
+ was incomplete.
1463
+
1464
+ Sun May 6 19:48:40 2007 Minero Aoki <aamine@loveruby.net>
1465
+
1466
+ * lib/bitclust/rdcompiler.rb: support [[m:Array#[] ]].
1467
+ [ruby-reference-manual:405]
1468
+
1469
+ * tools/bc-tohtml.rb: --target=C did not work.
1470
+
1471
+ * lib/bitclust/screen.rb: accept multiple method entries.
1472
+
1473
+ * lib/bitclust/entry.rb: new method LibraryEntry#get_class.
1474
+
1475
+ * lib/bitclust/entry.rb: new method LibraryEntry#fetch_methods.
1476
+
1477
+ Sun Apr 22 14:55:03 2007 Minero Aoki <aamine@loveruby.net>
1478
+
1479
+ * lib/bitclust/entry.rb (inherited_method_specs): did not reject
1480
+ methods of the current class (Local variable was wrongly
1481
+ overwritten).
1482
+
1483
+ * bin/bitclust.rb: new subcommand "query".
1484
+
1485
+ Sun Apr 22 14:35:19 2007 Minero Aoki <aamine@loveruby.net>
1486
+
1487
+ * template/method: show all method entries.
1488
+
1489
+ * lib/bitclust/screen.rb (MethodScreen): accept multiple entries.
1490
+
1491
+ * lib/bitclust/requesthandler.rb: search all methods.
1492
+
1493
+ * lib/bitclust/database.rb: new method Database#fetch_methods.
1494
+
1495
+ * lib/bitclust/entry.rb: new method ClassEntry#fetch_methods.
1496
+
1497
+ * template/class: parameterize entry type name.
1498
+
1499
+ * lib/bitclust/screen.rb (h): call to_s for argument.
1500
+
1501
+ * lib/bitclust/entry.rb (ClassEntry#inherited_method_specs): names
1502
+ must be unique.
1503
+
1504
+ Sun Apr 22 13:35:14 2007 Minero Aoki <aamine@loveruby.net>
1505
+
1506
+ * template/method: parameterize method entry type label (instance
1507
+ method, ...)
1508
+
1509
+ * lib/bitclust/entry.rb: new method MethodEntry#type_label.
1510
+
1511
+ * lib/bitclust/entry.rb: new method MethodEntry#short_label.
1512
+
1513
+ * lib/bitclust/entry.rb (label): do not include class name for
1514
+ variables.
1515
+
1516
+ * lib/bitclust/htmlutils.rb (link_to_method): use #short_label.
1517
+
1518
+ Sun Apr 22 13:10:56 2007 Minero Aoki <aamine@loveruby.net>
1519
+
1520
+ * lib/bitclust/requesthandler.rb (handle_method): check gvar name
1521
+ indivisually. [ruby-reference-manual:398]
1522
+
1523
+ * lib/bitclust/nameutils.rb: new method #gvarname?.
1524
+
1525
+ Thu Mar 29 11:49:54 2007 Minero Aoki <aamine@loveruby.net>
1526
+
1527
+ * lib/bitclust/screen.rb: new method ErrorScreen#content_type.
1528
+
1529
+ Thu Mar 29 06:34:49 2007 Minero Aoki <aamine@loveruby.net>
1530
+
1531
+ * lib/bitclust/lineinput.rb: import latest version.
1532
+
1533
+ Tue Mar 20 16:38:28 2007 Minero Aoki <aamine@loveruby.net>
1534
+
1535
+ * template/method: show visibility on topic path.
1536
+
1537
+ Tue Mar 20 16:19:06 2007 Minero Aoki <aamine@loveruby.net>
1538
+
1539
+ * lib/bitclust/completion.rb: cref includes class ID, not class
1540
+ name.
1541
+
1542
+ Tue Mar 20 16:11:54 2007 Minero Aoki <aamine@loveruby.net>
1543
+
1544
+ * lib/bitclust/entry.rb (LibraryEntry#<=>): case-insensitive.
1545
+
1546
+ * lib/bitclust/entry.rb (MethodEntry#<=>): defined entry preceeds
1547
+ other entries.
1548
+
1549
+ * lib/bitclust/entry.rb (MethodEntry#spec, spec_string, typemark,
1550
+ typechar): optimize.
1551
+
1552
+ * lib/bitclust/nameutils.rb: new method methodid2typechar.
1553
+
1554
+ * lib/bitclust/nameutils.rb: new method methodid2typemark.
1555
+
1556
+ * lib/bitclust/nameutils.rb: new method methodid2specparts.
1557
+
1558
+ * lib/bitclust/nameutils.rb: rename methodid2spec ->
1559
+ methodid2specstring.
1560
+
1561
+ * lib/bitclust/htmlutils.rb: ditto.
1562
+
1563
+ * lib/bitclust/nameutils.rb (typechar2mark, typemark2char):
1564
+ optimize.
1565
+
1566
+ Tue Mar 20 02:04:38 2007 Minero Aoki <aamine@loveruby.net>
1567
+
1568
+ * template/library-index: show abstract of each entries.
1569
+
1570
+ * template/library: ditto.
1571
+
1572
+ * template/class: ditto.
1573
+
1574
+ * lib/bitclust/screen.rb: new method Screen#foreach_method_chunk.
1575
+
1576
+ * lib/bitclust/methodid.rb: new method MethodSpec#<=>.
1577
+
1578
+ * lib/bitclust/rdcompiler.rb: $VAR should be rendered as "$VAR",
1579
+ not "Kernel$VAR".
1580
+
1581
+ * lib/bitclust/entry.rb (synopsis_source): might be nil.
1582
+
1583
+ * lib/bitclust/entry.rb (partitioned_entries): separate added
1584
+ entries.
1585
+
1586
+ * lib/bitclust/lineinput.rb: new method LineInput.for_string.
1587
+
1588
+ * theme/default/style.css: add table/tr/th/td rules.
1589
+
1590
+ Mon Mar 19 23:44:04 2007 Minero Aoki <aamine@loveruby.net>
1591
+
1592
+ * template/library: show added/redefined methods.
1593
+
1594
+ * lib/bitclust/htmlutils.rb (link_to_method): add 2nd parameter
1595
+ "specp".
1596
+
1597
+ * lib/bitclust/entry.rb: new method Entry#detail_source.
1598
+
1599
+ Mon Mar 19 22:50:51 2007 Minero Aoki <aamine@loveruby.net>
1600
+
1601
+ * lib/bitclust/completion.rb: never load MethoEntry until needed.
1602
+
1603
+ * bin/refe.rb: require specific library for speed.
1604
+
1605
+ * lib/bitclust/searcher.rb: do not require bitclust/server
1606
+ (webrick/config) until needed.
1607
+
1608
+ * lib/bitclust/server.rb: include DRbUndumped to all classes here.
1609
+
1610
+ * lib/bitclust/entry.rb: ditto.
1611
+
1612
+ * lib/bitclust/database.rb: ditto.
1613
+
1614
+ Mon Mar 19 17:38:26 2007 Minero Aoki <aamine@loveruby.net>
1615
+
1616
+ * lib/bitclust/searcher.rb: reduce remote call.
1617
+
1618
+ * lib/bitclust/database.rb: fork completion.rb.
1619
+
1620
+ * lib/bitclust/completion.rb: new file.
1621
+
1622
+ * lib/bitclust/entry.rb: combine _*map into _index.
1623
+
1624
+ * lib/bitclust/methodid.rb: merge methodnamepattern.rb.
1625
+
1626
+ * lib/bitclust/methodnamepattern.rb: removed (merged to
1627
+ methodid.rb).
1628
+
1629
+ * lib/bitclust/rdcompiler.rb: read method property.
1630
+
1631
+ Sat Mar 3 02:43:14 2007 Minero Aoki <aamine@loveruby.net>
1632
+
1633
+ * lib/bitclust/searcher.rb: support remote database.
1634
+
1635
+ * lib/bitclust/database.rb: new method Database.connect to connect
1636
+ to remote database.
1637
+
1638
+ * lib/bitclust/server.rb: new file.
1639
+
1640
+ * lib/bitclust/exception.rb: new exception class InvalidScheme.
1641
+
1642
+ * lib/bitclust.rb: require bitclust/server.
1643
+
1644
+ * bin/refe.rb: do not exit in SIGPIPE signal handler not to stop
1645
+ druby server.
1646
+
1647
+ Sat Mar 3 00:16:46 2007 Minero Aoki <aamine@loveruby.net>
1648
+
1649
+ * tools/bc-tohtml.rb: new option --baseurl.
1650
+
1651
+ * tools/bc-tohtml.rb: pass base_url and default_encoding to a
1652
+ ScreenManager. [ruby-reference-manual:358]
1653
+
1654
+ * lib/bitclust/screen.rb: accept new option default_encoding.
1655
+
1656
+ Tue Feb 20 09:44:39 2007 Minero Aoki <aamine@loveruby.net>
1657
+
1658
+ * bin/bitclust.rb (main): just ignore SIGPIPE (and rescue EPIPE).
1659
+
1660
+ Wed Feb 7 22:05:12 2007 Minero Aoki <aamine@loveruby.net>
1661
+
1662
+ * move bin/bc-*.rb and forall-ruby.rb to tools/.
1663
+
1664
+ Fri Jan 26 06:39:46 2007 Minero Aoki <aamine@loveruby.net>
1665
+
1666
+ * lib/bitclust/database.rb (make_method_index): should be
1667
+ inheritance-sensitive. (refe failed to search inherited methods)
1668
+
1669
+ * lib/bitclust/database.rb (open_class): should overwrite existing
1670
+ object.
1671
+
1672
+ * lib/bitclust/database.rb (open_library): ditto (but not
1673
+ validated).
1674
+
1675
+ Tue Jan 9 04:07:54 2007 Minero Aoki <aamine@loveruby.net>
1676
+
1677
+ * lib/bitclust/database.rb (get_class, open_class): logic fix
1678
+ again.
1679
+
1680
+ * lib/bitclust/database.rb: reduce redundant system calls.
1681
+
1682
+ * lib/bitclust/entry.rb: ditto.
1683
+
1684
+ * lib/bitclust/rrdparser.rb: supress warning on class alias.
1685
+
1686
+ Tue Jan 9 03:21:57 2007 Minero Aoki <aamine@loveruby.net>
1687
+
1688
+ * lib/bitclust/database.rb (get_class): id is nil in else clause.
1689
+
1690
+ * lib/bitclust/database.rb (load_class): set @classmap here.
1691
+
1692
+ Tue Jan 9 02:27:02 2007 Minero Aoki <aamine@loveruby.net>
1693
+
1694
+ * lib/bitclust/database.rb: lazy loading for class entries.
1695
+
1696
+ * lib/bitclust/database.rb: generate class ID/name relation index.
1697
+
1698
+ * lib/bitclust/methodnamepattern.rb: optimize using class index.
1699
+
1700
+ * lib/bitclust/entry.rb: reduce warning on Ruby 1.9.
1701
+
1702
+ Tue Jan 9 00:34:41 2007 Minero Aoki <aamine@loveruby.net>
1703
+
1704
+ * lib/bitclust/database.rb: allow looped require (tmp).
1705
+
1706
+ * lib/bitclust/rrdparser.rb: allow blank lines before class alias.
1707
+
1708
+ Tue Jan 9 00:21:02 2007 Minero Aoki <aamine@loveruby.net>
1709
+
1710
+ * bin/bitclust.rb: show program name in error message.
1711
+
1712
+ * lib/bitclust/database.rb (transaction): check looped ancestors,
1713
+ requires. [ruby-reference-manual:305]
1714
+
1715
+ * lib/bitclust/entry.rb: ditto.
1716
+
1717
+ * lib/bitclust/exception.rb: new exception InvalidLink.
1718
+
1719
+ * lib/bitclust/exception.rb: new exception InvalidAncestor.
1720
+
1721
+ Sun Jan 7 16:47:14 2007 Minero Aoki <aamine@loveruby.net>
1722
+
1723
+ * tools/update-database.rb: chdir to document directory.
1724
+
1725
+ Sun Jan 7 14:45:04 2007 Minero Aoki <aamine@loveruby.net>
1726
+
1727
+ * lib/bitclust/rdcompiler.rb (dlist): <dl></dl> location was wrong
1728
+ (This patch is contributed by sheepman).
1729
+ [ruby-reference-manual:289]
1730
+
1731
+ Sun Jan 7 14:43:49 2007 Minero Aoki <aamine@loveruby.net>
1732
+
1733
+ * lib/bitclust/database.rb (properties): h['source'] may become
1734
+ nil if database is empty (dummy).
1735
+
1736
+ Sat Jan 6 20:00:01 2007 Minero Aoki <aamine@loveruby.net>
1737
+
1738
+ * lib/bitclust/rrdparser.rb: allow to write class alias (support
1739
+ is still incomplete).
1740
+
1741
+ Fri Jan 5 08:47:50 2007 Minero Aoki <aamine@loveruby.net>
1742
+
1743
+ * lib/bitclust/rrdparser.rb: produce better error message.
1744
+
1745
+ * lib/bitclust/rrdparser.rb (read_classes): parse level-1 header
1746
+ more strictly.
1747
+
1748
+ Fri Jan 5 07:12:14 2007 Minero Aoki <aamine@loveruby.net>
1749
+
1750
+ * lib/bitclust/rrdparser.rb (read_classes): allow superclass for
1751
+ level-1 object header.
1752
+
1753
+ Wed Jan 3 17:12:19 2007 Minero Aoki <aamine@loveruby.net>
1754
+
1755
+ * lib/bitclust/rrdparser.rb: refactoring: extract method:
1756
+ read_object_body.
1757
+
1758
+ Wed Jan 3 10:18:19 2007 Minero Aoki <aamine@loveruby.net>
1759
+
1760
+ * lib/bitclust/rrdparser.rb (read_classes): allow dynamic include
1761
+ (not implemented yet). [ruby-reference-manual:240]
1762
+
1763
+ * lib/bitclust/rrdparser.rb (read_classes): allow extend for
1764
+ modules/classes. [ruby-reference-manual:244]
1765
+
1766
+ Tue Jan 2 06:10:17 2007 Minero Aoki <aamine@loveruby.net>
1767
+
1768
+ * lib/bitclust/rrdparser.rb (check_chunk_signatures): allow not
1769
+ qualified signature if method's signature is qualified and
1770
+ compatible.
1771
+
1772
+ Tue Jan 2 06:09:00 2007 Minero Aoki <aamine@loveruby.net>
1773
+
1774
+ * tools/statrefm.rb: ignore not found files.
1775
+
1776
+ Tue Dec 19 08:27:14 2006 Minero Aoki <aamine@loveruby.net>
1777
+
1778
+ * lib/bitclust/rdcompiler.rb: allow <dl> out of method list.
1779
+ (This patch is contributed by sheepman.)
1780
+
1781
+ Tue Dec 19 08:26:40 2006 Minero Aoki <aamine@loveruby.net>
1782
+
1783
+ * bin/bc-methods.rb: expand module functions to instance/singleton
1784
+ methods.
1785
+
1786
+ Wed Dec 6 19:32:23 2006 Minero Aoki <aamine@loveruby.net>
1787
+
1788
+ * bin/bc-methods.rb: new option --diff.
1789
+
1790
+ Wed Dec 6 19:32:04 2006 Minero Aoki <aamine@loveruby.net>
1791
+
1792
+ * tools/statrefm.rb: do not count working file.
1793
+
1794
+ Mon Dec 4 21:56:40 2006 Minero Aoki <aamine@loveruby.net>
1795
+
1796
+ * tools/update-database.rb (main): report Errno::ENOENT.
1797
+
1798
+ Sat Dec 2 21:40:48 2006 Minero Aoki <aamine@loveruby.net>
1799
+
1800
+ * tools/statrefm.rb: new file.
1801
+
1802
+ Sat Dec 2 20:41:05 2006 Minero Aoki <aamine@loveruby.net>
1803
+
1804
+ * bin/bitclust.rb (InitCommand#exec): warn if standard properties
1805
+ are not given.
1806
+
1807
+ * lib/bitclust/rrdparser.rb: produce better error message.
1808
+
1809
+ Sat Nov 18 18:55:23 2006 Minero Aoki <aamine@loveruby.net>
1810
+
1811
+ * lib/bitclust/rdcompiler.rb: surround an error message by <span>.
1812
+
1813
+ * theme/default/style.css: show error message by red, bold font.
1814
+
1815
+ Sat Nov 18 18:48:02 2006 Minero Aoki <aamine@loveruby.net>
1816
+
1817
+ * lib/bitclust/rdcompiler.rb (blacket_link): protect compile
1818
+ errors caused by wrong description.
1819
+
1820
+ Wed Nov 15 14:53:35 2006 Minero Aoki <aamine@loveruby.net>
1821
+
1822
+ * test/test_nameutils.rb (test_methodid2libid): should not decode
1823
+ library ID.
1824
+
1825
+ Wed Nov 15 14:51:01 2006 Minero Aoki <aamine@loveruby.net>
1826
+
1827
+ * bin/bitclust.rb: raise all exception on debugging.
1828
+
1829
+ * lib/bitclust/methodnamepattern.rb: supress Ruby 1.9 warning.
1830
+
1831
+ * lib/bitclust/methodid.rb (MethodID#match?): optimized.
1832
+
1833
+ * lib/bitclust/nameutils.rb: define name regexps.
1834
+
1835
+ * lib/bitclust/nameutils.rb (methodid2libid): should not decode
1836
+ library ID. [ruby-reference-manual:205]
1837
+
1838
+ * lib/bitclust/rrdparser.rb: use regexps defined in nameutils.rb.
1839
+
1840
+ * test: new directory.
1841
+
1842
+ * test/test_nameutils.rb: new test.
1843
+
1844
+ Wed Nov 15 12:20:45 2006 Minero Aoki <aamine@loveruby.net>
1845
+
1846
+ * lib/bitclust/nameutils.rb (libname?): should allow '-'.
1847
+ [ruby-reference-manual:205]
1848
+
1849
+ Tue Nov 14 21:45:41 2006 Minero Aoki <aamine@loveruby.net>
1850
+
1851
+ * bin/bitclust.rb: new subcommand "bitclust property".
1852
+
1853
+ * lib/bitclust/database.rb (transaction): save method index only
1854
+ when some entry is modified.
1855
+
1856
+ * lib/bitclust/database.rb (properties): should not include
1857
+ "source" property (it is automatically added).
1858
+
1859
+ Tue Nov 14 21:31:23 2006 Minero Aoki <aamine@loveruby.net>
1860
+
1861
+ * bin/bitclust.rb (UpdateCommand#exec): use
1862
+ Database#update_by_stdlibtree.
1863
+
1864
+ Tue Nov 14 00:53:14 2006 Minero Aoki <aamine@loveruby.net>
1865
+
1866
+ * tools/update-database.rb (main): better help message.
1867
+
1868
+ * tools/update-database.rb (send_message): fix typo.
1869
+
1870
+ Tue Nov 14 00:42:07 2006 Minero Aoki <aamine@loveruby.net>
1871
+
1872
+ * tools/update-database.rb: add $LOAD_PATH hack.
1873
+
1874
+ Tue Nov 14 00:36:05 2006 Minero Aoki <aamine@loveruby.net>
1875
+
1876
+ * lib/bitclust/database.rb: new method #update_by_stdlibtree.
1877
+
1878
+ Tue Nov 14 00:35:30 2006 Minero Aoki <aamine@loveruby.net>
1879
+
1880
+ * tools/update-database.rb: old dbdir may not exist.
1881
+
1882
+ * tools/update-database.rb: parents of dbdir may not exist.
1883
+
1884
+ Tue Nov 14 00:22:50 2006 Minero Aoki <aamine@loveruby.net>
1885
+
1886
+ * tools/update-database.rb: new file.
1887
+
1888
+ Mon Nov 13 21:03:12 2006 Minero Aoki <aamine@loveruby.net>
1889
+
1890
+ * bin/bitclust.rb: should rescue errors caused by manual
1891
+ reader/writer.
1892
+
1893
+ * bin/bc-list.rb: ditto.
1894
+
1895
+ * bin/bc-tohtml.rb: ditto.
1896
+
1897
+ * bin/bc-preproc.rb: ditto.
1898
+
1899
+ * lib/bitclust/exception.rb: new exception category WriterError.
1900
+
1901
+ * lib/bitclust/exception.rb: rename class: CompileError ->
1902
+ ParseError.
1903
+
1904
+ * lib/bitclust/rrdparser.rb: rename method: #compile_error ->
1905
+ #parse_error.
1906
+
1907
+ Mon Nov 13 17:31:28 2006 Minero Aoki <aamine@loveruby.net>
1908
+
1909
+ * config: introduce instance variables.
1910
+
1911
+ Mon Nov 13 17:06:53 2006 Minero Aoki <aamine@loveruby.net>
1912
+
1913
+ * lib/bitclust/nameutils.rb (split_method_id): library-ID may
1914
+ include '.'. [ruby-reference-manual:201]
1915
+
1916
+ Sat Nov 11 09:23:44 2006 Minero Aoki <aamine@loveruby.net>
1917
+
1918
+ * lib/bitclust/searcher.rb: could not lookup Net::SMTP.
1919
+ [ruby-reference-manual:197]
1920
+
1921
+ * lib/bitclust/searcher.rb: new option --class.
1922
+
1923
+ Tue Nov 7 00:19:56 2006 Minero Aoki <aamine@loveruby.net>
1924
+
1925
+ * lib/bitclust/rrdparser.rb: give better error message for wrong
1926
+ #@include.
1927
+
1928
+ * lib/bitclust/exception.rb: new execption class WrongInclude.
1929
+
1930
+ Tue Nov 7 00:08:12 2006 Minero Aoki <aamine@loveruby.net>
1931
+
1932
+ * bin/bc-tohtml.rb: check class for constant target.
1933
+ [ruby-reference-manual:188]
1934
+
1935
+ * lib/bitclust/methodid.rb: new method
1936
+ MethodSpec#singleton_method?.
1937
+
1938
+ * lib/bitclust/methodid.rb: new method
1939
+ MethodSpec#instance_method?.
1940
+
1941
+ * lib/bitclust/methodid.rb: new method
1942
+ MethodSpec#module_function?.
1943
+
1944
+ * lib/bitclust/methodid.rb: new method MethodSpec#method?.
1945
+
1946
+ * lib/bitclust/methodid.rb: new method MethodSpec#constant?.
1947
+
1948
+ * lib/bitclust/methodid.rb: new method
1949
+ MethodSpec#special_variable?.
1950
+
1951
+ * template/class: use block parameter |a,b| to expand [a,b].
1952
+
1953
+ Sat Nov 4 22:35:37 2006 Minero Aoki <aamine@loveruby.net>
1954
+
1955
+ * template/library-index: show topic path.
1956
+
1957
+ * template/library: ditto.
1958
+
1959
+ * template/class: ditto.
1960
+
1961
+ * template/method: ditto.
1962
+
1963
+ * template/method: show method kind (redefined/added).
1964
+
1965
+ * lib/bitclust/rdcompiler.rb: new method compile_method, to show
1966
+ kind.
1967
+
1968
+ * lib/bitclust/screen.rb: new method
1969
+ TemplateScreen#compile_method.
1970
+
1971
+ * lib/bitclust/screen.rb: new method
1972
+ TemplateScreen#library_index_url.
1973
+
1974
+ * lib/bitclust/screen.rb: new method URLMapper#library_index_url.
1975
+
1976
+ * theme/default/style.css: add kindinfo style.
1977
+
1978
+ * theme/default/style.css: give more margin for <h2>, <dd>.
1979
+
1980
+ Sat Nov 4 22:22:29 2006 Minero Aoki <aamine@loveruby.net>
1981
+
1982
+ * lib/bitclust/database.rb (load_extent): argument must be a
1983
+ String. [ruby-reference-manual:184]
1984
+
1985
+ Sat Nov 4 21:07:22 2006 Minero Aoki <aamine@loveruby.net>
1986
+
1987
+ * lib/bitclust/nameutils.rb: support case-insensitive file
1988
+ systems. [ruby-reference-manual:177]
1989
+
1990
+ * lib/bitclust/nameutils.rb: fsencode -> encodename_url,
1991
+ encodename_fs.
1992
+
1993
+ * lib/bitclust/nameutils.rb: fsdecode -> decodename_url,
1994
+ decodename_fs.
1995
+
1996
+ * lib/bitclust/nameutils.rb: new method encodeid.
1997
+
1998
+ * lib/bitclust/nameutils.rb: new method decodeid.
1999
+
2000
+ * lib/bitclust/screen.rb: follow changes.
2001
+
2002
+ * lib/bitclust/requesthandler.rb: ditto.
2003
+
2004
+ * lib/bitclust/database.rb: ditto.
2005
+
2006
+ * lib/bitclust/database.rb (realpath): encode ID before writing to
2007
+ file system.
2008
+
2009
+ * lib/bitclust/database.rb (entries): decode ID after reading from
2010
+ file system.
2011
+
2012
+ Sat Nov 4 20:33:19 2006 Minero Aoki <aamine@loveruby.net>
2013
+
2014
+ * bin/bc-methods.rb (defined_methods): refactoring: extract
2015
+ constant.
2016
+
2017
+ Sat Nov 4 20:31:46 2006 Minero Aoki <aamine@loveruby.net>
2018
+
2019
+ * bin/bc-rdoc.rb: show library ID for redefined/added methods.
2020
+ [ruby-reference-manual:176]
2021
+
2022
+ Sat Nov 4 20:31:01 2006 Minero Aoki <aamine@loveruby.net>
2023
+
2024
+ * lib/bitclust/entry.rb: fix typo. [ruby-reference-manual:178]
2025
+
2026
+ Sun Oct 29 00:17:11 2006 Minero Aoki <aamine@loveruby.net>
2027
+
2028
+ * bin/bc-classes.rb: fork lib/bitclust/crossrubyutils.rb; use it.
2029
+
2030
+ * bin/bc-methods.rb: ditto.
2031
+
2032
+ * bin/forall-ruby.rb: ditto.
2033
+
2034
+ * lib/bitclust/crossrubyutils.rb: new file.
2035
+
2036
+ Sat Oct 28 23:56:45 2006 Minero Aoki <aamine@loveruby.net>
2037
+
2038
+ * bin/bc-classes.rb: new option -v/--verbose.
2039
+
2040
+ * bin/bc-classes.rb: should not raise exception on empty table.
2041
+
2042
+ * bin/bc-classes.rb: add shebang line.
2043
+
2044
+ * bin/bc-classes.rb: report if library does not exist.
2045
+
2046
+ Sat Oct 28 01:12:41 2006 Minero Aoki <aamine@loveruby.net>
2047
+
2048
+ * lib/bitclust/rrdparser.rb: "=>" -> ">=".
2049
+ [ruby-reference-manual:161]
2050
+
2051
+ Sat Oct 28 00:57:43 2006 Minero Aoki <aamine@loveruby.net>
2052
+
2053
+ * lib/bitclust/searcher.rb (describe_method): show all found
2054
+ names.
2055
+
2056
+ Fri Oct 27 23:13:51 2006 Minero Aoki <aamine@loveruby.net>
2057
+
2058
+ * setup.rb: new file.
2059
+
2060
+ Fri Oct 27 22:54:35 2006 Minero Aoki <aamine@loveruby.net>
2061
+
2062
+ * lib/bitclust/searcher.rb: special variables must be searched by
2063
+ "$...".
2064
+
2065
+ * lib/bitclust/methodnamepattern.rb: support searching special
2066
+ variable.
2067
+
2068
+ * lib/bitclust/methodid.rb: new method MethodSpec#display_name.
2069
+
2070
+ Fri Oct 27 22:27:47 2006 Minero Aoki <aamine@loveruby.net>
2071
+
2072
+ * lib/bitclust/searcher.rb (show_methods): found name may be
2073
+ multiple.
2074
+
2075
+ * lib/bitclust/searcher.rb (describe_method): show all found
2076
+ names.
2077
+
2078
+ * lib/bitclust/searcher.rb (print_names): sort name list.
2079
+
2080
+ * lib/bitclust/methodnamepattern.rb (MethodNamePattern): use
2081
+ method name index.
2082
+
2083
+ * lib/bitclust/methodnamepattern.rb (SearchResult::Record):
2084
+ preserve found name and original name.
2085
+
2086
+ * lib/bitclust/methodid.rb: now #type and #method is optional.
2087
+
2088
+ * lib/bitclust/methodid.rb: new method MethodSpec#to_s.
2089
+
2090
+ * lib/bitclust/methodid.rb: new method MethodSpec#==.
2091
+
2092
+ * lib/bitclust/methodid.rb: new method MethodSpec#eql?.
2093
+
2094
+ * lib/bitclust/methodid.rb: new method MethodSpec#hash.
2095
+
2096
+ * lib/bitclust/database.rb: store method name index.
2097
+
2098
+ * lib/bitclust/database.rb: new method Database#methods.
2099
+
2100
+ * lib/bitclust/database.rb: new method Database#foreach_line
2101
+ (internal use only).
2102
+
2103
+ * lib/bitclust/database.rb (Database#entries): reject entry begin
2104
+ with '='.
2105
+
2106
+ * lib/bitclust/entry.rb: new method ClassEntry#get_methods.
2107
+
2108
+ * lib/bitclust/entry.rb: #smap -> #_smap, #imap -> #_imap, and so
2109
+ on.
2110
+
2111
+ * lib/bitclust/entry.rb: new method MethodEntry#spec.
2112
+
2113
+ * lib/bitclust/entry.rb: new method MethodEntry#spec_string.
2114
+
2115
+ Fri Oct 27 17:41:25 2006 Minero Aoki <aamine@loveruby.net>
2116
+
2117
+ * lib/bitclust/methodnamepattern.rb (select_classes): 'f' should
2118
+ not be expanded to ['fatal'].
2119
+
2120
+ * lib/bitclust/methodnamepattern.rb (Record): new method
2121
+ #inherited_method?.
2122
+
2123
+ * lib/bitclust/methodnamepattern.rb (Record): new method
2124
+ #origin_classes.
2125
+
2126
+ * lib/bitclust/searcher.rb: use Record's new methods.
2127
+
2128
+ * lib/bitclust/searcher.rb: ',' means instance method, not
2129
+ singleton.
2130
+
2131
+ Fri Oct 27 17:38:51 2006 Minero Aoki <aamine@loveruby.net>
2132
+
2133
+ * bin/refe.rb: rescue errors on option parsing.
2134
+
2135
+ Fri Oct 27 17:17:44 2006 Minero Aoki <aamine@loveruby.net>
2136
+
2137
+ * lib/bitclust/methodid.rb: fork methodnamepattern.rb.
2138
+
2139
+ * lib/bitclust/methodnamepattern.rb: new file.
2140
+
2141
+ * lib/bitclust/database.rb: SearchPattern -> MethodNamePattern.
2142
+
2143
+ * lib/bitclust/searcher.rb: ditto.
2144
+
2145
+ Mon Oct 23 21:35:22 2006 Minero Aoki <aamine@loveruby.net>
2146
+
2147
+ * bin/bitclust.rb: update --stdlibtree process tree by LIBRARIES
2148
+ file.
2149
+
2150
+ * lib/bitclust/database.rb: export Database#properties.
2151
+
2152
+ Mon Oct 23 20:13:04 2006 Minero Aoki <aamine@loveruby.net>
2153
+
2154
+ * bin/forall-ruby.rb: new file.
2155
+
2156
+ Mon Oct 23 19:45:25 2006 Minero Aoki <aamine@loveruby.net>
2157
+
2158
+ * bin/bc-rdoc.rb: now have subcommands instead of options.
2159
+
2160
+ * bin/bc-rdoc.rb: --list option -> list subcommand.
2161
+
2162
+ * bin/bc-rdoc.rb: --diff option -> diff subcommand.
2163
+
2164
+ * bin/bc-rdoc.rb: new subcommand history.
2165
+
2166
+ Mon Oct 23 06:25:33 2006 Minero Aoki <aamine@loveruby.net>
2167
+
2168
+ * bin/bc-rdoc.rb: #list did not return right result.
2169
+
2170
+ Mon Oct 23 06:20:48 2006 Minero Aoki <aamine@loveruby.net>
2171
+
2172
+ * bin/bitclust.rb: Win32 system does not have SIGPIPE.
2173
+
2174
+ * bin/bc-rdoc.rb: ditto.
2175
+
2176
+ * lib/bitclust/entry.rb: fix NoMethodError.
2177
+
2178
+ Sat Oct 21 04:36:41 2006 Minero Aoki <aamine@loveruby.net>
2179
+
2180
+ * bin/bitclust.rb (ListCommand): "bitclust list --library" output
2181
+ was not sorted.
2182
+
2183
+ * bin/bitclust.rb (LookupCommand): Ruby 1.9 does not have
2184
+ String#map.
2185
+
2186
+ * bin/bitclust.rb: print subcommand's help message when
2187
+ subcommands failed.
2188
+
2189
+ * lib/bitclust/searcher.rb: provide Searcher#parser for help
2190
+ message.
2191
+
2192
+ * lib/bitclust.rb: require 'bitclust/compat'.
2193
+
2194
+ * lib/bitclust/compat.rb: provide String#lines.
2195
+
2196
+ Sat Oct 21 04:22:20 2006 Minero Aoki <aamine@loveruby.net>
2197
+
2198
+ * lib/bitclust/searcher.rb: search class if pattern begins with
2199
+ capital letter.
2200
+
2201
+ * lib/bitclust/searcher.rb: search class if pattern begins with
2202
+ capital letter.
2203
+
2204
+ * lib/bitclust/database.rb: Database#search_methods now returns a
2205
+ SearchResult object.
2206
+
2207
+ * lib/bitclust/methodid.rb: new method
2208
+ SearchPattern#search_methods.
2209
+
2210
+ * lib/bitclust/database.rb: fork methodid.rb and entry.rb.
2211
+
2212
+ * lib/bitclust/methodid.rb: new file.
2213
+
2214
+ * lib/bitclust/methodid.rb: rename class: MethodSpec -> MethodID.
2215
+
2216
+ * lib/bitclust/rrdparser.rb: ditto.
2217
+
2218
+ * lib/bitclust/methodid.rb: new class MethodSpec.
2219
+
2220
+ * bin/bitclust.rb: use it.
2221
+
2222
+ * bin/bc-tohtml.rb: ditto.
2223
+
2224
+ * lib/bitclust/entry.rb: new file.
2225
+
2226
+ * lib/bitclust/entry.rb: provide *Entry#<=>.
2227
+
2228
+ * lib/bitclust/requesthandler.rb: now *Entry has <=>, simply use
2229
+ sort.
2230
+
2231
+ * template/library: ditto.
2232
+
2233
+ * template/library-index: ditto.
2234
+
2235
+ * template/class-index: ditto.
2236
+
2237
+ * bin/bitclust.rb: trap(..., 'EXIT') causes success-exit, use
2238
+ "exit 1" explicitly.
2239
+
2240
+ * bin/refe.rb: ditto.
2241
+
2242
+ * lib/bitclust/compat.rb: provide Object#__send.
2243
+
2244
+ * lib/bitclust/compat.rb: provide Object#funcall.
2245
+
2246
+ Sat Oct 21 04:11:20 2006 Minero Aoki <aamine@loveruby.net>
2247
+
2248
+ * lib/bitclust/nameutils.rb: use '=' for class ID escaping,
2249
+ instead of '__'.
2250
+
2251
+ Fri Oct 20 21:26:33 2006 Minero Aoki <aamine@loveruby.net>
2252
+
2253
+ * bin/refe.rb: new file.
2254
+
2255
+ * bin/bitclust.rb: new subcommand `search'.
2256
+
2257
+ * lib/bitclust.rb: require 'bitclust/searcher'.
2258
+
2259
+ * lib/bitclust/searcher.rb: new file.
2260
+
2261
+ * lib/bitclust/database.rb: new method Database.datadir?.
2262
+
2263
+ * lib/bitclust/database.rb: new method Database#search_method.
2264
+
2265
+ * lib/bitclust/database.rb: new method SearchPattern#select_class.
2266
+
2267
+ * lib/bitclust/database.rb: new method
2268
+ SearchPattern#select_method.
2269
+
2270
+ * lib/bitclust/database.rb: new method ClassEntry#name?.
2271
+
2272
+ * lib/bitclust/database.rb: new method ClassEntry#name_match?.
2273
+
2274
+ * lib/bitclust/database.rb: new method ClassEntry#label.
2275
+
2276
+ * lib/bitclust/database.rb: new method ClassEntry#labels.
2277
+
2278
+ * lib/bitclust/database.rb: rename method: MethodEntry#named? ->
2279
+ name?.
2280
+
2281
+ * lib/bitclust/database.rb: new method MethodEntry#name_match?.
2282
+
2283
+ * lib/bitclust/database.rb: new method MethodEntry#labels.
2284
+
2285
+ * lib/bitclust/database.rb: provide Object#__send if not exist.
2286
+
2287
+ * lib/bitclust/exception.rb: new exception InvalidDatabase.
2288
+
2289
+ Fri Oct 20 21:22:56 2006 Minero Aoki <aamine@loveruby.net>
2290
+
2291
+ * lib/bitclust/rrdparser.rb: suppress warning on -w.
2292
+
2293
+ Thu Oct 19 04:41:21 2006 Minero Aoki <aamine@loveruby.net>
2294
+
2295
+ * lib/bitclust/database.rb (ClassEntry#singleton_methods): returns
2296
+ public/private methods, instead of public.
2297
+
2298
+ * lib/bitclust/database.rb (ClassEntry#instance_methods): ditto.
2299
+
2300
+ Thu Oct 19 03:42:53 2006 Minero Aoki <aamine@loveruby.net>
2301
+
2302
+ * bin/bc-rdoc.rb (ri_lookup_class): support nested class.
2303
+
2304
+ Thu Oct 19 02:32:58 2006 Minero Aoki <aamine@loveruby.net>
2305
+
2306
+ * bin/bc-rdoc.rb: new option --diff (and -d/--database).
2307
+
2308
+ * lib/bitclust/database.rb: new method
2309
+ ClassEntry#singleton_method?.
2310
+
2311
+ * lib/bitclust/database.rb: new method ClassEntry#instance_method?
2312
+
2313
+ * lib/bitclust/database.rb: new method ClassEntry#constant?
2314
+
2315
+ * lib/bitclust/database.rb: new method
2316
+ ClassEntry#special_variable?
2317
+
2318
+ * lib/bitclust/database.rb: ClassEntry#singleton_method?,
2319
+ #instance_method, #constant?, #special_variable?, #search_method,
2320
+ #search_methods, #fetch_method have optional 2nd argument,
2321
+ inherit.
2322
+
2323
+ * lib/bitclust/database.rb: new method MethodEntry#named?.
2324
+
2325
+ * lib/bitclust/rrdparser.rb: "<=>" method did not detected.
2326
+
2327
+ * lib/bitclust/rrdparser.rb: does not provide superclass for
2328
+ Object.
2329
+
2330
+ Wed Oct 18 23:53:52 2006 Minero Aoki <aamine@loveruby.net>
2331
+
2332
+ * bin/bc-rdoc.rb: ignore EPIPE.
2333
+
2334
+ Wed Oct 18 23:50:14 2006 Minero Aoki <aamine@loveruby.net>
2335
+
2336
+ * bin/bc-rdoc.rb: add shebang line.
2337
+
2338
+ Wed Oct 18 23:49:00 2006 Minero Aoki <aamine@loveruby.net>
2339
+
2340
+ * bin/bc-rdoc.rb: new file.
2341
+
2342
+ Mon Oct 16 02:24:10 2006 Minero Aoki <aamine@loveruby.net>
2343
+
2344
+ * lib/bitclust/nameutils.rb (classname?): allow 'fatal'
2345
+
2346
+ Sat Oct 14 01:50:12 2006 Minero Aoki <aamine@loveruby.net>
2347
+
2348
+ * lib/bitclust/requesthandler.rb: allow no class/library.
2349
+
2350
+ * lib/bitclust/requesthandler.rb: show class index for path
2351
+ "/class/".
2352
+
2353
+ * lib/bitclust/database.rb: new method Database#fetch_library_id.
2354
+
2355
+ * lib/bitclust/database.rb: new method Database#fetch_class_id.
2356
+
2357
+ * lib/bitclust/nameutils.rb: new method methodname?.
2358
+
2359
+ * lib/bitclust/nameutils.rb: new method typename?.
2360
+
2361
+ * lib/bitclust/nameutils.rb: new method typechar?.
2362
+
2363
+ * lib/bitclust/nameutils.rb: new method typemark?.
2364
+
2365
+ Sat Oct 14 01:30:38 2006 Minero Aoki <aamine@loveruby.net>
2366
+
2367
+ * lib/bitclust/rdcompiler.rb: support [[url:...]] syntax.
2368
+
2369
+ Sat Oct 14 01:08:30 2006 Minero Aoki <aamine@loveruby.net>
2370
+
2371
+ * lib/bitclust/requesthandler.rb: check method name strictly.
2372
+
2373
+ * lib/bitclust/requesthandler.rb: check class name strictly.
2374
+
2375
+ * lib/bitclust/requesthandler.rb: check library name strictly.
2376
+
2377
+ * lib/bitclust/nameutils.rb: new method #libname?.
2378
+
2379
+ * lib/bitclust/nameutils.rb: rename method: seems_class_name? ->
2380
+ classname?.
2381
+
2382
+ * lib/bitclust/nameutils.rb: rename method: seems_method_spec? ->
2383
+ method_spec?.
2384
+
2385
+ * lib/bitclust/exception.rb: rename class: KeyError -> InvalidKey.
2386
+
2387
+ * bin/bc-tohtml.rb: ditto.
2388
+
2389
+ Sat Oct 14 00:13:22 2006 Minero Aoki <aamine@loveruby.net>
2390
+
2391
+ * lib/bitclust/rrdparser.rb (Preprocessor): new directive #@todo.
2392
+
2393
+ Fri Oct 13 23:48:08 2006 Minero Aoki <aamine@loveruby.net>
2394
+
2395
+ * bin/bitclust.rb: implement "bitclust lookup".
2396
+
2397
+ * lib/bitclust/database.rb: remove MethodSpec.parse.
2398
+
2399
+ * lib/bitclust/database.rb: new method SearchPattern.parse_spec.
2400
+
2401
+ * lib/bitclust/database.rb (ClassEntry#special_variables): fix
2402
+ typo.
2403
+
2404
+ * lib/bitclust/textutils.rb: all methods are module function.
2405
+
2406
+ * bin/bc-tohtml.rb: follow change.
2407
+
2408
+ Fri Oct 13 21:11:23 2006 Minero Aoki <aamine@loveruby.net>
2409
+
2410
+ * lib/bitclust/rdcompiler.rb: new link syntax [[man:tr(1)]],
2411
+ [[RFC:2822]], [[ruby-list:12345]].
2412
+
2413
+ Fri Oct 13 20:39:40 2006 Minero Aoki <aamine@loveruby.net>
2414
+
2415
+ * bin/bitclust.rb: method chain is better.
2416
+
2417
+ Fri Oct 13 20:38:04 2006 Minero Aoki <aamine@loveruby.net>
2418
+
2419
+ * lib/bitclust/database.rb: _hashize_properties ->
2420
+ _get_properties.
2421
+
2422
+ Fri Oct 13 20:28:49 2006 Minero Aoki <aamine@loveruby.net>
2423
+
2424
+ * bin/bc-tohtml.rb: implement --target command line option.
2425
+
2426
+ * lib/bitclust/database.rb: new method LibraryEntry#fetch_class.
2427
+
2428
+ * lib/bitclust/database.rb: new method LibraryEntry#fetch_method.
2429
+
2430
+ * lib/bitclust/database.rb: new method MethodSpec.parse.
2431
+
2432
+ * lib/bitclust/nameutils.rb: new method seems_class_name?.
2433
+
2434
+ * lib/bitclust/nameutils.rb: new method seems_method_spec?.
2435
+
2436
+ * lib/bitclust/nameutils.rb: all methods are module function.
2437
+
2438
+ * lib/bitclust/exception.rb: new exception KeyError.
2439
+
2440
+ * template/class: show module functions.
2441
+
2442
+ * lib/bitclust/database.rb (ClassEntry#partitioned_entries):
2443
+ should handle module functions.
2444
+
2445
+ * lib/bitclust/database.rb (Database#get_library): argument is a
2446
+ library name, not an ID.
2447
+
2448
+ * lib/bitclust/database.rb (Database#get_class): argument is a
2449
+ class name, not an ID.
2450
+
2451
+ * lib/bitclust/database.rb (Entry): we must check @loaded to check
2452
+ properties are loaded, should not see property ivar (e.g.
2453
+ @superclass) because @superclass may be nil.
2454
+
2455
+ Fri Oct 13 20:21:09 2006 Minero Aoki <aamine@loveruby.net>
2456
+
2457
+ * lib/bitclust/rrdparser.rb (RRDParser.libname): .off extension is
2458
+ optional.
2459
+
2460
+ Fri Oct 13 20:18:08 2006 Minero Aoki <aamine@loveruby.net>
2461
+
2462
+ * bin/bc-list.rb: show method details.
2463
+
2464
+ Fri Oct 13 20:13:15 2006 Minero Aoki <aamine@loveruby.net>
2465
+
2466
+ * bin/bc-convert.rb: ignore bitclust preprocessor directives.
2467
+
2468
+ Sat Oct 7 04:13:40 2006 Minero Aoki <aamine@loveruby.net>
2469
+
2470
+ * lib/bitclust/rrdparser.rb (Preprocessor): last_if must be an
2471
+ ivar, because #@if/#@since block is consist of multiple lines
2472
+ (requires multiple next_line call).
2473
+
2474
+ Wed Sep 20 23:21:09 2006 Minero Aoki <aamine@loveruby.net>
2475
+
2476
+ * lib/bitclust/rrdparser.rb (Preprocessor): change syntax: #@from
2477
+ -> #@since.
2478
+
2479
+ Wed Sep 20 02:27:35 2006 Minero Aoki <aamine@loveruby.net>
2480
+
2481
+ * lib/bitclust/rrdparser.rb: last change was incomplete.
2482
+
2483
+ Wed Sep 20 02:18:29 2006 Minero Aoki <aamine@loveruby.net>
2484
+
2485
+ * lib/bitclust/screen.rb: URLMapper accepts library/class/method
2486
+ name, not ID.
2487
+
2488
+ * lib/bitclust/requesthandler.rb: A SearchPattern should include
2489
+ method name, not ID.
2490
+
2491
+ * lib/bitclust/rdcompiler.rb: use method spec to link to method
2492
+ page.
2493
+
2494
+ * lib/bitclust/database.rb (MethodEntry): extract @type, @library,
2495
+ @klass from method ID instead of filesystem.
2496
+
2497
+ * lib/bitclust/htmlutils.rb: causes least file loading.
2498
+
2499
+ * lib/bitclust/nameutils.rb: add method ID/spec handling methods.
2500
+
2501
+ * lib/bitclust/nameutils.rb (fsencode, fsdecode): use '=' instead
2502
+ of '%'.
2503
+
2504
+ * template/library: method_link_short -> link_to_method.
2505
+
2506
+ * template/class-index: ditto.
2507
+
2508
+ * template/method: show class and visibility.
2509
+
2510
+ Wed Sep 20 02:03:25 2006 Minero Aoki <aamine@loveruby.net>
2511
+
2512
+ * bin/bc-preproc.rb: new command.
2513
+
2514
+ * lib/bitclust/rrdparser.rb (Preprocessor): new syntax "#@from".
2515
+
2516
+ Mon Sep 18 05:10:31 2006 Minero Aoki <aamine@loveruby.net>
2517
+
2518
+ * lib/bitclust/database.rb: new method Entry#synopsis_source.
2519
+
2520
+ * lib/bitclust/requesthandler.rb: sort entries before show.
2521
+
2522
+ * lib/bitclust/rdcompiler.rb: surround method signature with
2523
+ <code>.
2524
+
2525
+ * lib/bitclust/screen.rb: entity -> entry.
2526
+
2527
+ * template/library-index: link to libraries, classes.
2528
+
2529
+ * template/library: show classes/modules, then classes/modules
2530
+ with methods.
2531
+
2532
+ * template/class-index: link to classes.
2533
+
2534
+ * template/class: merge class-body.
2535
+
2536
+ * template/class-body: merged in to template/class.
2537
+
2538
+ * template/method: link to source library.
2539
+
2540
+ * theme/default/style.css: use same color for visited link.
2541
+
2542
+ Mon Sep 18 04:21:05 2006 Minero Aoki <aamine@loveruby.net>
2543
+
2544
+ * lib/bitclust/database.rb: new method Database#sorted_libraries,
2545
+ sorted_classes.
2546
+
2547
+ * lib/bitclust/database.rb: new method
2548
+ LibraryEntry#sorted_classes, sorted_methods.
2549
+
2550
+ * lib/bitclust/database.rb: new method ClassEntry#sorted_entries.
2551
+
2552
+ * lib/bitclust/database.rb: new method
2553
+ ClassEntry#partitioned_entries.
2554
+
2555
+ * lib/bitclust/database.rb: new method
2556
+ ClassEntry#(public_|private_)?(singleton_|instance_)?methods.
2557
+
2558
+ * lib/bitclust/database.rb: new method ClassEntry#constants.
2559
+
2560
+ * lib/bitclust/database.rb: new method
2561
+ ClassEntry#special_variables.
2562
+
2563
+ * lib/bitclust/database.rb: new method
2564
+ MethodEntry#(public_|private_)?(singleton_|instance_)?method\?.
2565
+
2566
+ * lib/bitclust/database.rb: new method MethodEntry#public?,
2567
+ protected?, private?, really_public?.
2568
+
2569
+ * lib/bitclust/database.rb: new method MethodEntry#fetch_method.
2570
+
2571
+ * lib/bitclust/screen.rb: new methods URLMapper#library_url,
2572
+ class_url, method_url.
2573
+
2574
+ * lib/bitclust/rdcompiler.rb: compile links (still incomplete).
2575
+
2576
+ * lib/bitclust/nameutils.rb: new method typemark2char.
2577
+
2578
+ * lib/bitclust/textutils.rb: fork htmlutils.rb.
2579
+
2580
+ * lib/bitclust/htmlutils.rb: new file.
2581
+
2582
+ Mon Sep 18 01:04:51 2006 Minero Aoki <aamine@loveruby.net>
2583
+
2584
+ * lib/bitclust/database.rb: rename: entity -> entry.
2585
+
2586
+ Mon Sep 18 01:02:20 2006 Minero Aoki <aamine@loveruby.net>
2587
+
2588
+ * lib/bitclust/rdcompiler.rb: follow method name changes.
2589
+
2590
+ * lib/bitclust/nameutils.rb: new method methodid2mname, to avoid
2591
+ loading @names in MethodEntry#inspect.
2592
+
2593
+ * lib/bitclust/database.rb: load properties before write.
2594
+
2595
+ * lib/bitclust/rrdparser.rb: reopen/redefine block should not
2596
+ include class documents or `include' statements.
2597
+
2598
+ * lib/bitclust/rrdparser.rb: Signature#klass is a String.
2599
+
2600
+ Sun Sep 17 23:55:58 2006 Minero Aoki <aamine@loveruby.net>
2601
+
2602
+ * lib/bitclust/database.rb: change database physical structure.
2603
+
2604
+ * lib/bitclust/nameutils.rb (libid2name): fix unexpected infinite
2605
+ recursion.
2606
+
2607
+ Sun Sep 17 21:51:36 2006 Minero Aoki <aamine@loveruby.net>
2608
+
2609
+ * bin/bitclust.rb: forgot to change ivar @root -> lvar root.
2610
+
2611
+ * lib/bitclust/database.rb: encode library ID.
2612
+
2613
+ * lib/bitclust/database.rb: encode class ID.
2614
+
2615
+ * lib/bitclust/nameutils.rb: new method libname2id.
2616
+
2617
+ * lib/bitclust/nameutils.rb: new method libid2name.
2618
+
2619
+ * lib/bitclust/nameutils.rb: new method classname2id.
2620
+
2621
+ * lib/bitclust/nameutils.rb: new method classid2name.
2622
+
2623
+ Sun Sep 17 21:37:01 2006 Minero Aoki <aamine@loveruby.net>
2624
+
2625
+ * lib/bitclust/rrdparser.rb: library.requires is a [LibraryEntry],
2626
+ not a [String].
2627
+
2628
+ Sun Sep 17 21:21:34 2006 Minero Aoki <aamine@loveruby.net>
2629
+
2630
+ * bin/bitclust.rb: new subcommand "bitclust list".
2631
+
2632
+ * bin/bitclust.rb: new option "bitclust update --stdlibtree=PATH".
2633
+
2634
+ * lib/bitclust/rrdparser.rb: allow level>3 headline for class
2635
+ document.
2636
+
2637
+ Sun Sep 17 20:32:48 2006 Minero Aoki <aamine@loveruby.net>
2638
+
2639
+ * bin/bitclust.rb: new subcommand "bitclust list".
2640
+
2641
+ Sun Sep 17 20:04:57 2006 Minero Aoki <aamine@loveruby.net>
2642
+
2643
+ * lib/bitclust/rrdparser.rb: support special variables.
2644
+
2645
+ * lib/bitclust/rrdparser.rb: better error message.
2646
+
2647
+ Sun Sep 17 18:24:29 2006 Minero Aoki <aamine@loveruby.net>
2648
+
2649
+ * bin/bc-list.rb: message header should be program name, not file
2650
+ name.
2651
+
2652
+ * lib/bitclust/database.rb: new method Database#methodnames.
2653
+
2654
+ * lib/bitclust/rrdparser.rb: @kind value changed.
2655
+
2656
+ * lib/bitclust/rrdparser.rb: support "`" method.
2657
+
2658
+ Sun Sep 17 17:30:35 2006 Minero Aoki <aamine@loveruby.net>
2659
+
2660
+ * bin/bc-convert.rb: keep ((<ruby 1.* feature>)) in method
2661
+ signature line.
2662
+
2663
+ Sun Sep 17 17:17:05 2006 Minero Aoki <aamine@loveruby.net>
2664
+
2665
+ * lib/bitclust/rrdparser.rb: fix typo. Thanks: sheepman
2666
+ [ruby-reference-manual:85]
2667
+
2668
+ * bin/bc-list.rb: fix typo.
2669
+
2670
+ Fri Sep 15 23:42:53 2006 Minero Aoki <aamine@loveruby.net>
2671
+
2672
+ * bin/bc-list.rb: new option -c,--check-only.
2673
+
2674
+ * lib/bitclust/rrdparser.rb: fix small bug.
2675
+
2676
+ Fri Sep 15 23:31:57 2006 Minero Aoki <aamine@loveruby.net>
2677
+
2678
+ * bin/bitclust.rb: implement `init' subcommand.
2679
+
2680
+ * bin/bitclust.rb: implement `update' subcommand.
2681
+
2682
+ * bin/bc-list.rb: more friendly output.
2683
+
2684
+ * bin/bc-tohtml.rb: use new utility method parse_stdlib_file.
2685
+
2686
+ * lib/bitclust/screen.rb: entity.encoding might return nil (using
2687
+ dummy database).
2688
+
2689
+ * lib/bitclust/rdcompiler.rb: toplevel may not be a method list.
2690
+
2691
+ * lib/bitclust/rdcompiler.rb: support dlist (incomplete).
2692
+
2693
+ * lib/bitclust/nameutils.rb: new file.
2694
+
2695
+ * lib/bitclust/compat.rb: new file.
2696
+
2697
+ * lib/bitclust/database.rb: implement lazy loading.
2698
+
2699
+ * lib/bitclust/database.rb: implement save function.
2700
+
2701
+ * lib/bitclust/database.rb: rename class: *Description -> *Entry.
2702
+
2703
+ * lib/bitclust/database.rb: new class MethodSpec.
2704
+
2705
+ * lib/bitclust/database.rb: new class SearchPattern.
2706
+
2707
+ * lib/bitclust/database.rb: more and more changes/fixes.
2708
+
2709
+ * lib/bitclust/rrdparser.rb: new util method
2710
+ RRDParser.parse_stdlib_file.
2711
+
2712
+ * lib/bitclust/rrdparser.rb: introduce new class Context.
2713
+
2714
+ * lib/bitclust/requesthandler.rb: follow database interaface
2715
+ change.
2716
+
2717
+ * lib/bitclust/exception.rb: introduce new exceptions.
2718
+
2719
+ * template/class-body: sort entries.
2720
+
2721
+ * template/library: shorter output.
2722
+
2723
+ * template/library-index: show class names.
2724
+
2725
+ * template/method: better output.
2726
+
2727
+ * template/method-body: removed.
2728
+
2729
+ Fri Sep 15 18:31:57 2006 Minero Aoki <aamine@loveruby.net>
2730
+
2731
+ * bin/bc-convert.rb: "self + other" wrongly converted to "+(o)".
2732
+
2733
+ Fri Sep 15 02:10:31 2006 Minero Aoki <aamine@loveruby.net>
2734
+
2735
+ * lib/bitclust/database.rb: temporary fix (allow private methods).
2736
+
2737
+ Thu Sep 14 17:25:20 2006 Minero Aoki <aamine@loveruby.net>
2738
+
2739
+ * lib/bitclust/screen.rb: new class LibraryIndexScreen.
2740
+
2741
+ * lib/bitclust/screen.rb: new class ClassIndexScreen.
2742
+
2743
+ * lib/bitclust/screen.rb: merge urlmapper.rb.
2744
+
2745
+ * lib/bitclust/urlmapper.rb: removed (merged in to screen.rb).
2746
+
2747
+ * lib/bitclust/interface.rb: fix typo.
2748
+
2749
+ * lib/bitclust/requesthandler.rb
2750
+
2751
+ * template/library-index: new file.
2752
+
2753
+ * template/class-index: new file.
2754
+
2755
+ Thu Sep 14 16:41:33 2006 Minero Aoki <aamine@loveruby.net>
2756
+
2757
+ * lib/bitclust/rdcompiler.rb: commit miss.
2758
+ (forgot to add receiver.)
2759
+
2760
+ Thu Sep 14 16:40:44 2006 Minero Aoki <aamine@loveruby.net>
2761
+
2762
+ * bin/bitclust.rb: provide more detailed help.
2763
+
2764
+ Thu Sep 14 16:40:19 2006 Minero Aoki <aamine@loveruby.net>
2765
+
2766
+ * bin/bc-tohtml.rb: follow database method change.
2767
+
2768
+ Thu Sep 14 16:39:56 2006 Minero Aoki <aamine@loveruby.net>
2769
+
2770
+ * lib/bitclust/rdcompiler.rb: forgot to add receiver.
2771
+
2772
+ Thu Sep 14 01:11:22 2006 Minero Aoki <aamine@loveruby.net>
2773
+
2774
+ * bin/bitclust.rb: new file.
2775
+
2776
+ * lib/bitclust/database.rb: new method #transaction.
2777
+
2778
+ * lib/bitclust/database.rb: new method #update_by_file.
2779
+
2780
+ * lib/bitclust/rrdparser.rb: encapsulate preprocessor.
2781
+
2782
+ * config: new file.
2783
+
2784
+ Thu Sep 14 01:06:37 2006 Minero Aoki <aamine@loveruby.net>
2785
+
2786
+ * bin/bc-list.rb: parse command line options.
2787
+
2788
+ Thu Sep 14 01:01:15 2006 Minero Aoki <aamine@loveruby.net>
2789
+
2790
+ * bin/bc-convert.rb: ((<tr(1)|manual page>)) -> [[man:tr(1)]]
2791
+ conversion was failed. [ruby-reference-manual:61]
2792
+
2793
+ Wed Sep 13 23:55:10 2006 Minero Aoki <aamine@loveruby.net>
2794
+
2795
+ * lib/bitclust/rrdparser.rb: support extend for objects.
2796
+ [ruby-reference-manual:59]
2797
+
2798
+ * lib/bitclust/database.rb (ClassDescription): store extended
2799
+ modules.
2800
+
2801
+ Wed Sep 13 22:38:57 2006 Minero Aoki <aamine@loveruby.net>
2802
+
2803
+ * view.cgi: new file.
2804
+
2805
+ * lib/bitclust.rb: remove bitclust/interface, it is required only
2806
+ from entry point
2807
+
2808
+ Wed Sep 13 22:27:38 2006 Minero Aoki <aamine@loveruby.net>
2809
+
2810
+ * bin/bc-tohtml.rb: new file.
2811
+
2812
+ * lib/bitclust/interface.rb: new file.
2813
+
2814
+ * lib/bitclust/requesthandler.rb: new file.
2815
+
2816
+ * lib/bitclust/screen.rb: new file.
2817
+
2818
+ * lib/bitclust/urlmapper.rb: new file.
2819
+
2820
+ * lib/bitclust/rdcompiler.rb: new file.
2821
+
2822
+ * lib/bitclust/textutils.rb: new file.
2823
+
2824
+ * lib/bitclust.rb: add above files.
2825
+
2826
+ * lib/bitclust/database.rb: new class Entity.
2827
+
2828
+ * lib/bitclust/database.rb: new method Entity#type_id.
2829
+
2830
+ * lib/bitclust/database.rb: new method Entity#encoding.
2831
+
2832
+ * lib/bitclust/database.rb: all entities should hold a Database.
2833
+
2834
+ * lib/bitclust/rrdparser.rb: ditto.
2835
+
2836
+ * lib/bitclust/exception.rb: new exception RequestError.
2837
+
2838
+ * template/method: new file.
2839
+
2840
+ * template/class-body: new file.
2841
+
2842
+ * template/library: new file.
2843
+
2844
+ * template/class: new file.
2845
+
2846
+ * template/method-body: new file.
2847
+
2848
+ * theme/default: new theme.
2849
+
2850
+ Wed Sep 13 17:34:35 2006 Minero Aoki <aamine@loveruby.net>
2851
+
2852
+ * bin/bc-list.rb: should use RRDParser#parse_file.
2853
+
2854
+ * lib/bitclust/rrdparser.rb: new method RRDParser#parse_file.
2855
+
2856
+ Wed Sep 13 17:33:08 2006 Minero Aoki <aamine@loveruby.net>
2857
+
2858
+ * bin/bc-list.rb: should set $LOAD_PATH automatically.
2859
+
2860
+ Wed Sep 13 04:28:49 2006 Minero Aoki <aamine@loveruby.net>
2861
+
2862
+ * bin/bc-convert.rb: new option --inplace.
2863
+
2864
+ * bin/bc-convert.rb: new option --diff.
2865
+
2866
+ Wed Sep 13 03:41:09 2006 Minero Aoki <aamine@loveruby.net>
2867
+
2868
+ * bin/bc-convert.rb: convert links.
2869
+
2870
+ * bin/bc-convert.rb: convert comments.
2871
+
2872
+ Wed Sep 13 02:17:36 2006 Minero Aoki <aamine@loveruby.net>
2873
+
2874
+ * lib/bitclust/rrdparser.rb (Preprocessor): support #@include.
2875
+
2876
+ Wed Sep 13 00:54:34 2006 Minero Aoki <aamine@loveruby.net>
2877
+
2878
+ * bin/bc-convert.rb: new file.
2879
+
2880
+ Wed Sep 13 00:12:09 2006 Minero Aoki <aamine@loveruby.net>
2881
+
2882
+ * bin/bc-list.rb: debug.
2883
+
2884
+ * lib/bitclust/database.rb (MethodDescription#inspect): show entry
2885
+ type.
2886
+
2887
+ Tue Sep 12 23:48:04 2006 Minero Aoki <aamine@loveruby.net>
2888
+
2889
+ * bin/bc-list.rb: new file.
2890
+
2891
+ Wed Aug 30 18:56:29 2006 Minero Aoki <aamine@loveruby.net>
2892
+
2893
+ * README: new file.
2894
+
2895
+ * lib/bitclust/database.rb: new file.
2896
+
2897
+ * lib/bitclust/exception.rb: new file.
2898
+
2899
+ * lib/bitclust/rrdparser.rb: new file.
2900
+
2901
+ * lib/bitclust/lineinput.rb: new file.
2902
+
2903
+ Wed Aug 30 08:14:26 2006 Minero Aoki <aamine@loveruby.net>
2904
+
2905
+ * start project.
2906
+
2907
+