tmtms-review 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (107) hide show
  1. checksums.yaml +7 -0
  2. data/.travis.yml +9 -0
  3. data/COPYING +515 -0
  4. data/ChangeLog +2083 -0
  5. data/README.rdoc +50 -0
  6. data/Rakefile +56 -0
  7. data/VERSION +1 -0
  8. data/bin/review-check +178 -0
  9. data/bin/review-checkdep +63 -0
  10. data/bin/review-compile +205 -0
  11. data/bin/review-epubmaker +661 -0
  12. data/bin/review-epubmaker-ng +176 -0
  13. data/bin/review-index +118 -0
  14. data/bin/review-pdfmaker +208 -0
  15. data/bin/review-preproc +142 -0
  16. data/bin/review-validate +51 -0
  17. data/bin/review-vol +102 -0
  18. data/debian/README.Debian +12 -0
  19. data/debian/README.source +5 -0
  20. data/debian/changelog +5 -0
  21. data/debian/compat +1 -0
  22. data/debian/control +22 -0
  23. data/debian/copyright +62 -0
  24. data/debian/docs +6 -0
  25. data/debian/manpage.1.ex +59 -0
  26. data/debian/patches/path.diff +91 -0
  27. data/debian/patches/series +1 -0
  28. data/debian/review.install +13 -0
  29. data/debian/review.links +4 -0
  30. data/debian/rules +13 -0
  31. data/debian/source/format +1 -0
  32. data/doc/format.rdoc +582 -0
  33. data/doc/format_idg.rdoc +180 -0
  34. data/doc/libepubmaker/sample.yaml +90 -0
  35. data/doc/quickstart.rdoc +188 -0
  36. data/doc/ruby-uuid/README +11 -0
  37. data/doc/ruby-uuid/README.ja +34 -0
  38. data/doc/sample.css +108 -0
  39. data/doc/sample.yaml +62 -0
  40. data/lib/epubmaker.rb +28 -0
  41. data/lib/epubmaker/content.rb +82 -0
  42. data/lib/epubmaker/epubv2.rb +418 -0
  43. data/lib/epubmaker/epubv3.rb +249 -0
  44. data/lib/epubmaker/producer.rb +204 -0
  45. data/lib/epubmaker/resource.rb +66 -0
  46. data/lib/lineinput.rb +155 -0
  47. data/lib/review.rb +3 -0
  48. data/lib/review/book.rb +46 -0
  49. data/lib/review/book/base.rb +235 -0
  50. data/lib/review/book/chapter.rb +81 -0
  51. data/lib/review/book/compilable.rb +159 -0
  52. data/lib/review/book/index.rb +339 -0
  53. data/lib/review/book/page_metric.rb +38 -0
  54. data/lib/review/book/parameters.rb +97 -0
  55. data/lib/review/book/part.rb +44 -0
  56. data/lib/review/book/volume.rb +65 -0
  57. data/lib/review/builder.rb +444 -0
  58. data/lib/review/compiler.rb +550 -0
  59. data/lib/review/configure.rb +38 -0
  60. data/lib/review/epubbuilder.rb +18 -0
  61. data/lib/review/exception.rb +21 -0
  62. data/lib/review/extentions.rb +3 -0
  63. data/lib/review/extentions/object.rb +9 -0
  64. data/lib/review/extentions/string.rb +33 -0
  65. data/lib/review/htmlbuilder.rb +1097 -0
  66. data/lib/review/htmllayout.rb +19 -0
  67. data/lib/review/htmlutils.rb +36 -0
  68. data/lib/review/i18n.rb +30 -0
  69. data/lib/review/i18n.yaml +34 -0
  70. data/lib/review/idgxmlbuilder.rb +1145 -0
  71. data/lib/review/latexbuilder.rb +815 -0
  72. data/lib/review/latexindex.rb +35 -0
  73. data/lib/review/latexutils.rb +79 -0
  74. data/lib/review/preprocessor.rb +563 -0
  75. data/lib/review/review.tex.erb +232 -0
  76. data/lib/review/textbuilder.rb +17 -0
  77. data/lib/review/textutils.rb +66 -0
  78. data/lib/review/tocparser.rb +342 -0
  79. data/lib/review/tocprinter.rb +221 -0
  80. data/lib/review/topbuilder.rb +785 -0
  81. data/lib/review/unfold.rb +138 -0
  82. data/lib/uuid.rb +312 -0
  83. data/review.gemspec +141 -0
  84. data/test/CHAPS +2 -0
  85. data/test/bib.re +13 -0
  86. data/test/book_test_helper.rb +35 -0
  87. data/test/test.re +43 -0
  88. data/test/test_book.rb +598 -0
  89. data/test/test_book_chapter.rb +418 -0
  90. data/test/test_book_parameter.rb +42 -0
  91. data/test/test_book_part.rb +50 -0
  92. data/test/test_builder.rb +144 -0
  93. data/test/test_compiler.rb +44 -0
  94. data/test/test_epubmaker.rb +507 -0
  95. data/test/test_helper.rb +27 -0
  96. data/test/test_htmlbuilder.rb +554 -0
  97. data/test/test_htmlutils.rb +28 -0
  98. data/test/test_i18n.rb +64 -0
  99. data/test/test_idgxmlbuilder.rb +589 -0
  100. data/test/test_index.rb +31 -0
  101. data/test/test_latexbuilder.rb +656 -0
  102. data/test/test_lineinput.rb +198 -0
  103. data/test/test_preprocessor.rb +23 -0
  104. data/test/test_textutils.rb +68 -0
  105. data/test/test_topbuilder.rb +244 -0
  106. data/test/test_uuid.rb +156 -0
  107. metadata +161 -0
@@ -0,0 +1,2083 @@
1
+ Mon Aug 27 20:27:11 2012 Kenshi Muto <kmuto@debian.org>
2
+
3
+ * lib/review/compiler.rb, lib/review/htmlbuilder.rb,
4
+ lib/review/idgxmlbuilder.rb, lib/review/latexbuilder.rb,
5
+ lib/review/topbuilder.rb, test/test_htmlbuilder.rb,
6
+ test/test_idgxmlbuilder.rb, test/test_latexbuilder.rb:
7
+ Add //centering to centerize contents.
8
+
9
+ Wed Aug 8 18:47:33 2012 Kenshi Muto <kmuto@debian.org>
10
+
11
+ * bin/review-compile, lib/review/idgxmlbuilder.rb:
12
+ Add --structuredxml option to produce structured XML for sections.
13
+
14
+ Sat Jul 14 16:07:54 2012 Masayoshi Takahashi <takahashimm@gmail.com>
15
+
16
+ * lib/review/review.tex.erb: \usepackage{jumoline} is optional
17
+
18
+ Sat Jun 16 00:57:14 2012 Masayoshi Takahashi <takahashimm@gmail.com>
19
+
20
+ * bin/review-compile, lib/review/builder.rb:
21
+ support --tabwidth=WIDTH option in review-compile
22
+
23
+ Fri Apr 20 16:07:35 2012 Kenshi Muto <kmuto@debian.org>
24
+
25
+ * lib/epubmaker/epubv*.rb: escape entity strings in meta informations.
26
+
27
+ Tue Mar 13 02:58:41 2012 Masayoshi Takahashi <takahashimm@gmail.com>
28
+
29
+ * lib/review/htmlbuilder.rb: support @<bou> in HTMLBuilder
30
+
31
+ Tue Mar 13 02:57:24 2012 Masayoshi Takahashi <takahashimm@gmail.com>
32
+
33
+ * lib/review/latexbuilder.rb: support @<ami> in LATEXBuilder
34
+
35
+ Sun Feb 12 16:06:52 2012 Masayoshi Takahashi <takahashimm@gmail.com>
36
+
37
+ * bin/review-pdfmaker: fix ebb and extractbb options for PDF as images
38
+
39
+ Mon Jan 30 20:39:17 2012 Masayoshi Takahashi <takahashimm@gmail.com>
40
+
41
+ * Version bump to 1.0.0.
42
+
43
+ Sat Jan 28 00:28:34 2012 Kenshi Muto <kmuto@debian.org>
44
+
45
+ * //raw supports to indicate builder(s) by using
46
+ //raw[|builder,builder| ...]
47
+ * merge kdmsnr's branch.
48
+ commit 207c787c961d61bbc517e160effadf417f05e28e
49
+ unescape in inline_raw: refs #54
50
+
51
+ Sun Jan 22 19:49:42 2012 Kenshi Muto <kmuto@debian.org>
52
+
53
+ * revert 17b0deb55b599deb1bdfbd6c61957d6edd5977ed change.
54
+ It caused a bug that '#@#' was included in paragraphs when
55
+ '#@#' was located just after paragraph line.
56
+
57
+ Sat Jan 14 23:24:52 2012 Kenshi Muto <kmuto@debian.org>
58
+
59
+ * lib/review/builder.rb, lib/review/htmlbuilder.rb,
60
+ lib/review/i18n.yaml, lib/review/idgxmlbuilder.rb,
61
+ lib/review/topbuilder.rb: show only counter on
62
+ image/list/table caption, if chapter number is
63
+ undefined.
64
+
65
+ Sat Jan 14 22:33:04 2012 Kenshi Muto <kmuto@debian.org>
66
+
67
+ * lib/review/tocparser.rb: remove BOM (\xEF\xBB\xBF) from
68
+ line head to avoid review-index error. Closes #72.
69
+
70
+ Sat Jan 14 22:02:29 2012 Kenshi Muto <kmuto@debian.org>
71
+
72
+ * lib/review/compiler.rb, lib/review/preprocessor.rb,
73
+ test/test_preprocessor.rb: fix difference of line#
74
+ between error output and source file which has comments.
75
+ Closes #73.
76
+
77
+ Mon Jan 2 01:09:58 2012 Kenshi Muto <kmuto@debian.org>
78
+
79
+ * lib/review/idgxmlbuilder: put <listinfo> to codelist element
80
+ (//list) as same as list (//emlist).
81
+
82
+ Fri Dec 16 01:01:31 2011 Masayoshi Takahashi <takahashimm@gmail.com>
83
+
84
+ * lib/review/latexbuilder.rb: LATEXBuilder: fix dlist(dd) bug
85
+
86
+ Sat Nov 12 18:42:24 2011 Masayoshi Takahashi <takahashimm@gmail.com>
87
+
88
+ * bin/review-pdfmaker:
89
+ LATEXBuilder: appendix and backmatter should be able to redefine
90
+
91
+ Fri Nov 11 02:45:50 2011 Masayoshi Takahashi <takahashimm@gmail.com>
92
+
93
+ * lib/review/latexbuilder.rb:
94
+ LATEXBuilder: use \url instead of \href if label is empty
95
+
96
+ Sat Nov 5 15:37:58 2011 Masayoshi Takahashi <takahashimm@gmail.com>
97
+
98
+ * bin/review-epubmaker, bin/review-pdfmaker:
99
+ fixes #50; make name of files generated in review-{epub|pdf}maker same as source filenames
100
+
101
+ Fri Nov 4 22:39:23 2011 Masayoshi Takahashi <takahashimm@gmail.com>
102
+
103
+ * bin/review-pdfmaker:
104
+ Force to execute platex command 3 times.
105
+ Executing only 2 times, some documents convert into PDF with
106
+ invalid page number :-(
107
+
108
+ Thu Oct 27 16:30:08 2011 Kenshi Muto <kmuto@debian.org>
109
+
110
+ * lib/review/topbuilder.rb: trivial bug fixes around //raw.
111
+
112
+ Sun Oct 9 00:43:51 2011 Masayoshi Takahashi <takahashimm@gmail.com>
113
+
114
+ * lib/review/latexbuilder.rb, lib/review/latexutils.rb:
115
+ LATEXBuilder: fix escape in URL (use special method)
116
+
117
+ Tue Sep 27 21:44:13 2011 Masayoshi Takahashi <takahashimm@gmail.com>
118
+
119
+ * bin/review-epubmaker: default author should be nil
120
+
121
+ Tue Sep 27 21:36:00 2011 Masayoshi Takahashi <takahashimm@gmail.com>
122
+
123
+ * bin/review-epubmaker: fix Issue #43: fix generating invalid EPUB toc.html file
124
+
125
+ Tue Sep 27 18:51:27 2011 Masayoshi Takahashi <takahashimm@gmail.com>
126
+
127
+ * lib/review/book.rb, bin/review-pdfmaker:
128
+ support *.pdf file for images in LATEXBuilder
129
+
130
+ Tue Sep 27 18:19:20 2011 Masayoshi Takahashi <takahashimm@gmail.com>
131
+
132
+ * bin/review-pdfmaker:
133
+ support customizing coverfile in LATEXBuilder (same as HTMLBuilder)
134
+
135
+ Fri Sep 23 22:06:26 2011 Masayoshi Takahashi <takahashimm@gmail.com>
136
+
137
+ * lib/review/latexutils.rb:
138
+ support MARUSUJI(number in circle) 0-10
139
+
140
+ Wed Sep 21 19:51:57 2011 Masayoshi Takahashi <takahashimm@gmail.com>
141
+
142
+ * lib/review/compiler.rb: fix slow regexp (cf. [ruby-list:48379])
143
+
144
+ Thu Sep 15 00:28:05 2011 Kenshi Muto <kmuto@debian.org>
145
+
146
+ * lib/review/builder.rb, lib/review/htmlbuilder.rb,
147
+ lib/review/texbuilder.rb, lib/review/idgxmlbuilder.rb,
148
+ test/test_htmlbuilder.rb, test/test_latexbuilder.rb,
149
+ test/test_idgxmlbuilder.rb: handle metric parameter of
150
+ //image and //indepimage more portable.
151
+ Builder specific parameter can be specified with prefix
152
+ html::, latex::, and idgxml::.
153
+
154
+ Thu Sep 1 13:21:16 2011 Kenshi Muto <kmuto@debian.org>
155
+
156
+ * lib/review/htmlbuilder.rb: support --draft flag.
157
+ add @<comment>. //comment and @<comment> will show in the
158
+ output when --draft flag is specified. Without this flag
159
+ (default), they will be converted to '<!-- -->'.
160
+
161
+ Thu Sep 1 12:39:54 2011 Kenshi Muto <kmuto@debian.org>
162
+
163
+ * lib/review/htmlbuilder.rb: escape html in @<code>.
164
+
165
+ Mon Aug 29 10:59:15 2011 Masayoshi Takahashi <takahashimm@gmail.com>
166
+
167
+ * bin/review-pdfmaker:
168
+ add translater in okuduke and titlepage if values["trl"] has value
169
+ * bin/review-epubmaker:
170
+ add translater in okuduke if values["trl"] has value
171
+
172
+ Fri Aug 26 14:57:35 2011 Masayoshi Takahashi <takahashimm@gmail.com>
173
+
174
+ * bin/review-pdfmaker: fix some style broken in TeXLive 2011
175
+ * bin/review-pdfmaker: use extractbb instead of ebb
176
+
177
+ Sat Aug 13 11:06:17 2011 Masayoshi Takahashi <takahashimm@gmail.com>
178
+
179
+ * bin/review-epubmaker:
180
+ fix Issue #34: generating stylesheet with appropriate filename
181
+
182
+ Sat Aug 11 01:23:00 2011 Masayoshi Takahashi <takahashimm@gmail.com>
183
+
184
+ * test/test_latexbuilder.rb, lib/review/latexbuilder.rb:
185
+ fix //noindent in LATEXBuilder
186
+
187
+ Sat Jul 2 13:34:00 2011 Masayoshi Takahashi <takahashimm@gmail.com>
188
+
189
+ * lib/review/latexbuilder.rb, lib/review/compiler.rb, bin/review-compile:
190
+ support //comment and @<comment> as PDF Annotation in LATEXBuilder
191
+
192
+ Sat Jul 2 11:22:53 2011 Masayoshi Takahashi <takahashimm@gmail.com>
193
+
194
+ * bin/review-epubmaker, lib/review/htmlbuilder.rb:
195
+ fix @<bib> and bib.re support in EPUB
196
+
197
+ Sun Jun 26 22:38:09 2011 KADO Masanori <kdmsnr@gmail.com>
198
+
199
+ * lib/review/builder.rb, lib/review/compiler.rb, lib/review/index.rb,
200
+ lib/review/latexbuilder.rb, lib/review/idgxmlbuilder.rb, lib/review/htmlbuilder.rb:
201
+ support //graph
202
+
203
+ Thu Jun 16 15:59:35 2011 Kenshi Muto <kmuto@debian.org>
204
+
205
+ * lib/review/idgxmlbuilder.rb, test/test_idgxmlbuilder.rb:
206
+ <td> has xyh attribution to point cell location and a number
207
+ of header lines.
208
+
209
+ Wed Jun 1 23:32:06 2011 Kenshi Muto <kmuto@debian.org>
210
+
211
+ * lib/review/idgxmlbuilder.rb: <recipe> uses full
212
+ width blank instead of tab, because tab breaks
213
+ a table element.
214
+
215
+ Wed Jun 1 18:42:52 2011 Masayoshi Takahashi <takahashimm@gmail.com>
216
+
217
+ * support caption as optional in //cmd{..} and
218
+ //emlist{..}.
219
+
220
+ Tue May 24 12:57:37 2011 Kenshi Muto <kmuto@debian.org>
221
+
222
+ * lib/review/idgxmlbuilder.rb: Use <lead> element for
223
+ //lead and //read by default, to avoid nested <p>
224
+ elements.
225
+
226
+ Wed May 11 14:54:50 2011 Kenshi Muto <kmuto@debian.org>
227
+
228
+ * merge Yutaka HARA's branch.
229
+ commit b4cf87a791f7dcca475cec9a5e838cc0da09de3b
230
+ Author: Yutaka HARA <yutaka.hara+github@gmail.com>
231
+ Date: Wed May 11 14:28:41 2011 +0900
232
+
233
+ bin/review-vol: review-vol should accept --directory
234
+
235
+ Mon Apr 25 07:22:39 2011 Kenshi Muto <kmuto@debian.org>
236
+
237
+ * bin/review-compile, lib/review/htmlbuilder.rb:
238
+ add --htmlversion option. This parameter takes the
239
+ HTML version value 4 or 5.
240
+ * bin/review-epubmaker-ng: now works. It gets an ability to
241
+ produce EPUB3 book.
242
+ * lib/epubmaker/epubv3.rb. lib/epubmaker/producer.rb: support
243
+ EPUB3.
244
+ * lib/epubmaker/epubv2.rb: fix indents.
245
+
246
+ Sat Apr 23 12:15:46 2011 Kenshi Muto <kmuto@debian.org>
247
+
248
+ * Cherry-pick from Kouji Takao's branch.
249
+ commit 133c44c61da8b1057a6883e95a9165815f163cb4
250
+ Author: Kouji Takao <kouji@takao7.net>
251
+ Date: Sun Jan 2 20:42:40 2011 +0900
252
+
253
+ display chapter name.
254
+
255
+ commit 35b65a3e13463c54e696c71b6ec92d9c04a036df
256
+ Author: Kouji Takao <kouji@takao7.net>
257
+ Date: Sun Jan 2 20:38:47 2011 +0900
258
+
259
+ supported book configuration in config.rb.
260
+
261
+ commit 0c493c434bda7bc5b58d5927cc8caedb8da5105c
262
+ Author: Kouji Takao <kouji@takao7.net>
263
+ Date: Sun Jan 2 20:37:56 2011 +0900
264
+
265
+ supported comment in CHAPS file.
266
+
267
+ Mon Apr 11 18:41:26 2011 Masayoshi Takahashi <takahashimm@gmail.com>
268
+
269
+ * bin/review-pdfmaker: add texdocumentclass option in config.yml
270
+
271
+ Wed Mar 16 16:09:42 2011 Kenshi Muto <kmuto@debian.org>
272
+
273
+ * Mege nari's branch.
274
+ - use compile_inline() to caption on //bibpaper.
275
+
276
+ Fri Feb 25 22:40:18 2011 Kenshi Muto <kmuto@debian.org>
277
+
278
+ * Merge nari's branch.
279
+ - add maxwidth for latex indepimage.
280
+
281
+ Thu Feb 3 23:29:07 2011 Kenshi Muto <kmuto@debian.org>
282
+
283
+ * lib/review/book.rb, lib/review/index.rb: workaround for
284
+ inline icon file support. (it still exports duplicate ID warning...)
285
+
286
+ Sat Jan 29 23:03:37 2011 Kenshi Muto <kmuto@debian.org>
287
+
288
+ * Merge nari's branch.
289
+ - add @<bib> //bib to latexbuilder.
290
+
291
+ Sat Jan 29 19:00:07 2011 Kenshi Muto <kmuto@debian.org>
292
+
293
+ * lib/epubmaker/epubv2.rb: add dc:publisher value in opf file
294
+ (same value of prt).
295
+
296
+ Wed Jan 12 23:49:05 2011 Kenshi Muto <kmuto@debian.org>
297
+
298
+ * lib/epubmaker/epubv2.rb: fix level handling of mytoc.
299
+
300
+ Mon Dec 20 23:41:04 2010 Kenshi Muto <kmuto@debian.org>
301
+
302
+ * lib/epubmaker/epubv2.rb: fix indent.
303
+ * test/test_epubmaker.rb: initial test codes.
304
+
305
+ Mon Dec 20 00:12:41 2010 Kenshi Muto <kmuto@debian.org>
306
+
307
+ * lib/epubmaker.rb: separate files to content, epubv2, epubv3,
308
+ producer, and resource.
309
+
310
+ Sat Dec 18 10:50:24 2010 Kenshi Muto <kmuto@debian.org>
311
+
312
+ * bin/review-compile, lib/review/htmlbuilder.rb,
313
+ lib/review/idgxmlbuilder.rb: unify block coding styles and regexp
314
+ coding styles.
315
+ * bin/review-compile: accept multiple stylesheets.
316
+ set default values for language and htmlext.
317
+ use YAML file by passing --yaml=YAMLFILE option.
318
+ * lib/review/htmlbuilder.rb: support htmlext and language parameter.
319
+ support multiple stylesheets.
320
+ * lib/epubmaker.rb: new EPUB support library. Not only ReVIEW can
321
+ use this library. This library is experimental.
322
+ * bin/review-epubmaker-ng: experimental alternative implementation
323
+ for review-epubmaker using epubmaker.rb. This tools is under
324
+ construction and may be changed widely.
325
+ * doc/libepubmaker/sample.yaml: sample YAML file for epubmaker.rb
326
+ library.
327
+
328
+ Sat Dec 12 09:30:28 2010 KADO Masanori <kdmsnr@gmail.com>
329
+
330
+ * lib/review/compiler.rb: add [/column] notation
331
+ * test/test_htmlbuilder.rb, test/test_idgxmlbuilder.rb, test/test_latexbuilder.rb: add test for [/column] notation
332
+ * lib/review/tocparser.rb: ignore [/column] notation for review-index
333
+ * doc/format.rdoc: add [/column] notation
334
+
335
+ Sat Dec 11 08:49:48 2010 KADO Masanori <kdmsnr@gmail.com>
336
+
337
+ * bin/review-pdfmaker, lib/review/latexbuilder.rb: add maxwidth
338
+ for latex image
339
+ * bin/review-pdfmaker: include image subdir for ebb
340
+
341
+ Sat Dec 11 02:39:37 2010 Masayoshi Takahashi <takahashimm@gmail.com>
342
+
343
+ * lib/review/htmlbuilder.rb: remove empty line after <pre> tag
344
+
345
+ Thu Dec 9 11:15:11 2010 Masayoshi Takahashi <takahashimm@gmail.com>
346
+
347
+ * lib/review/compiler.rb: fix slow regexp for compiling inline
348
+ (ex. '@<href>{http://very.long.name/and/missing/close/curly/brace')
349
+
350
+ Sat Dec 4 00:18:45 2010 Kenshi Muto <kmuto@debian.org>
351
+
352
+ * doc/quickstart.rdoc: created.
353
+ * lib/review/textbuilder.rb: provide a wrapper of topbuilder.rb.
354
+ 'review-compile --target text' (or review2text) makes a plain
355
+ text file with pseudo tags.
356
+
357
+ Thu Dec 2 08:23:14 2010 Kenshi Muto <kmuto@debian.org>
358
+
359
+ * lib/review/compiler.rb, lib/review/htmlbuilder.rb,
360
+ lib/review/latexbuilder.rb: move core tag @<icon> to
361
+ compiler.rb.
362
+ * lib/review/topbuilder.rb, test/test_topbuilder.rb: supports
363
+ same tags with other builders.
364
+
365
+ Wed Dec 1 16:41:40 2010 Masayoshi Takahashi <takahashimm@gmail.com>
366
+
367
+ * VERSION: Version bump to 0.9.0
368
+
369
+ Wed Dec 1 16:38:34 2010 Masayoshi Takahashi <takahashimm@gmail.com>
370
+
371
+ * doc/format.txt, doc/format_idg.txt, doc/format_sjis.txt, doc/memo-reviewspec.txt:
372
+ delete old docs; see format.rdoc, format_idg.rdoc and
373
+ Wiki pages on github.com (https://github.com/kmuto/review/wiki)
374
+
375
+ Sun Nov 28 14:12:50 2010 Kenshi Muto <kmuto@debian.org>
376
+
377
+ * lib/review/idgxmlbuilder.rb: partially support for metric.
378
+ * test/test_htmlbuilder.rb, test/idg_xmlbuilder.rb,
379
+ test/test_latexbuilder.rb: add test for //indepimage and //image.
380
+
381
+ Sun Nov 28 01:28:06 2010 Masayoshi Takahashi <takahashimm@gmail.com>
382
+
383
+ * lib/review/latexbuilder.rb, lib/review/idgxmlbuilder.rb,
384
+ lib/review/htmlbuilder.rb, lib/review/builder.rb:
385
+ - support metric option of //image
386
+
387
+ Sat Nov 27 22:59:24 2010 Kenshi Muto <kmuto@debian.org>
388
+
389
+ * lib/review/compiler.rb: accept space/tab before :
390
+ (description list).
391
+
392
+ Sat Nov 27 22:27:56 2010 Kenshi Muto <kmuto@debian.org>
393
+
394
+ * lib/review/htmlbuilder.rb: use <p class="noindent"> for
395
+ //noindent. use <p class="flushright"> for //flushright (for
396
+ backward compatibility, it can be reverted to older <div> and
397
+ <pre> style by setting --deprecated-blocklines.)
398
+ * test/test_latexbuilder.rb, test/test_htmlbuilder.rb,
399
+ test/test_idgbuilder.rb: add flushright and noindent tests.
400
+ * doc/sample.css: add p, p.noindent, p.flushright, and p.caption.
401
+
402
+ Sat Nov 27 22:00:20 2010 Kenshi Muto <kmuto@debian.org>
403
+
404
+ * bin/review-index: deprecate --html option.
405
+ * bin/review-check: deprecate -s option.
406
+ * bin/review-preproc: deprecate --final option.
407
+
408
+ Sat Nov 27 21:40:42 2010 Kenshi Muto <kmuto@debian.org>
409
+
410
+ * merge kdmsnr's branch.
411
+ - add inline_table/list ref to another chapter.
412
+
413
+ Sat Nov 27 14:58:05 2010 Kenshi Muto <kmuto@debian.org>
414
+
415
+ * Clean up.
416
+ - bin/setup.rb: remove obsolete file. use gem or git.
417
+ - lib/review/book.rb, test/test_book.rb: remove PARAMS.
418
+ - lib/review/compiler.rb, lib/review/htmlbuilder.rb,
419
+ lib/review/idgxmlbuilder.rb, lib/review/latexbuilder.rb:
420
+ support caption in //indepimage.
421
+ //numberlessimage aliases of //indepimage.
422
+ - bin/review-compile, lib/review/compiler.rb: --hdnumberingmode
423
+ is deprecated. use --level option.
424
+ - lib/review/book.rb: remove nocode_file and index_file because
425
+ they aren't used anymore.
426
+ - bin/review-epubmaker: print usage if argument isn't defined.
427
+
428
+ Sat Nov 27 04:00:01 2010 Masayoshi Takahashi <takahashimm@gmail.com>
429
+
430
+ * bin/review-pdfmaker: make default LaTeX style much simpler.
431
+ - add \reviewmainfont and \reviewtitlefont (you can redifine with \renewcomamnd{})
432
+ - delete header/footer definition (you can do it with config.yml)
433
+
434
+ Mon Nov 22 00:44:20 2010 Masayoshi Takahashi <takahashimm@gmail.com>
435
+
436
+ * lib/review/latexbuilder.rb: support @<icon>{} in LATEXBuilder
437
+
438
+ Sun Nov 21 21:50:32 2010 Masayoshi Takahashi <takahashimm@gmail.com>
439
+
440
+ * test/test_uuid.rb: reduce slow tests. If we use original
441
+ uuid.rb without any changes, it's no problem.
442
+
443
+ Sun Nov 21 15:02:00 2010 Kenshi Muto <kmuto@debian.org>
444
+
445
+ * lib/review/book.rb: add 'ai' to acceptable image file.
446
+ * lib/review/builder.rb: move find_pathes() and entries() here
447
+ from HTMLBuilder.
448
+ * lib/review/compiler.rb: rescue string() error for TestUnit.
449
+ * lib/review/htmlbuilder.rb: cleanup.
450
+ * lib/review/idgxmlbuilder.rb: support both 1.8 and 1.9 in
451
+ inline_maru. use find_pathes() of builder for @icon and
452
+ //indepimage.
453
+
454
+ Sun Nov 21 14:22:55 2010 Kenshi Muto <kmuto@debian.org>
455
+
456
+ * lib/review/idgxmlbuilder.rb, test/test_idgxmlbuilder.rb:
457
+ refactoring. add some tests.
458
+
459
+ Wed Nov 17 09:36:50 2010 Kenshi Muto <kmuto@debian.org>
460
+
461
+ * merge KADO's patch and modify.
462
+ - lib/review/idgxmlbuilder.rb, lib/review/htmlbuilder.rb,
463
+ lib/review/latexbuilder.rb: //lead, //read, //quote, //note,
464
+ //memo, //tip, //info, //planning, //best, //important,
465
+ //security, //caution, //term, //link, //notice, //point,
466
+ //shoot, //reference, //practice: use normal paragraph
467
+ syntax; splitted by empty line.
468
+ - bin/review-compile: For backward compatibilty, add
469
+ --deprecated-blocklines option.
470
+
471
+ Wed Nov 17 17:55:42 2010 Masayoshi Takahashi <takahashimm@gmail.com>
472
+
473
+ * lib/review/latexutils.rb, bin/review-pdfmaker,
474
+ test/test_latexbuilder.rb:
475
+ - \textbackslash -> \reviewbackslash(to replace into yensign) in LATEXBuilder
476
+ - allow to overwrite review* macro in LATEXBuilder
477
+
478
+ Sat Nov 13 23:19:25 2010 Kenshi Muto <kmuto@debian.org>
479
+
480
+ * test/test_builder.rb, test/test_htmlbuilder.rb,
481
+ test/test_idgxmlbuilder.rb, test/test_latexbuilder.rb:
482
+ add some block test codes.
483
+ * Fix //quote handling of LATEXBuilder.
484
+
485
+ Sun Nov 14 05:19:53 2010 Masayoshi Takahashi <takahashimm@gmail.com>
486
+
487
+ * merge KADO's patch.
488
+ - test/test_latexbuilder.rb, lib/review/latexbuilder.rb:
489
+ //quote allow newlines in LATEXBuilder.
490
+
491
+ Sat Nov 13 10:33:13 2010 Kenshi Muto <kmuto@debian.org>
492
+
493
+ * lib/review/idgxmlbuilder.rb: round float value for
494
+ the compatibility between 1.8 and 1.9.
495
+
496
+ Thu Nov 11 08:16:10 2010 Masayoshi Takahashi <takahashimm@gmail.com>
497
+
498
+ * test/test_latexbuilder.rb: test tagged header.
499
+
500
+ Thu Nov 11 21:34:39 2010 Kenshi Muto <kmuto@debian.org>
501
+
502
+ * lib/review/compiler.rb, lib/review/htmlbuilder.rb,
503
+ lib/review/idgxmlbuilder.rb, lib/review/latexbuilder.rb:
504
+ allow inline tags in captions and headers.
505
+ * test/test_htmlbuilder.rb: test tagged header.
506
+
507
+ Mon Nov 8 21:58:27 2010 Kenshi Muto <kmuto@debian.org>
508
+
509
+ * merge KADO's patch.
510
+ - lib/review/htmlbuilder.rb: add chap to tabel_header.
511
+
512
+ Mon Nov 8 21:51:43 2010 Kenshi Muto <kmuto@debian.org>
513
+
514
+ * lib/review/compiler.rb, lib/review/htmlbuilder.rb,
515
+ lib/review/idgxmlbuilder.rb, lib/review/latexbuilder.rb:
516
+ move @<tti>, @<ttb>, @<u>, @<uchar>, @<idx>, and @<hidx> to
517
+ base op.
518
+ * lib/review/htmlbuilder.rb, lib/review/latexbuilder.rb:
519
+ support @<uchar> op.
520
+ * test/test_htmlbuilder.rb, test/test_latexbuilder.rb,
521
+ test/test_idgxmlbuilder.rb: add test for @<uchar>.
522
+
523
+ Sun Nov 7 17:23:12 2010 Kenshi Muto <kmuto@debian.org>
524
+
525
+ * lib/review/latexbuilder.rb: support //indepimage.
526
+ * lib/review/htmlbuilder.rb, lib/review/idgxmlbuilder.rb: accept
527
+ (though just ignore) metric option of //indepimage.
528
+
529
+ Sun Nov 7 15:20:16 2010 Kenshi Muto <kmuto@debian.org>
530
+
531
+ * lib/review/htmlbuilder.rb: use <u> instead of <underline> for underline.
532
+
533
+ Sun Nov 7 13:20:37 2010 Masayoshi Takahashi <takahashimm@gmail.com>
534
+
535
+ * lib/review/latexbuilder.rb: support @<tti> and @<ttb> for LATEXBuilder
536
+
537
+ Sun Nov 7 12:35:11 2010 Kenshi Muto <kmuto@debian.org>
538
+
539
+ * lib/review/idgxmlbuilder.rb: ad-hoc support for //texequation
540
+ and @<m>.
541
+
542
+ Sun Nov 7 12:01:03 2010 Kenshi Muto <kmuto@debian.org>
543
+
544
+ * merge KADO's branch.
545
+ - lib/review/htmlbuilder.rb, lib/review/idgxmlbuilder.rb:
546
+ add @ttb op.
547
+
548
+ Thu Nov 4 20:48:41 2010 Masayoshi Takahashi <takahashimm@gmail.com>
549
+
550
+ * bin/review-pdfmaker: update colophon in LATEXBuilder.
551
+
552
+ Thu Nov 4 19:58:20 2010 Masayoshi Takahashi <takahashimm@gmail.com>
553
+
554
+ * bin/review-pdfmaker, lib/review/latexbuilder.rb:
555
+ use \reviewkw{} for @<kw>, and \reviewkw{} use \textbf{}
556
+ and \textgt{} as default
557
+
558
+ Thu Nov 4 17:29:17 2010 Masayoshi Takahashi <takahashimm@gmail.com>
559
+
560
+ * bin/review-pdfmaker: only use coverimage file if 'converimage'
561
+ attributes has a value(but ignore coverfile).
562
+
563
+ Thu Nov 4 17:11:56 2010 Masayoshi Takahashi <takahashimm@gmail.com>
564
+
565
+ * test/test_htmlbuilder.rb, test/test_latexbuilder.rb:
566
+ add some inline tests.
567
+
568
+ Thu Nov 4 17:11:04 2010 Masayoshi Takahashi <takahashimm@gmail.com>
569
+
570
+ * lib/review/latexbuilder.rb: escape inline_m's content.
571
+
572
+ Thu Nov 4 07:27:09 2010 Kenshi Muto <kmuto@debian.org>
573
+
574
+ * bin/review-compile, lib/review/compiler.rb,
575
+ lib/review/htmlbuilder.rb, lib/review/htmlutils.rb,
576
+ lib/review/latexbuilder.rb, lib/review/latexutils.rb,
577
+ doc/format.rdoc, doc/format.re, doc/format.txt:
578
+ add experimental TeX block equation/inline equation support.
579
+ add //texequation in LATEXBuilder and HTMLBuilder.
580
+ add @<m> op in HTMLBuilder.
581
+ add --mathml option to use math_ml.rb library
582
+ (http://www.hinet.mydns.jp/?mathml.rb) in HTMLBuilder.
583
+
584
+ Wed Nov 3 23:44:37 2010 Kenshi Muto <kmuto@debian.org>
585
+
586
+ * merge KADO's branch.
587
+ - bin/review-index: add chapter option
588
+
589
+ Tue Nov 2 19:11:51 2010 Kenshi Muto <kmuto@debian.org>
590
+
591
+ * merge KADO's branch.
592
+ - lib/review/htmlbuilder.rb: add chap to image_header
593
+ - doc/format.rdoc: initial document file for GitHub.
594
+
595
+ Fri Oct 29 06:23:56 2010 Kenshi Muto <kmuto@debian.org>
596
+
597
+ * lib/uuid.rb, test/test_uuid.rb, doc/ruby-uuid/README,
598
+ doc/ruby-uuid/README.ja: uuid library, imported from
599
+ git://github.com/shyouhei/ruby-uuid.git
600
+ Copyright 2007 URABE, Shyouhei.
601
+ (At this time, I prefer to import third party libraries
602
+ rather than using gems, to let ReVIEW work on essential
603
+ Ruby environments.)
604
+ * bin/review-epubmaker: use time-based random urnid when
605
+ urnid isn't defined.
606
+ write <itemref idref="toc" /> only if mytoc is defined.
607
+ * doc/sample.yaml: modify descriptions of urnid, stylesheet,
608
+ colophon, and debug.
609
+
610
+ Wed Oct 27 02:39:40 2010 Masayoshi Takahashi <takahashimm@gmail.com>
611
+
612
+ * lib/review/latexbuilder.rb: do not use \begin{table}...\end{table}
613
+ if caption is empty (because we cannot use {table} in column section)
614
+
615
+ Tue Oct 26 12:26:01 2010 Masayoshi Takahashi <takahashimm@gmail.com>
616
+
617
+ * bin/review-pdfmaker: fix all characters in rightside header are uppercase.
618
+
619
+ Sun Oct 24 04:26:54 2010 Masayoshi Takahashi <takahashimm@gmail.com>
620
+
621
+ * bin/review-pdfmaker, lib/review/latexbuilder.rb:
622
+ fix caption of //list and //table in LATEXBuilder
623
+
624
+ Tue Oct 19 15:48:44 2010 Masayoshi Takahashi <takahashimm@gmail.com>
625
+
626
+ * lib/review/latexbuilder.rb: add //tsize and //latextsize for table in LATEXBuilder
627
+
628
+ Tue Oct 19 12:54:40 2010 Masayoshi Takahashi <takahashimm@gmail.com>
629
+
630
+ * lib/review/latexbuilder.rb: not use shortstack without @<br>
631
+
632
+ Sun Oct 17 01:03:43 2010 Masayoshi Takahashi <takahashimm@gmail.com>
633
+
634
+ * bin/review-pdfmaker: LATEXBuilder supports //memo command
635
+
636
+ Wed Oct 13 21:03:25 2010 Kenshi Muto <kmuto@debian.org>
637
+
638
+ * lib/review/compiler.rb: drop support for multichoice
639
+ and singlechoice. They need more sophisticated symbols
640
+ (don't use misleading multibyte characters).
641
+
642
+ Wed Oct 13 20:54:39 2010 Kenshi Muto <kmuto@debian.org>
643
+
644
+ * support ruby 1.9.
645
+
646
+ Sat Sep 11 19:15:59 2010 Kenshi Muto <kmuto@debian.org>
647
+
648
+ * lib/review/book.rb, lib/review/htmlbuilder.rb,
649
+ lib/review/index.rb: support //indepimage.
650
+
651
+ Sat Sep 11 18:29:39 2010 Kenshi Muto <kmuto@debian.org>
652
+
653
+ * bin/review-compile, bin/review-vol, lib/review/book.rb,
654
+ lib/review/compiler.rb, lib/review/htmlbuilder.rb,
655
+ lib/review/idgxmlbuilder.rb, lib/review/index.rb,
656
+ lib/review/latexbuilder.rb, test/*.rb:
657
+ manage parameters by ReVIEW.book.param.
658
+ * bin/review-preproc, lib/review/preprocessor.rb:
659
+ manage preprocessor parameters by Preprocessor.param.
660
+ * lib/review/buildedr.rb: handle encoding conversions by
661
+ Builder#convert_outencoding.
662
+
663
+ Sat Sep 11 16:28:32 2010 Kenshi Muto <kmuto@debian.org>
664
+
665
+ * lib/review/latexbuilder.rb, lib/review/htmlbuilder.rb:
666
+ support [nonum] in headlines.
667
+
668
+ Fri Sep 10 19:33:27 2010 Kenshi Muto <kmuto@debian.org>
669
+
670
+ * lib/review/htmlbuilder.rb, test/test_htmlbuilder.rb:
671
+ revert to use double quote for element attributes.
672
+
673
+ Thu Sep 9 22:21:22 2010 Kenshi Muto <kmuto@debian.org>
674
+
675
+ * lib/review/htmlbuilder.rb:
676
+ - use single quote for element attributes.
677
+ - use 'caption' for the class name of all captions.
678
+ - surround //source by div class='source-code' instead of
679
+ div class='caption-code'.
680
+ - surround //emlist and //emlistnum by div class='emlist-code'
681
+ instead of div class='code'.
682
+ - surround //cmd by div class='cmd-code' instead of div
683
+ class='code'.
684
+ - surround table by div class='table'.
685
+ - use b (bold) for @<kw> instead of span class='kw'.
686
+ - use tt (typewriter) for @<code> instead of span
687
+ class='inline-code'.
688
+ * test/test_htmlbuilder.rb: follow single quote changes.
689
+
690
+ Wed Sep 8 22:24:49 2010 Kenshi Muto <kmuto@debian.org>
691
+
692
+ * lib/review/htmlbuilder.rb: import all of epubbuilder.rb.
693
+ - CSS name changed.
694
+ //list caption: toplabel -> listcaption
695
+ //source caption: toplabel -> sourcecaption
696
+ //image caption: botlabel -> imagecaption
697
+ //table caption: toplabel -> tablecaption
698
+ - //comment is converted as <!-- --> instead of <p class="comment">.
699
+ - //image and //numberlessimage are converted as
700
+ <div class="image"><img> instead of <p class="img"><img>
701
+ - Produce XHTML header/footer contents by default.
702
+ - Insert orderded numbers in headers by default. Specifing
703
+ --secnolevel=0 prevents all of them.
704
+ * bin/review-compile, doc/memo-reviewspec.txt, bin/review-epubmaker:
705
+ Replace string EPUB with HTML to follow HTMLBuilder changes.
706
+
707
+ Sat Sep 4 11:53:31 2010 Masayoshi Takahashi <takahashimm@gmail.com>
708
+
709
+ * lib/review/latexbuilder.rb: add bloks: emlistnum, listnum, reviewlistcaption, source, flushright
710
+
711
+ Sat Sep 4 11:45:36 2010 Masayoshi Takahashi <takahashimm@gmail.com>
712
+
713
+ * lib/review/latexbuilder.rb: add inlines: @<i>,@<idx>,@<hidx>,@<dtp>,@<code>,
714
+ @<hd_chap>,@<raw>,@<sub>,@<sup>,@<em>,@<strong>,@<u>
715
+
716
+ Fri Sep 3 22:50:56 2010 Masayoshi Takahashi <takahashimm@gmail.com>
717
+
718
+ * bin/review-pdfmaker: make background color of //cmd black
719
+
720
+ Fri Sep 3 01:01:19 2010 Masayoshi Takahashi <takahashimm@gmail.com>
721
+
722
+ * lib/review/latexbuilder.rb, bin/review-pdfmaker: use {alltt}
723
+ instead of {verbatim} to allow inline in lists and cmds.
724
+
725
+ Thu Sep 2 23:38:01 2010 Masayoshi Takahashi <takahashimm@gmail.com>
726
+
727
+ * bin/review-pdfmaker: add command bin/review-pdfmaker for generating PDF document by LaTeX
728
+
729
+ Thu Sep 2 13:24:24 2010 Masayoshi Takahashi <takahashimm@gmail.com>
730
+
731
+ * lib/review/latexbuilder.rb, test/test_latexbuilder.rb: add op @<br>{} into LaTeXBuilder.
732
+
733
+ Thu Sep 2 12:05:58 2010 Kenshi Muto <kmuto@debian.org>
734
+
735
+ * add op @<br>{}.
736
+
737
+ Wed Sep 1 14:43:13 2010 Kenshi Muto <kmuto@debian.org>
738
+
739
+ * Merge git://github.com/akira/review. 52db533ba53a8d9416a17773fdfcf97044f858f0
740
+ - added tests for ReVIEW.book
741
+ - added tests for ReVIEW::Parameters
742
+ - moved get_instance_variables to the Helper module
743
+ - added tests for ReVIEW::Book.{load,load_default}
744
+ - added tests for ReVIEW::Book.update_rubyenv
745
+ - added tests for ReVIEW::ChapterSet
746
+ - added tests for ReVIEW::Chapter.intern_pathes
747
+ - added tests for index methods of ReVIEW::Chapter
748
+ - added tests for ReVIEW::Chapter#on_CHAPS?
749
+ - added tests for ReVIEW::Part
750
+ - added/modifed ext of contents of CHAPS/PREDEF
751
+ Can we omit ext of files?
752
+ - added a test for ReVIEW::Book#volume
753
+ - added a test for ReVIEW::Book#{chapters,chapter,each_chapter}
754
+ - added a test for ReVIEW::Book#{part,each_part}
755
+ - added a test for ReVIEW::Book#parts
756
+ - added a test for ReVIEW::Book#basedir
757
+ - added tests for ReVIEW::Book#postscripts
758
+ - added tests for ReVIEW::Book#prefaces
759
+ - added tests for ReVIEW::Book#{setParameter,parse_chapters}
760
+ - added tests for ReVIEW::Book#read_{CHPAS,PART,bib}
761
+ - added a test for Book.load_default
762
+ - added a test for ReVIEW::Chapter#volume
763
+ - added some tests for ReVIEW::Chapter
764
+ - added some tests for Builder
765
+ - added test for ReVIEW::HTMLUtils
766
+ - removed unused setup
767
+ - added tests for LineInput
768
+ - added rcov task
769
+
770
+ Sun Aug 22 23:25:44 2010 Kenshi Muto <kmuto@debian.org>
771
+
772
+ * Merge git://github.com/moro/review into moro
773
+ - map* from git blob object
774
+ with @mapfile(git|<object-spec>).example:
775
+ #@mapfile(git|2e725159:src/codes/features/signup_and_login.feature)
776
+
777
+ Sun Aug 22 23:08:59 2010 Kenshi Muto <kmuto@debian.org>
778
+
779
+ * lib/review/epubbuilder.rb: remove escape_html from table to
780
+ avoid double escaping. add @<dtp> op.
781
+ * test/test_epubbuilder.rb: add test for table to avoid double
782
+ escaping.
783
+ * test/test_idgxmlbuilder.rb: add test unit for IDGXML builder.
784
+
785
+ Fri Aug 20 14:20:03 2010 Masayoshi Takahashi <takahashimm@gmail.com>
786
+
787
+ * doc/memo-reviewspec.txt: add document for design of review format.
788
+
789
+ Sun Aug 8 17:18:03 2010 Kenshi Muto <kmuto@debian.org>
790
+
791
+ * Merge nari's branch. 27a35652ecb5a94d5b36
792
+ - lib/review/htmlbuilder.rb: add @<doorquote>, @<talk>
793
+ - lib/review/htmlbuilder.rb: support @<href>.
794
+ - lib/review/builder.rb: move param parameter to global.
795
+ - lib/review/compiler.rb: replace @@hdnumberingmode by @strategy.param.
796
+ * lib/review/epubbuilder.rb: add @<doorquote>, @<talk>, @<hd_chap>.
797
+ * lib/review/compiler.rb, lib/review/index.rb: unify coding styles.
798
+ fix a typo.
799
+
800
+ Sun Aug 8 17:01:48 2010 Kenshi Muto <kmuto@debian.org>
801
+
802
+ * lib/review/compiler.rb, lib/review/epubbuilder.rb: support //box
803
+ as global environment.
804
+ * lib/review/epubbuilder.rb: support @<icon>.
805
+
806
+ Mon Jul 5 14:42:49 2010 Kenshi Muto <kmuto@debian.org>
807
+
808
+ * lib/review/idgxmlbuilder.rb, lib/review/epubbuilder.rb:
809
+ add =[xcolumn] column.
810
+
811
+ Sun Jul 4 22:28:44 2010 Kenshi Muto <kmuto@debian.org>
812
+
813
+ * lib/review/idgxmlbuilder.rb: support --listinfo in
814
+ //box and //insn.
815
+
816
+ Sat Jul 3 22:50:40 2010 Kenshi Muto <kmuto@debian.org>
817
+
818
+ * bin/review-compile, lib/review/idgxmlbuilder.rb:
819
+ add --listinfo parameter to make decorating program
820
+ list easier.
821
+
822
+ Tue Jun 22 21:49:10 2010 Kenshi Muto <kmuto@debian.org>
823
+
824
+ * lib/review/compiler.rb: ignore invalid inline op error
825
+ when it is in @<raw> op.
826
+ * test/test_epubbuilder.rb: add @<raw> op test.
827
+
828
+ Mon Jun 21 12:12:43 2010 Kenshi Muto <kmuto@debian.org>
829
+
830
+ * lib/review/builder.rb, lib/review/compiler.rb,
831
+ lib/review/idgxmlbuilder.rb, lib/review/epubbuilder.rb:
832
+
833
+ Tue Jun 15 16:34:55 2010 Kenshi Muto <kmuto@debian.org>
834
+
835
+ * lib/review/preprocessor.rb, bin/review-preproc: support
836
+ input/output encoding.
837
+
838
+ Tue Jun 15 13:24:07 2010 Kenshi Muto <kmuto@debian.org>
839
+
840
+ * bin/review-epubmaker, doc/sample.yaml: add mytoc
841
+ flag to control whether making own toc or not.
842
+ * bin/review-epubmaker add takahashim to copyright holder.
843
+
844
+ Tue Jun 15 12:52:12 2010 Kenshi Muto <kmuto@debian.org>
845
+
846
+ * bin/review-epubmaker: use copy instead of link.
847
+
848
+ Tue Jun 15 12:48:36 2010 Kenshi Muto <kmuto@debian.org>
849
+
850
+ * bin/review-epubmaker, doc/sample.yaml: handle debug
851
+ flag by YAML file.
852
+
853
+ Wed Jun 9 16:19:57 2010 Kenshi Muto <kmuto@debian.org>
854
+
855
+ * lib/review/epubbuilder.rb: support @<idx> and @<hidx>.
856
+
857
+ Thu Jun 3 00:45:16 2010 Masayoshi Takahashi <takahashimm@gmail.com>
858
+
859
+ * bin/review-epubmake: support secnolevel
860
+ * doc/sample.yaml: add secnolevel sample
861
+
862
+ Tue Jun 1 13:37:09 2010 Kenshi Muto <kmuto@debian.org>
863
+
864
+ * test/test_epubbuilder.rb: fix test string.
865
+
866
+ Tue Jun 1 13:29:55 2010 Kenshi Muto <kmuto@debian.org>
867
+
868
+ * lib/review/topbuilder.rb: add @<tti> op. modify some strings.
869
+
870
+ Tue Jun 1 07:24:47 2010 Kenshi Muto <kmuto@debian.org>
871
+
872
+ * merge takahashim's branch (5842b55c130e1f33fb58350e9c4778ac46a87e0f).
873
+ - add coverimage attribute in YAML file (to use it as iTunes artwork)
874
+
875
+ Sun May 30 11:18:55 2010 Kenshi Muto <kmuto@debian.org>
876
+
877
+ * merge takahashim's branch (2d7e0036d1311c8d1ca5)
878
+ - use id, not name in <a> element (for valid XHTML 1.1)
879
+ - fix zip format (from epubcheck)
880
+ - lang attr should not be used in xhtml 1.1 (use only xml:lang attr)
881
+ - fix invalid <ul> and <li> tags in toc.html
882
+ - escape value of href attributes in @<href>
883
+ - fix media-type and opf:role in OPF file
884
+ - <br/> should be in block element like <p>
885
+ - fix invalid URL(in namespace)
886
+ - hide cover page in navigation and add title page to show
887
+
888
+ Thu May 27 12:57:39 2010 Kenshi Muto <kmuto@debian.org>
889
+
890
+ * bin/review-epubmaker: support posthook.
891
+ * doc/sample.yaml: support posthook.
892
+ * lib/review/compiler.rb: support //raw.
893
+ * lib/review/epubbuilder.rb: support //memo, //tip, //info,
894
+ //planning, //best, //important, //security, //caution,
895
+ //notice, //point, //shoot, and @<tti>.
896
+ * lib/review/idgxmlbuilder.rb: move //raw to compiler.rb.
897
+
898
+ Wed May 26 15:46:05 2010 Kenshi Muto <kmuto@debian.org>
899
+
900
+ * merge takahashim's branch (4d23d423b4081558880d9f56d7b4d83ea231bd4a).
901
+ - fix to use inline tag in footnote of latexbuilder
902
+ - fixed escaping in href
903
+ - do not show any caption if caption words is empty
904
+ * lib/review/latexbuilder.rb: use level 2 as temporary level for
905
+ columns.
906
+
907
+ Tue May 25 20:53:44 2010 Kenshi Muto <kmuto@debian.org>
908
+
909
+ * merge takahashim's branch (1feedbcc1cf385af347b2ba398e7f10e70bb8be3)
910
+ - add tests of label and href in epubbuilder
911
+ - add tests of label and href in latexbuilder
912
+ - add //label op and support \ref in latexbuilder
913
+ - add @<href> for latexbuilder
914
+
915
+ Tue May 25 15:17:23 2010 Kenshi Muto <kmuto@topstudio.co.jp>
916
+
917
+ * lib/review/builder.rb, lib/review/compiler.rb,
918
+ lib/review/idgxmlbuilder.rb, lib/review/epubbuilder.rb:
919
+ add @<href> and //label op.
920
+
921
+ Tue May 25 14:40:53 2010 Kenshi Muto <kmuto@debian.org>
922
+
923
+ * bin/review-epubmaker, lib/review/epubbuider.rb, doc/sample.yaml:
924
+ add toc into epub.
925
+
926
+ Tue May 25 11:37:54 2010 Kenshi Muto <kmuto@debian.org>
927
+
928
+ * merge takahashim's branch (2d2944a63fae79586c3c1bf70aeed6e293f36393)
929
+ - lib/review/latexbuilder.rb: supported secnolevel.
930
+ - test/: added tests.
931
+ - refactoring a method headline()
932
+
933
+ Mon May 24 14:22:18 2010 Kenshi Muto <kmuto@debian.org>
934
+
935
+ * bin/review-epubmaker: specify explicitly -0 (uncompress) option
936
+ for mimetype.
937
+ * lib/review/epubbuilder.rb: remove prefix ./ from img href attribute.
938
+ * bin/review2idgxml, bin/review2top: removed. These files were added
939
+ accidentally.
940
+
941
+ Sat May 22 15:38:18 2010 Kenshi Muto <kmuto@debian.org>
942
+
943
+ * merge takahashim's branch. (279fecca05cdc1cdde5d156215785da6da6c2f11)
944
+ - lib/review/htmlbuilder.rb: escape titles of header.
945
+ add //parasep.
946
+ - lib/review/epubbuilder.rb: escape titles of header.
947
+ - lib/review/latexbuilder.rb: don't show the number of
948
+ sections.
949
+ use quotation env. for //quote.
950
+ add //parasep and //read.
951
+
952
+ Fri May 21 16:50:12 2010 Kenshi Muto <kmuto@debian.org>
953
+
954
+ * bin/review-index, lib/review/tocprinter.rb: Support
955
+ --inencoding and --outencoding.
956
+
957
+ Fri May 21 16:21:14 2010 Kenshi Muto <kmuto@debian.org>
958
+
959
+ * lib/review/epubbuilder.rb: Add //linebreak and //pagebreak.
960
+
961
+ Fri May 21 16:17:05 2010 Kenshi Muto <kmuto@debian.org>
962
+
963
+ * doc/sample.css, sample.yaml: Add sample files for
964
+ review-epubmaker.
965
+
966
+ Fri May 21 15:53:41 2010 Kenshi Muto <kmuto@debian.org>
967
+
968
+ * bin/review-check: modify to use lib/review/book instead of
969
+ lib/review/env. Support --inencoding and --outencoding
970
+ options.
971
+
972
+ Tue May 18 16:20:51 2010 Kenshi Muto <kmuto@debian.org>
973
+
974
+ * lib/review/epubbuilder.rb: use <p> instead of <caption>.
975
+
976
+ Tue May 18 11:16:57 2010 Kenshi Muto <kmuto@debian.org>
977
+
978
+ * lib/review/epubbuilder.rb, bin/review-epubbuilder:
979
+ fix a typo around meta information.
980
+
981
+ Mon May 17 22:06:50 2010 Kenshi Muto <kmuto@debian.org>
982
+
983
+ * lib/review/epubbuilder.rb: Add //noindent, @<u>.
984
+
985
+ Mon May 17 15:55:35 2010 Kenshi Muto <kmuto@debian.org>
986
+
987
+ * lib/review/book.rb, bin/review-vol: Fix review-vol to pass
988
+ parameters correctly.
989
+
990
+ Mon May 17 12:14:48 2010 Kenshi Muto <kmuto@debian.org>
991
+
992
+ * lib/review/book.rb: Skip any contents except \A=+
993
+ when taking a title.
994
+
995
+ Mon May 17 12:05:41 2010 Kenshi Muto <kmuto@debian.org>
996
+
997
+ * bin/review-compile, epubbuilder.rb: add --stylesheet=file
998
+ option.
999
+
1000
+ Mon May 17 11:06:46 2010 Kenshi Muto <kmuto@debian.org>
1001
+
1002
+ * lib/review/epubbuilder.rb: treat comment as HTML comment.
1003
+
1004
+ Mon May 17 11:02:33 2010 Kenshi Muto <kmuto@debian.org>
1005
+
1006
+ * lib/review/compiler.rb, lib/review/htmlbuilder.rb,
1007
+ lib/review/epubbuilder.rb: add //lead as alias of read.
1008
+ Support dummy //tsize on epubbuilder.
1009
+
1010
+ Fri May 14 16:09:41 2010 Kenshi Muto <kmuto@debian.org>
1011
+
1012
+ * bin/review-epubmaker: Pass more meta info to opf file.
1013
+
1014
+ Fri May 14 15:24:41 2010 Kenshi Muto <kmuto@debian.org>
1015
+
1016
+ * lib/review/epubbuilder.rb: Support --level as same as
1017
+ idgxmlbuilder.
1018
+
1019
+ Fri May 14 12:29:53 2010 Kenshi Muto <kmuto@debian.org>
1020
+
1021
+ * bin/review-epubmaker: Add toc, cover feature. Fix a link.
1022
+ Now it works minimum.
1023
+
1024
+ Thu May 13 16:40:30 2010 Kenshi Muto <kmuto@debian.org>
1025
+
1026
+ * lib/review/book.rb, lib/review/index.rb: use a parameter
1027
+ hash instead of global parameter.
1028
+
1029
+ Thu May 13 14:25:08 2010 Kenshi Muto <kmuto@debian.org>
1030
+
1031
+ * doc/format.txt: Fix a typo. layout/ -> layouts/
1032
+
1033
+ Thu May 13 14:15:34 2010 Kenshi Muto <kmuto@debian.org>
1034
+
1035
+ * bin/review-epubmaker: initial epub maker (under development)
1036
+ * lib/review/epubbuilder.rb: initial epub builder.
1037
+ * bin/review-compile, lib/review/*.rb: use a parameter hash
1038
+ instead of global parameter.
1039
+ * lib/review/book.rb: allow SVG as image files.
1040
+
1041
+ Fri Apr 30 21:59:34 2010 Kenshi Muto <kmuto@debian.org>
1042
+
1043
+ * lib/review/idgxmlbuilder.rb: add 'type' attribute in list
1044
+ element to identify cmd and emlist.
1045
+
1046
+ Sun Apr 18 17:15:04 2010 Kenshi Muto <kmuto@debian.org>
1047
+
1048
+ * bin/review-validate: check itemized/numbered list in block.
1049
+
1050
+ Fri Apr 16 19:31:49 2010 Kenshi Muto <kmuto@debian.org>
1051
+
1052
+ * bin/review-validate: add new tool for simple validaton.
1053
+
1054
+ Fri Apr 16 19:00:29 2010 Kenshi Muto <kmuto@debian.org>
1055
+
1056
+ * lib/review/idgxmlbuilder.rb: Remove literal 'page' string from
1057
+ <pageref>.
1058
+
1059
+ Sun Jan 17 16:11:37 2010 Kenshi Muto <kmuto@debian.org>
1060
+
1061
+ * lib/review/idgxmlbuilder.rb: Support //source, //listnum,
1062
+ //emlistnum, //bibpaper, @<bib>, @<code>.
1063
+
1064
+ Sun Jan 17 11:05:26 2010 Kenshi Muto <kmuto@debian.org>
1065
+
1066
+ * bin/review-compile, lib/review/idgxmlbuilder.rb,
1067
+ lib/review/index.rb: Add --subdirmode option.
1068
+ If the option is specified, ReVIEW finds images from
1069
+ images/<chapname>/<id>.<ext> instead of
1070
+ images/<chapname>-<id>.<ext>.
1071
+
1072
+ Sat Jan 16 23:12:56 2010 Kenshi Muto <kmuto@debian.org>
1073
+
1074
+ * bin/review-compile, bin/review-vol, doc/format.txt,
1075
+ lib/review/book.rb, lib/review/builder.rb,
1076
+ lib/review/compiler.rb, lib/review/htmlbuilder.rb,
1077
+ lib/review/htmllayout.rb, lib/review/idgxmlbuilder.rb,
1078
+ lib/review/index.rb, lib/review/latexbuilder.rb,
1079
+ lib/review/tocprinter.rb, lib/review/topbuilder.rb,
1080
+ lib/review/volume.rb: Merged most of Mr. Narihiro Nakamura's
1081
+ branch.
1082
+ New block //source, //listnum, //emlistnum, //bibpaper.
1083
+ New op @<bib>, @<code>.
1084
+ Support HTML layout.
1085
+ Support PART file.
1086
+ Change default internal character encoding to UTF-8.
1087
+ * bin/review-compile, bin/review-vol, lib/lineinput.rb,
1088
+ lib/review/book.rb, lib/review/builder.rb,
1089
+ lib/review/idgxmlbuilder.rb, lib/review/preprocessor.rb:
1090
+ Add --inencoding and --outencoding option to specify
1091
+ the encoding of source/dest file. Default outencoding is
1092
+ UTF-8. Default inencoding is autodetect.
1093
+ It accepts UTF-8, EUC, JIS and SJIS.
1094
+
1095
+ Tue Jan 12 11:13:39 2010 Kenshi Muto <kmuto@debian.org>
1096
+
1097
+ * lib/review/idgxmlbuilder.rb, doc/format_idg.txt: New op @<uchar>.
1098
+
1099
+ Sat Jan 9 09:12:50 2010 Kenshi Muto <kmuto@debian.org>
1100
+
1101
+ * lib/review/idgxmlbuilder.rb, bin/review-compile,
1102
+ doc/format_idg.txt: Add --chapref option to modify chapref
1103
+ decorating.
1104
+
1105
+ Tue Dec 8 16:05:48 2009 Kenshi Muto <kmuto@debian.org>
1106
+
1107
+ * lib/review/idgxmlbuilder.rb, doc/format_idg.txt: New column
1108
+ [edition] and [insideout]. New block //shoot.
1109
+
1110
+ Fri Nov 27 14:15:25 2009 Kenshi Muto <kmuto@debian.org>
1111
+
1112
+ * doc/format_idg.txt, lib/review/idgxmlbuilder.rb: New block
1113
+ //rawblock. Revert //raw.
1114
+
1115
+ Thu Nov 26 12:13:00 2009 Kenshi Muto <kmuto@debian.org>
1116
+
1117
+ * lib/review/idgxmlbuilder.rb: New block //raw.
1118
+
1119
+ Tue Nov 24 12:55:52 2009 Kenshi Muto <kmuto@debian.org>
1120
+
1121
+ * lib/review/idgxmlbuilder.rb: add images/ for searching an image.
1122
+
1123
+ Mon Nov 23 23:33:26 2009 Kenshi Muto <kmuto@debian.org>
1124
+
1125
+ * lib/review/idgxmlbuilder.rb: warn when an image doesn't exist.
1126
+
1127
+ Wed Sep 2 13:13:56 2009 Kenshi Muto <kmuto@debian.org>
1128
+
1129
+ * lib/review/book.rb: fix preface and postscript namelist
1130
+ support.
1131
+
1132
+ Sun Jul 19 13:14:47 2009 Minero Aoki <aamine@loveruby.net>
1133
+
1134
+ * lib/review/tocprinter.rb: use Chapter#number to get chapter
1135
+ number, instead of generating it by myself. Preface and
1136
+ postscript does not have chapter number.
1137
+
1138
+ Wed Jul 1 21:03:07 2009 Kenshi Muto <kmuto@debian.org>
1139
+
1140
+ * lib/review/topbuilder.rb: Add singlechoice and multichoice.
1141
+
1142
+ Tue Jun 23 15:11:34 2009 Kenshi Muto <kmuto@debian.org>
1143
+
1144
+ * lib/review/idgxmlbuilder.rb: escape HTML of keyword alternative.
1145
+
1146
+ Mon Jun 22 08:44:38 2009 Kenshi Muto <kmuto@debian.org>
1147
+
1148
+ * lib/review/index.rb: warn duplicate id.
1149
+
1150
+ Sat Jun 13 16:11:14 2009 Minero Aoki <aamine@loveruby.net>
1151
+
1152
+ * lib/review/book.rb (part): review-index -p causes nil access.
1153
+
1154
+ Mon Jun 1 16:01:21 2009 Kenshi Muto <kmuto@debian.org>
1155
+
1156
+ * lib/review/book.rb: Add basedir path when it calls
1157
+ ImageIndex.parse. This change may destroy if users define
1158
+ specific absolete path for image_dir.
1159
+
1160
+ Thu May 28 17:21:27 2009 Kenshi Muto <kmuto@debian.org>
1161
+
1162
+ * lib/review/book.rb: Add env method into Chapter class to
1163
+ support a backward compatibility for @<chap> tag.
1164
+
1165
+ Wed May 27 12:59:20 2009 Kenshi Muto <kmuto@debian.org>
1166
+
1167
+ * Merged from kmuto branch.
1168
+ * lib/review/idgxmlbuilder.rb: improve handling empty cells.
1169
+ * lib/review/topbuilder.rb: sync styles of topbuilder.rb with
1170
+ idgxmlbuilder.rb.
1171
+ * lib/review/idgxmlbuilder.rb: warn instead of error when
1172
+ table size exceeds the limit.
1173
+ * lib/review/idgxmlbuilder.rb: allow null table row.
1174
+ * lib/review/builder.rb, lib/review/idgxmlbuilder.rb,
1175
+ lib/review/index.rb, lib/review/topbuilder.rb,
1176
+ lib/review/compiler.rb, doc/format_idg.txt:
1177
+ support null id/caption table.
1178
+ * lib/review/idgxmlbuilder.rb: maru op supports A-Za-z also.
1179
+ * lib/review/idgxmlbuilder.rb: new block //link.
1180
+ * doc/format_idg.txt: mention about //link.
1181
+ * lib/review/idgxmlbuilder.rb: fix table cell width count.
1182
+ * lib/review/idgxmlbuilder.rb: use <span> for the rerefences of
1183
+ image, table, and list.
1184
+ * lib/review/idgxmlbuilder.rb, doc/format_idg.txt: new single
1185
+ command //tsize.
1186
+ * bin/review-compile, lib/review/idgxmlbuilder.rb: add -nolfinxml
1187
+ option to remove all LFs from XML elements.
1188
+ * lib/review/compiler.rb, lib/review/idgxmlbuilder.rb:
1189
+ Use \t prefix of <p> as indented list level.
1190
+ * lib/review/idgxmlbuilder.rb: remove \n from <quote>.
1191
+ * lib/review/idgxmlbuilder.rb: new column style [world] and
1192
+ [hood].
1193
+ * lib/review/idgxmlbuilder.rb: new block //memo, //tip, //info,
1194
+ //planning, //best, //security and //caution.
1195
+ * doc/format_idg.txt: mention about added tags.
1196
+ * lib/review/idgxmlbuilder.rb: do escape html for
1197
+ some captions.
1198
+ * lib/review/idgxmlbuilder.rb, lib/review/topbuilder.rb:
1199
+ new op @<balloon>.
1200
+ * doc/format_idg.txt: mention about @<balloon>.
1201
+ * lib/review/idgxmlbuilder.rb, bin/review-compile:
1202
+ add --table option to specify the width of tables and
1203
+ make tables InDesign table objects.
1204
+ * lib/review/topbuilder.rb: fix column_begin to accept
1205
+ label parameter.
1206
+ * lib/review/idgxmlbuilder.rb: new op @<u>, @<icon>, @<ref>,
1207
+ @<pageref>.
1208
+ * lib/review/topbuilder.rb: ditto.
1209
+ * lib/review/idgxmlbuilder.rb: use <caption> tag instead of
1210
+ <title> in quotedlist and box blocks.
1211
+ move an image header to the bottom of an image.
1212
+ * lib/review/idgxmlbuilder.rb, lib/review/topbuilder.rb,
1213
+ lib/review/compiler.rb: emlist and cmd block may have a
1214
+ caption.
1215
+ * lib/review/idgxmlbuilder.rb, lib/review/topbuilder.rb,
1216
+ lib/review/compiler.rb, lib/review/htmlbuilder.rb:
1217
+ hand over the number value of <ol> to ol_item.
1218
+ * lib/review/idgxmlbuilder.rb: use \A for finding a head instead
1219
+ of ^.
1220
+ * lib/review/latexbuilder.rb, lib/review/idgxmlbuilder.rb,
1221
+ lib/review/topbuilder.rb, lib/review/compiler.rb,
1222
+ lib/review/htmlbuilder.rb: add {label} option into headers.
1223
+ label may be reffered by @<ref> op.
1224
+ * lib/review/topbuilder.rb: sync ops and blocks with
1225
+ idgxmlbuilder.
1226
+ * lib/review/idgxmlbuilder.rb: box caption is optional.
1227
+ * doc/format_idg.txt: mention about return, //label and
1228
+ @<labelref>.
1229
+ * lib/review/idgxmlbuilder.rb: new inline op @<labelref>, @<tti>.
1230
+ new block //label.
1231
+ * lib/review/idgxmlbuilder.rb: call compile_inline instead of
1232
+ escape_html for <footnote> and <ruby>.
1233
+ * lib/review/idgxmlbuilder.rb: new block //lead.
1234
+ * doc/format_idg.txt: mention about //point.
1235
+ * lib/review/idgxmlbuilder.rb: new block //point.
1236
+ * doc/format_idg.txt: mention about nonum and circle option.
1237
+ * lib/review/idgxmlbuilder.rb: new header option [circle].
1238
+ * doc/format_idg.txt: mention about //important, //notice,
1239
+ @<maru>, @<keytop>.
1240
+ * lib/review/idgxmlbuilder.rb: new inine op @<keytop>, @<maru>.
1241
+ * lib/review/idgxmlbuilder.rb: escape index strings of @<ttbold>
1242
+ before embedding.
1243
+ * lib/review/book.rb: increase maximum section level to 5.
1244
+ * lib/review/idgxmlbuilder.rb: new inline op @<raw>.
1245
+ //notice may have a caption.
1246
+ * lib/review/idgxmlbuilder.rb: //note and //important may have
1247
+ a caption.
1248
+ * lib/review/idgxmlbuilder.rb: embed index information to
1249
+ @<ttbold>.
1250
+ * doc/format_idg.txt: mention about //important and //expert.
1251
+ * lib/review/idgxmlbuilder.rb: new block //expert.
1252
+ * lib/review/idgxmlbuilder.rb, lib/review/compiler.rb: support
1253
+ choice list. "space + white box" becomes multiple choice list.
1254
+ "space + white circle" becomes single choice list.
1255
+ * lib/review/idgxmlbuilder.rb, bin/review-compile: add
1256
+ --level option. idgxmlbuilder sets a number to the headers up
1257
+ to specified value.
1258
+ * doc/format_idg.txt: mention about //important, //notice, //term,
1259
+ //reference.
1260
+ * lib/review/idgxmlbuilder.rb: new block //important, //notice,
1261
+ //reference, and //term.
1262
+ * lib/review/idgxmlbuilder.rb: surround a table by <tbody> tag.
1263
+ * lib/review/idgxmlbuilder.rb: no need to convert &quot, &lt,
1264
+ and &gt.
1265
+ * doc/format_idg.txt: new documentation for InDesign builder.
1266
+ * lib/review/idgxmlbuilder.rb: output table without doing
1267
+ compile_inline. compile_inline caused a duplicated character
1268
+ escape.
1269
+ * bin/review-index, lib/review/tocprinter.rb: support XML format
1270
+ output.
1271
+ * lib/review/idgxmlbuilder.rb: new op @<hint>.
1272
+ * lib/review/idgxmlbuilder.rb: new block //insn.
1273
+ * lib/review/idgxmlbuilder.rb: new inline op @<sup>, @<sub>,
1274
+ @<dtp>, @<ttbold>.
1275
+ new block //flushright, //raw, //indepimage, //note, //practice,
1276
+ //box.
1277
+ * lib/review/idgxmlbuilder.rb: correct an index expression of
1278
+ @<kw>.
1279
+ * make branches/kmuto to implement experimental features.
1280
+ * lib/review/env.rb: support TOCs for a front matter and a rear
1281
+ matter. PREDEF is for front, POSTDEF is for rear.
1282
+ * lib/review/idgxmlbuilder.rb: new builder for Adobe InDesign.
1283
+
1284
+ Sun May 24 23:02:58 2009 Minero Aoki <aamine@loveruby.net>
1285
+
1286
+ * lib/review/preprocessor.rb: overwrapped range did not work.
1287
+
1288
+ Sun May 24 22:49:12 2009 Minero Aoki <aamine@loveruby.net>
1289
+
1290
+ * lib/review/preprocessor.rb: failed on unclosed range.
1291
+
1292
+ Sun May 24 21:10:07 2009 Minero Aoki <aamine@loveruby.net>
1293
+
1294
+ * lib/review/preprocessor.rb: new directive alias #@map
1295
+ (equivalent to #@maprange).
1296
+
1297
+ Sun May 24 21:04:44 2009 Minero Aoki <aamine@loveruby.net>
1298
+
1299
+ * lib/review/preprocessor.rb (unindent): did not work. Support
1300
+ Line objects.
1301
+
1302
+ Sat May 2 10:44:50 2009 Minero Aoki <aamine@loveruby.net>
1303
+
1304
+ * lib/review/book.rb: treat postscript.re as postscript
1305
+ automatically.
1306
+
1307
+ * lib/review/book.rb: should use PREDEF, POSTDEF as file
1308
+ declaration.
1309
+
1310
+ * lib/review/tocparser.rb: could not display Part by review-vol.
1311
+
1312
+ * bin/review-index: do not rely on part position.
1313
+
1314
+ Tue Feb 12 05:16:27 2008 Minero Aoki <aamine@loveruby.net>
1315
+
1316
+ * lib/review/tocprinter.rb: show volumes on left hand side to
1317
+ avoid column corruption on Ruby 1.9.
1318
+
1319
+ Tue Feb 12 05:04:55 2008 Minero Aoki <aamine@loveruby.net>
1320
+
1321
+ * bin/review-vol: adjust total volume column (using SQL "WITH"
1322
+ style).
1323
+
1324
+ Tue Feb 12 04:45:57 2008 Minero Aoki <aamine@loveruby.net>
1325
+
1326
+ * bin/review-vol: always use Chapter#volume to get chapter
1327
+ volumes. Do not use Chapter#kbytes, n_chars, n_lines.
1328
+
1329
+ * lib/review/book.rb: remove Chapter#kbytes, n_chars, n_lines.
1330
+
1331
+ Mon Feb 11 05:41:20 2008 Minero Aoki <aamine@loveruby.net>
1332
+
1333
+ * lib/review/tocparser.rb: fix typo.
1334
+
1335
+ Sun Feb 10 20:48:20 2008 Minero Aoki <aamine@loveruby.net>
1336
+
1337
+ * lib/review/book.rb: move method: Book.intern_pathes ->
1338
+ Chapter.intern_pathes.
1339
+
1340
+ * bin/review-compile: ditto.
1341
+
1342
+ * lib/review/book.rb (ChapterSet.for_pathes): inherit book
1343
+ property by using Chapter.intern_pathes.
1344
+
1345
+ * lib/review/book.rb: Chapter.new accept both of chapter id and
1346
+ path, instead of basename and dirname, to allow generating TOC of
1347
+ stdin correctly.
1348
+
1349
+ * lib/review/tocparser.rb: ditto.
1350
+
1351
+ * lib/review/volume.rb: ditto.
1352
+
1353
+ Sun Feb 10 03:26:12 2008 Minero Aoki <aamine@loveruby.net>
1354
+
1355
+ * bin/review-index: must require review/tocparser to get
1356
+ TOCPrinter work.
1357
+
1358
+ * lib/review/tocparser.rb: introduce dummy chapter for no-title
1359
+ chapter such as preface.re.
1360
+
1361
+ * lib/review/tocprinter.rb: refactoring.
1362
+
1363
+ Sat Feb 9 23:44:05 2008 Minero Aoki <aamine@loveruby.net>
1364
+
1365
+ * bin/review-compile: print program name before error message.
1366
+
1367
+ * lib/review/book.rb: should raise FileNotFound (<
1368
+ ApplicationError) if manuscript file does not exist.
1369
+
1370
+ * lib/review/exception.rb: new exception class FileNotFound.
1371
+
1372
+ * lib/review/exception.rb: ConfigError, CompileError should
1373
+ inherit ApplicationError.
1374
+
1375
+ * lib/review/compiler.rb: add inline element dtp officially.
1376
+
1377
+ * lib/review/htmlbuilder.rb: support tagged section column (tmp).
1378
+
1379
+ * lib/review/htmlbuilder.rb: support inline ami (tmp).
1380
+
1381
+ * lib/review/htmlbuilder.rb: support inline dtp.
1382
+
1383
+ Sat Feb 9 23:27:22 2008 Minero Aoki <aamine@loveruby.net>
1384
+
1385
+ * bin/review-vol: change option: -p -> -P.
1386
+
1387
+ * bin/review-vol: -P did not work.
1388
+
1389
+ * lib/review/book.rb: new method Part#volume.
1390
+
1391
+ Sat Feb 9 23:18:28 2008 Minero Aoki <aamine@loveruby.net>
1392
+
1393
+ bin/review-vol: follow structure change.
1394
+
1395
+ bin/review-compile: ditto.
1396
+
1397
+ bin/review-index: use Book or ChapterSet for tree root. TOC trees
1398
+ are got from a Chapter.
1399
+
1400
+ lib/review/book.rb: new method Book#intern_pathes.
1401
+
1402
+ lib/review/book.rb: new method Book#no_part?
1403
+
1404
+ lib/review/book.rb: rename meethod: Book#chaps -> chapters.
1405
+
1406
+ lib/review/book.rb: new method Book#volume.
1407
+
1408
+ lib/review/tocparser.rb: use ReVIEW::Book and ChapterFile for TOC
1409
+ tree root.
1410
+
1411
+ Sat Feb 9 22:11:49 2008 Minero Aoki <aamine@loveruby.net>
1412
+
1413
+ * lib/review/unfold.rb: turn on SVN Id.
1414
+
1415
+ * lib/review/tocprinter.rb: ditto.
1416
+
1417
+ * lib/review/book.rb: ditto.
1418
+
1419
+ * lib/review/volume.rb: ditto.
1420
+
1421
+ Sat Feb 9 22:07:09 2008 Minero Aoki <aamine@loveruby.net>
1422
+
1423
+ * lib/review/chapterfile.rb -> book.rb
1424
+
1425
+ Sat Feb 9 22:06:36 2008 Minero Aoki <aamine@loveruby.net>
1426
+
1427
+ * bin/review-index: use TOCParser directly, Book is now different
1428
+ class.
1429
+
1430
+ * lib/review/chapterfile.rb: merge env.rb.
1431
+
1432
+ * lib/review/chapterfile.rb: rename class: Environment -> Book.
1433
+
1434
+ * lib/review/chapterfile.rb: new class Part.
1435
+
1436
+ * lib/review/chapterfile.rb: rename class: ChapterFile -> Chapter.
1437
+
1438
+ * lib/review/env.rb: removed (merged in to chapterfile.rb).
1439
+
1440
+ * lib/review/book.rb -> tocparser.rb.
1441
+
1442
+ Sun Jan 6 02:17:35 2008 Minero Aoki <aamine@loveruby.net>
1443
+
1444
+ * lib/review/preprocessor.rb: Ruby 1.9 prints an array as array,
1445
+ not lines.
1446
+
1447
+ Sun Jan 6 02:04:21 2008 Minero Aoki <aamine@loveruby.net>
1448
+
1449
+ * lib/review/preprocessor.rb: new directive #@defvar.
1450
+
1451
+ * lib/review/preprocessor.rb: refactoring: extract method:
1452
+ #replace_block.
1453
+
1454
+ * lib/review/preprocessor.rb: refactoring: split big "when" clause
1455
+ which processes #@map directive.
1456
+
1457
+ * lib/review/preprocessor.rb: refactoring: objectify line: new
1458
+ class `Line' introduced.
1459
+
1460
+ * lib/review/preprocessor.rb: refactoring: objectify directive:
1461
+ new class `Directive' introduced.
1462
+
1463
+ * lib/review/preprocessor.rb: refactoring: remove useless old
1464
+ lvars, codes.
1465
+
1466
+ Mon Dec 31 16:20:03 2007 Minero Aoki <aamine@loveruby.net>
1467
+
1468
+ * bin/review-vol: raise error if $DEBUG is on.
1469
+
1470
+ * bin/review-index: ditto.
1471
+
1472
+ * bin/review-compile: ditto.
1473
+
1474
+ * bin/review-preproc: ditto.
1475
+
1476
+ * lib/review/builder.rb: add magic tag -*- encoding: EUC-JP -*- to
1477
+ support Ruby 1.9 M17N.
1478
+
1479
+ * lib/review/index.rb: ditto.
1480
+
1481
+ * lib/review/topbuilder.rb: ditto.
1482
+
1483
+ * lib/review/compiler.rb: ditto.
1484
+
1485
+ * lib/review/htmlbuilder.rb: ditto.
1486
+
1487
+ Sun Dec 30 15:13:11 2007 Minero Aoki <aamine@loveruby.net>
1488
+
1489
+ * bin/review-vol: $KCODE does not effect on Ruby 1.9.0.
1490
+
1491
+ * bin/review-index: ditto.
1492
+
1493
+ * bin/review-compile: ditto.
1494
+
1495
+ * bin/review-preproc: ditto.
1496
+
1497
+ * bin/review-check: ditto.
1498
+
1499
+ * lib/review/compat.rb: define String#bytesize and #charsize.
1500
+
1501
+ * lib/review/book.rb: use them.
1502
+
1503
+ * lib/review/volume.rb: ditto.
1504
+
1505
+ * lib/review/compiler.rb: modify varname.
1506
+
1507
+ Mon Dec 24 16:06:03 2007 Minero Aoki <aamine@loveruby.net>
1508
+
1509
+ * bin/review-vol: add review libdir to the load path.
1510
+
1511
+ * bin/review-checkdep: ditto.
1512
+
1513
+ * bin/review-index: ditto.
1514
+
1515
+ * bin/review-compile: ditto.
1516
+
1517
+ * bin/review-preproc: ditto.
1518
+
1519
+ * bin/review-check: ditto.
1520
+
1521
+ Mon Dec 24 15:56:15 2007 Minero Aoki <aamine@loveruby.net>
1522
+
1523
+ * lib/review/compiler.rb: @<ami> is standard inline.
1524
+
1525
+ * lib/review/topbuilder.rb: support @<ami>.
1526
+
1527
+ Thu Mar 1 18:38:09 2007 Minero Aoki <aamine@loveruby.net>
1528
+
1529
+ * lib/review/tocprinter.rb (print_children): fix side-by-side bug.
1530
+ --level=2 should print only level-1 and level-2 section, not
1531
+ level-3 section.
1532
+
1533
+ * lib/review/book.rb: add #inspect for Node classes.
1534
+
1535
+ * bin/review-index: check value of --level.
1536
+
1537
+ Thu Feb 15 09:52:23 2007 Minero Aoki <aamine@loveruby.net>
1538
+
1539
+ * bin/review-vol: get chapter number from ChapterFile.
1540
+
1541
+ * lib/review/tocprinter.rb: ditto.
1542
+
1543
+ * lib/review/book.rb: ditto.
1544
+
1545
+ Thu Feb 15 09:36:23 2007 Minero Aoki <aamine@loveruby.net>
1546
+
1547
+ * lib/review/latexbuilder.rb (table_begin, table_end): output
1548
+ \reviewtable macro instead of LaTeX native \tabulate.
1549
+
1550
+ Thu Feb 15 09:17:16 2007 Minero Aoki <aamine@loveruby.net>
1551
+
1552
+ * lib/review/latexbuilder.rb: use ReVIEW object counter (tmp fix).
1553
+
1554
+ Thu Feb 15 08:47:23 2007 Minero Aoki <aamine@loveruby.net>
1555
+
1556
+ * lib/review/latexbuilder.rb: output \reviewlistlabel,
1557
+ \reviewtablelabel and its refering labels.
1558
+
1559
+ * lib/review/env.rb: add preface.re and appendix.re to the chapter
1560
+ list automatically.
1561
+
1562
+ * lib/review/chapterfile.rb: new method ChapterFile#inspect for
1563
+ debug.
1564
+
1565
+ Thu Feb 15 08:12:27 2007 Minero Aoki <aamine@loveruby.net>
1566
+
1567
+ * lib/review/compiler.rb: define optional 2nd argument of //image.
1568
+
1569
+ * lib/review/builder.rb (image): handle optional 2nd arg, metric.
1570
+
1571
+ * lib/review/latexbuilder.rb (image_image): write metric
1572
+ parameter.
1573
+
1574
+ * lib/review/htmlbuilder.rb (image_image): ignore metric
1575
+ parameter.
1576
+
1577
+ * lib/review/latexbuilder.rb (inline_bou): allow break between
1578
+ bouten chars.
1579
+
1580
+ * lib/review/index.rb: allow access to ImageIndex::Item#pathes.
1581
+
1582
+ Tue Feb 6 00:01:35 2007 Minero Aoki <aamine@loveruby.net>
1583
+
1584
+ * bin/review-checkdep: new command (tmp).
1585
+
1586
+ Sun Feb 4 02:54:51 2007 Minero Aoki <aamine@loveruby.net>
1587
+
1588
+ * lib/review/builder.rb: IndexError -> KeyError.
1589
+
1590
+ Sun Feb 4 02:54:29 2007 Minero Aoki <aamine@loveruby.net>
1591
+
1592
+ * lib/review/unfold.rb: new method
1593
+ ReVIEW::Unfold.unfold_author_source.
1594
+
1595
+ * lib/review/unfold.rb: new method ReVIEW::Unfold.unfold.
1596
+
1597
+ * lib/review/unfold.rb: fix typo.
1598
+
1599
+ Sun Feb 4 01:15:49 2007 Minero Aoki <aamine@loveruby.net>
1600
+
1601
+ * bin/review-preproc: fork review/unfold.rb.
1602
+
1603
+ * lib/review/unfold.rb: new file.
1604
+
1605
+ Sun Feb 4 00:58:16 2007 Minero Aoki <aamine@loveruby.net>
1606
+
1607
+ * lib/review/chapterfile.rb: ChapterFile#image_number,
1608
+ #image_file, ... are obsolete; use image(id).number,
1609
+ image(id).path, ...
1610
+
1611
+ * lib/review/index.rb: new method ImageIndex::Item#bound?, #path.
1612
+
1613
+ * lib/review/builder.rb: follow these changes.
1614
+
1615
+ * lib/review/htmlbuilder.rb: ditto.
1616
+
1617
+ * lib/review/latexbuilder.rb: ditto.
1618
+
1619
+ * lib/review/topbuilder.rb: ditto.
1620
+
1621
+ Sat Feb 3 22:59:31 2007 Minero Aoki <aamine@loveruby.net>
1622
+
1623
+ * bin/review-compile: do not allow empty file list.
1624
+
1625
+ Sat Feb 3 22:56:08 2007 Minero Aoki <aamine@loveruby.net>
1626
+
1627
+ * bin/review-compile: check grammar strictly on --check.
1628
+
1629
+ * lib/review/builder.rb: change initialize protocol.
1630
+
1631
+ * lib/review/htmlbuilder.rb: ditto.
1632
+
1633
+ * lib/review/latexbuilder.rb: ditto.
1634
+
1635
+ * lib/review/topbuilder.rb: ditto.
1636
+
1637
+ Sat Feb 3 21:59:41 2007 Minero Aoki <aamine@loveruby.net>
1638
+
1639
+ * lib/review/index.rb: __send -> __send__.
1640
+
1641
+ * lib/review/compat.rb: do not use __send/__send!.
1642
+
1643
+ Sat Feb 3 21:46:09 2007 Minero Aoki <aamine@loveruby.net>
1644
+
1645
+ * lib/review/compiler.rb: refactoring.
1646
+
1647
+ Sat Feb 3 21:45:08 2007 Minero Aoki <aamine@loveruby.net>
1648
+
1649
+ * bin/review-compile: use compiler.strategy.extname instead of
1650
+ compiler.ext.
1651
+
1652
+ * lib/review/latexbuilder.rb: define #extname.
1653
+
1654
+ * lib/review/htmlbuilder.rb: ditto.
1655
+
1656
+ Tue Jan 30 20:49:47 2007 Minero Aoki <aamine@loveruby.net>
1657
+
1658
+ * bin/review-index: call ruby via /usr/bin/env.
1659
+
1660
+ * bin/review-preproc: ditto.
1661
+
1662
+ Mon Jan 29 15:22:51 2007 Minero Aoki <aamine@loveruby.net>
1663
+
1664
+ * lib/review/volume.rb: reject spaces on calculating volume.
1665
+
1666
+ * lib/review/book.rb: ditto.
1667
+
1668
+ Mon Jan 29 15:04:41 2007 Minero Aoki <aamine@loveruby.net>
1669
+
1670
+ * bin/review-vol: fork review/volume.rb.
1671
+
1672
+ * bin/review-index: utilize ReVIEW::Entry's class methods.
1673
+
1674
+ * bin/review-compile: ignore SIGPIPE.
1675
+
1676
+ * bin/review-check: set $KCODE explicitly.
1677
+
1678
+ * lib/review/volume.rb: new file.
1679
+
1680
+ * lib/review/book.rb: FileSpec -> Entry.
1681
+
1682
+ * lib/review/book.rb: new method Entry#title.
1683
+
1684
+ * lib/review/book.rb: new method Entry#volume.
1685
+
1686
+ * lib/review/book.rb: new method Entry#kbytes, #bytes, #chars,
1687
+ #lines.
1688
+
1689
+ * lib/review/book.rb: Book.parse_files -> parse_entries.
1690
+
1691
+ * lib/review/book.rb: new class Chapter.
1692
+
1693
+ * lib/review/env.rb: fork chapterfile.rb.
1694
+
1695
+ * lib/review/chapterfile.rb: new file.
1696
+
1697
+ * lib/review/compiler.rb: DropComment -> Preprocessor::Strip.
1698
+
1699
+ * lib/review/dropcomment.rb: removed (use Preprocessor::Strip).
1700
+
1701
+ * lib/review/preprocessor.rb (unindent): reduce warning.
1702
+
1703
+ * lib/review/tocprinter.rb (TextTOCPrinter): print KB/Chars for
1704
+ chapters.
1705
+
1706
+ Mon Jan 29 12:10:02 2007 Minero Aoki <aamine@loveruby.net>
1707
+
1708
+ * bin/review-compile: must set $KCODE.
1709
+
1710
+ * lib/review/latexbuilder.rb: implement @<bou>.
1711
+
1712
+ * lib/review/compiler.rb: reduce warning.
1713
+
1714
+ * lib/review/env.rb: temporary fix for current ruby 1.9.
1715
+
1716
+ Mon Jan 29 11:29:21 2007 Minero Aoki <aamine@loveruby.net>
1717
+
1718
+ * bin/review-list -> review-vol.
1719
+
1720
+ * bin/review-vol: print kbytes, n-chars, n-lines.
1721
+
1722
+ Mon Jan 29 10:47:21 2007 Minero Aoki <aamine@loveruby.net>
1723
+
1724
+ * bin/review-index: refactoring: extract lib/review/tocprinter.
1725
+
1726
+ * lib/review/tocprinter.rb: new file.
1727
+
1728
+ Mon Jan 29 10:41:35 2007 Minero Aoki <aamine@loveruby.net>
1729
+
1730
+ * bin/review-index: refactoring: extract class TOCPrinter,
1731
+ TextPrinter, HTMLPrinter.
1732
+
1733
+ Sun Jan 28 05:46:04 2007 Minero Aoki <aamine@loveruby.net>
1734
+
1735
+ * lib/review/builder.rb (image): pass caption to image_dummy.
1736
+
1737
+ * lib/review/latexbuilder.rb (image_image): image is always bound
1738
+ here, check is not required.
1739
+
1740
+ * lib/review/latexbuilder.rb (image_dummy): always show (empty)
1741
+ text and image caption, \label.
1742
+
1743
+ * lib/review/latexbuilder.rb (compile_kw): fix syntax error.
1744
+
1745
+ * lib/review/htmlbuilder.rb: now Builder#image does not call
1746
+ image_header, call it from image_image/dummy.
1747
+
1748
+ Sun Jan 28 04:23:05 2007 Minero Aoki <aamine@loveruby.net>
1749
+
1750
+ * lib/review/latexbuilder.rb (inline_kw): do not emphasis alt
1751
+ word.
1752
+
1753
+ Sat Jan 27 07:25:49 2007 Minero Aoki <aamine@loveruby.net>
1754
+
1755
+ * lib/review/index.rb: silently ignore if directory images/ not
1756
+ exist.
1757
+
1758
+ Sat Jan 27 07:24:53 2007 Minero Aoki <aamine@loveruby.net>
1759
+
1760
+ * lib/review/latexbuilder.rb: add `review' prefix to macro names.
1761
+
1762
+ Fri Jan 26 04:03:09 2007 Minero Aoki <aamine@loveruby.net>
1763
+
1764
+ * bin/review-compile: rescue ReVIEW::ApplicationError.
1765
+
1766
+ * lib/review/index.rb: Index.parse never fails.
1767
+
1768
+ * lib/review/env.rb: ditto.
1769
+
1770
+ * lib/review/compiler.rb: new method Location#to_s.
1771
+
1772
+ * lib/review/builder.rb: use it.
1773
+
1774
+ * lib/review/compiler.rb: new syntax //quote.
1775
+
1776
+ * lib/review/htmlbuilder.rb: ditto.
1777
+
1778
+ * lib/review/latexbuilder.rb: ditto.
1779
+
1780
+ * lib/review/latexbuilder.rb: catch up current
1781
+ compiler.rb/builder.rb.
1782
+
1783
+ Fri Jan 26 01:48:39 2007 Minero Aoki <aamine@loveruby.net>
1784
+
1785
+ * bin/review-compile: get file extension from builder.
1786
+
1787
+ * lib/review/htmlbuilder.rb: ditto.
1788
+
1789
+ * lib/review/latexbuilder.rb: ditto.
1790
+
1791
+ * lib/review/builder.rb: ditto.
1792
+
1793
+ * lib/review/compiler.rb: //image block is optional.
1794
+
1795
+ * lib/review/htmlbuilder.rb: output warning/error unless no_error
1796
+ mode.
1797
+
1798
+ * lib/review/latexbuilder.rb (table_begin): show table border.
1799
+
1800
+ * lib/review/latexbuilder.rb (table_begin, table_separator, tr):
1801
+ support hline.
1802
+
1803
+ * lib/review/latexbuilder.rb (ol_item): fix syntax error.
1804
+
1805
+ * lib/review/builder.rb: fix exception class name.
1806
+
1807
+ Thu Jan 25 00:05:02 2007 Minero Aoki <aamine@loveruby.net>
1808
+
1809
+ * bin/review-preproc: new option --final.
1810
+
1811
+ * lib/review/preprocessor.rb: new mehtod Preprocessor.strip.
1812
+
1813
+ * lib/review/preprocessor.rb: new class Preprocessor::Strip.
1814
+
1815
+ Sun Jan 21 09:52:28 2007 Minero Aoki <aamine@loveruby.net>
1816
+
1817
+ * bin/review-compile: new option -a/--all.
1818
+
1819
+ * lib/review/latexbuilder.rb: work again.
1820
+
1821
+ * lib/review/builder.rb: new inline op @<chapref>.
1822
+
1823
+ * lib/review/builder.rb (print, puts): should take 0- args.
1824
+
1825
+ * lib/review/builder.rb (image_dummy): should take 2 args, id and
1826
+ caption.
1827
+
1828
+ * lib/review/htmlbuilder.rb: ditto.
1829
+
1830
+ * lib/review/env.rb: Ruby 1.9 does not have String#to_a.
1831
+
1832
+ * lib/review/index.rb (ChapterIndex): returns Japanese string
1833
+ (tmp).
1834
+
1835
+ Sun Jan 21 08:33:17 2007 Minero Aoki <aamine@loveruby.net>
1836
+
1837
+ * lib/review/env.rb (read_CHAPS): return *.re if CHAPS not exist.
1838
+
1839
+ Sun Oct 22 09:02:26 2006 Minero Aoki <aamine@loveruby.net>
1840
+
1841
+ * lib/review/compat.rb: new file. Provide Object#__send,
1842
+ #__send!, String#lines.
1843
+
1844
+ * lib/review/compiler.rb: use them.
1845
+
1846
+ * lib/review/env.rb: ditto.
1847
+
1848
+ * lib/review/index.rb: ditto.
1849
+
1850
+ Thu Aug 10 23:02:55 2006 Minero Aoki <aamine@loveruby.net>
1851
+
1852
+ * lib/review/htmlbuilder.rb: block text is already processed by
1853
+ #nofunc_text.
1854
+
1855
+ Sat May 13 09:09:00 2006 Minero Aoki <aamine@loveruby.net>
1856
+
1857
+ * bin/review2 -> bin/review-compile.
1858
+
1859
+ * bin/review-compile: new option --check.
1860
+
1861
+ * bin/review-index: new option --html.
1862
+
1863
+ * lib/review/topbuilder.rb: new builder.
1864
+
1865
+ * lib/review/compiler.rb: compile inline triggers in lists.
1866
+
1867
+ * lib/review/compiler.rb: new syntax "===[column] ...."
1868
+
1869
+ * lib/review/env.rb: new class ReVIEW::Chapter.
1870
+
1871
+ Sat Apr 15 12:05:07 2006 Minero Aoki <aamine@loveruby.net>
1872
+
1873
+ * lib/lineinput.rb: new file (tmp).
1874
+
1875
+ Sat Apr 15 12:02:55 2006 Minero Aoki <aamine@loveruby.net>
1876
+
1877
+ * bin/review2: new option --directory.
1878
+
1879
+ * lib/review/builder.rb: got chapter number from driver.
1880
+
1881
+ Sat Apr 15 11:22:46 2006 Minero Aoki <aamine@loveruby.net>
1882
+
1883
+ * lib/review/builder.rb: add adjust_n_cols.
1884
+
1885
+ * lib/review/htmlbuilder.rb: remove adjust_n_cols.
1886
+
1887
+ Sat Apr 15 11:22:07 2006 Minero Aoki <aamine@loveruby.net>
1888
+
1889
+ * bin/review2: ignore SIGPIPE/EPIPE.
1890
+
1891
+ Sat Apr 15 11:21:07 2006 Minero Aoki <aamine@loveruby.net>
1892
+
1893
+ * setup.rb: update to latest version.
1894
+
1895
+ Sun Apr 9 17:22:03 2006 Minero Aoki <aamine@loveruby.net>
1896
+
1897
+ * lib/review/builder.rb: remove ad-hoc code.
1898
+
1899
+ * lib/review/index.rb: resolve number format ad-hocly.
1900
+
1901
+ * lib/review/htmlbuilder.rb: implement @<i>.
1902
+
1903
+ Sun Apr 9 16:18:41 2006 Minero Aoki <aamine@loveruby.net>
1904
+
1905
+ * bin/review2: load environment from file's basedir.
1906
+
1907
+ * lib/review/env.rb: ditto.
1908
+
1909
+ * lib/review/builder.rb: implment //footnote and @<fn> (tmp).
1910
+
1911
+ * lib/review/compiler.rb: ditto.
1912
+
1913
+ * lib/review/htmlbuilder.rb: ditto.
1914
+
1915
+ * lib/review/compiler.rb: *Index should be loaded for each files.
1916
+
1917
+ Tue Apr 4 09:06:16 2006 Minero Aoki <aamine@loveruby.net>
1918
+
1919
+ * bin/review-preproc: new option -c,--check.
1920
+
1921
+ * lib/review/preprocessor.rb: #@ok is known tag.
1922
+
1923
+ Tue Apr 4 08:43:40 2006 Minero Aoki <aamine@loveruby.net>
1924
+
1925
+ * lib/review/env.rb: #parts, #chaps returns an Array of Chapter.
1926
+
1927
+ * bin/review-check: follow it.
1928
+
1929
+ * bin/review-index: ditto.
1930
+
1931
+ * bin/review-list: ditto.
1932
+
1933
+ Tue Apr 4 08:31:13 2006 Minero Aoki <aamine@loveruby.net>
1934
+
1935
+ * lib/review/preprocessor.rb: show filename in error message.
1936
+
1937
+ Thu Mar 23 23:53:50 2006 Minero Aoki <aamine@loveruby.net>
1938
+
1939
+ * lib/review/htmlbuilder.rb: support //comment.
1940
+
1941
+ Thu Mar 23 23:41:46 2006 Minero Aoki <aamine@loveruby.net>
1942
+
1943
+ * bin/review-index: new option --strip.
1944
+
1945
+ * lib/review/builder.rb: avoid appending int (fix incomplete).
1946
+
1947
+ * lib/review/env.rb (new): provide default value.
1948
+
1949
+ * lib/review/env.rb (new): load review-ext.rb from basedir if
1950
+ exist.
1951
+
1952
+ Sun Mar 19 11:40:39 2006 Minero Aoki <aamine@loveruby.net>
1953
+
1954
+ * bin/review-index: add copyright header.
1955
+
1956
+ Sun Mar 19 11:40:00 2006 Minero Aoki <aamine@loveruby.net>
1957
+
1958
+ * bin/review-preproc: remove tmp file.
1959
+
1960
+ Sat Mar 18 17:12:27 2006 Minero Aoki <aamine@loveruby.net>
1961
+
1962
+ * bin/review-index: rescue Errno::NOENT.
1963
+
1964
+ Sat Mar 18 17:11:23 2006 Minero Aoki <aamine@loveruby.net>
1965
+
1966
+ * lib/review/env.rb: new parameter PAPER.
1967
+
1968
+ Sat Mar 18 16:35:19 2006 Minero Aoki <aamine@loveruby.net>
1969
+
1970
+ * bin/review-list: rescue application errors.
1971
+
1972
+ Sat Mar 18 16:30:33 2006 Minero Aoki <aamine@loveruby.net>
1973
+
1974
+ * bin/review-check: new option --all-chapters.
1975
+
1976
+ * bin/review-check: new option --section.
1977
+
1978
+ * bin/review-check: new option --text.
1979
+
1980
+ * lib/review/utils.rb: removed.
1981
+
1982
+ Sat Mar 18 16:29:36 2006 Minero Aoki <aamine@loveruby.net>
1983
+
1984
+ * lib/review/env.rb: allow no PARAMS file.
1985
+
1986
+ Sat Mar 18 15:46:40 2006 Minero Aoki <aamine@loveruby.net>
1987
+
1988
+ * bin/review-preproc: add prefix ReVIEW.
1989
+
1990
+ * lib/review/preprocessor.rb: support preproc comment #@#.
1991
+
1992
+ * lib/review/errorutils.rb: removed.
1993
+
1994
+ Sat Mar 18 15:19:58 2006 Minero Aoki <aamine@loveruby.net>
1995
+
1996
+ * lib/review/preprocessor.rb: allow #@@{ ... #@@} style.
1997
+
1998
+ Sat Mar 18 15:10:18 2006 Minero Aoki <aamine@loveruby.net>
1999
+
2000
+ * lib/review/*.rb: unify copyright year.
2001
+
2002
+ Sat Mar 18 14:55:50 2006 Minero Aoki <aamine@loveruby.net>
2003
+
2004
+ * bin/review-check: use review/env.
2005
+
2006
+ * bin/review-index: use review/env and review/book.
2007
+
2008
+ * bin/review-list: use review/env.
2009
+
2010
+ * lib/review/book.rb: new file.
2011
+
2012
+ * lib/review/const.rb: removed. Use review/env.
2013
+
2014
+ * lib/review/strip.rb: removed. Use review/dropcomment.
2015
+
2016
+ * lib/review/compiler.rb (text): unknown inline op caused error.
2017
+
2018
+ * lib/review/dropcomment.rb: add file header.
2019
+
2020
+ * lib/review/env.rb: new const ReVIEW::EXT.
2021
+
2022
+ * lib/review/env.rb (Environment.load): give default values.
2023
+
2024
+ * lib/review/env.rb: new method Environment#parts.
2025
+
2026
+ * lib/review/env.rb: new method Environment#page_metric.
2027
+
2028
+ * lib/review/env.rb: new method Environment#chapter_file.
2029
+
2030
+ * lib/review/env.rb: new method Environment#index_file.
2031
+
2032
+ * lib/review/env.rb: new method Environment#reject_file.
2033
+
2034
+ * lib/review/env.rb: new method Environment#nocode_file.
2035
+
2036
+ * lib/review/env.rb: new method Environment#predef_file.
2037
+
2038
+ * lib/review/exception.rb: new exception class
2039
+ ReVIEW::ApplicationError.
2040
+
2041
+ * lib/review/index.rb: extension is .re, not .rd.
2042
+
2043
+ Sat Mar 18 12:13:59 2006 Minero Aoki <aamine@loveruby.net>
2044
+
2045
+ * bin/review: *Builder.new accepts an array of indexes.
2046
+
2047
+ * lib/review/builder.rb: inline_*0 -> compile_*.
2048
+
2049
+ * lib/review/htmlbuilder.rb: ditto.
2050
+
2051
+ Mon Mar 13 08:04:09 2006 Minero Aoki <aamine@loveruby.net>
2052
+
2053
+ * lib/review/compiler.rb: pass self to strategy.
2054
+
2055
+ * lib/review/builder.rb (table): compile each cell.
2056
+
2057
+ Mon Mar 13 07:33:39 2006 Minero Aoki <aamine@loveruby.net>
2058
+
2059
+ * lib/review/builder.rb: each_block_line -> lines.each.
2060
+
2061
+ Fri Mar 10 20:20:41 2006 Minero Aoki <aamine@loveruby.net>
2062
+
2063
+ * bin/review-check: new file.
2064
+
2065
+ * lib/review/const.rb: new method ReVIEW.WORDS_FILE (tmp).
2066
+
2067
+ Fri Mar 10 20:19:55 2006 Minero Aoki <aamine@loveruby.net>
2068
+
2069
+ * bin/review-list: fix bug.
2070
+
2071
+ Sat Feb 11 19:14:20 2006 Minero Aoki <aamine@loveruby.net>
2072
+
2073
+ * lib/review/const.rb: use indirect access for user-defined
2074
+ constants.
2075
+
2076
+ * bin/review-list: ditto.
2077
+
2078
+ * bin/review-index: ditto.
2079
+
2080
+ Sat Feb 11 19:13:37 2006 Minero Aoki <aamine@loveruby.net>
2081
+
2082
+ * bin/review2: command name is review2.
2083
+