review 0.6.0 → 0.9.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.
- data/ChangeLog +441 -0
- data/README.rdoc +25 -0
- data/Rakefile +13 -1
- data/VERSION +1 -1
- data/bin/review-check +1 -1
- data/bin/review-compile +19 -10
- data/bin/review-epubmaker +114 -17
- data/bin/review-index +8 -1
- data/bin/review-pdfmaker +378 -0
- data/bin/review-preproc +2 -3
- data/bin/review-vol +1 -2
- data/debian/README.Debian +12 -0
- data/debian/README.source +5 -0
- data/debian/changelog +5 -0
- data/debian/compat +1 -0
- data/debian/control +22 -0
- data/debian/copyright +60 -0
- data/debian/docs +5 -0
- data/debian/manpage.1.ex +59 -0
- data/debian/patches/path.diff +91 -0
- data/debian/patches/series +1 -0
- data/debian/review.install +13 -0
- data/debian/review.links +4 -0
- data/debian/rules +13 -0
- data/debian/source/format +1 -0
- data/doc/format.rdoc +477 -0
- data/doc/format.re +19 -0
- data/doc/format_idg.rdoc +180 -0
- data/doc/ruby-uuid/README +11 -0
- data/doc/ruby-uuid/README.ja +34 -0
- data/doc/sample.css +17 -0
- data/doc/sample.yaml +8 -4
- data/lib/lineinput.rb +1 -1
- data/lib/review/book.rb +43 -36
- data/lib/review/builder.rb +78 -33
- data/lib/review/compiler.rb +45 -48
- data/lib/review/epubbuilder.rb +1 -675
- data/lib/review/exception.rb +1 -1
- data/lib/review/htmlbuilder.rb +627 -49
- data/lib/review/htmlutils.rb +5 -0
- data/lib/review/idgxmlbuilder.rb +239 -250
- data/lib/review/index.rb +84 -7
- data/lib/review/latexbuilder.rb +261 -42
- data/lib/review/latexutils.rb +15 -6
- data/lib/review/preprocessor.rb +40 -6
- data/lib/review/textutils.rb +22 -0
- data/lib/review/topbuilder.rb +4 -1
- data/lib/uuid.rb +312 -0
- data/review.gemspec +44 -12
- data/test/CHAPS +2 -0
- data/test/bib.re +13 -0
- data/test/test.re +43 -0
- data/test/test_book.rb +1191 -0
- data/test/test_builder.rb +147 -0
- data/test/test_htmlbuilder.rb +191 -10
- data/test/test_htmlutils.rb +24 -0
- data/test/test_idgxmlbuilder.rb +310 -0
- data/test/test_index.rb +15 -0
- data/test/test_latexbuilder.rb +217 -6
- data/test/test_lineinput.rb +198 -0
- data/test/test_textutils.rb +68 -0
- data/test/test_uuid.rb +156 -0
- metadata +43 -10
- data/doc/format.txt +0 -434
- data/doc/format_idg.txt +0 -194
- data/doc/format_sjis.txt +0 -313
- data/setup.rb +0 -1587
- data/test/test_epubbuilder.rb +0 -73
data/ChangeLog
CHANGED
@@ -1,3 +1,444 @@
|
|
1
|
+
Wed Dec 1 16:41:40 2010 Masayoshi Takahashi <takahashimm@gmail.com>
|
2
|
+
|
3
|
+
* VERSION: Version bump to 0.9.0
|
4
|
+
|
5
|
+
Wed Dec 1 16:38:34 2010 Masayoshi Takahashi <takahashimm@gmail.com>
|
6
|
+
|
7
|
+
* doc/format.txt, doc/format_idg.txt, doc/format_sjis.txt, doc/memo-reviewspec.txt:
|
8
|
+
delete old docs; see format.rdoc, format_idg.rdoc and
|
9
|
+
Wiki pages on github.com (https://github.com/kmuto/review/wiki)
|
10
|
+
|
11
|
+
Sun Nov 28 14:12:50 2010 Kenshi Muto <kmuto@debian.org>
|
12
|
+
|
13
|
+
* lib/review/idgxmlbuilder.rb: partially support for metric.
|
14
|
+
* test/test_htmlbuilder.rb, test/idg_xmlbuilder.rb,
|
15
|
+
test/test_latexbuilder.rb: add test for //indepimage and //image.
|
16
|
+
|
17
|
+
Sun Nov 28 01:28:06 2010 Masayoshi Takahashi <takahashimm@gmail.com>
|
18
|
+
|
19
|
+
* lib/review/latexbuilder.rb, lib/review/idgxmlbuilder.rb,
|
20
|
+
lib/review/htmlbuilder.rb, lib/review/builder.rb:
|
21
|
+
- support metric option of //image
|
22
|
+
|
23
|
+
Sat Nov 27 22:59:24 2010 Kenshi Muto <kmuto@debian.org>
|
24
|
+
|
25
|
+
* lib/review/compiler.rb: accept space/tab before :
|
26
|
+
(description list).
|
27
|
+
|
28
|
+
Sat Nov 27 22:27:56 2010 Kenshi Muto <kmuto@debian.org>
|
29
|
+
|
30
|
+
* lib/review/htmlbuilder.rb: use <p class="noindent"> for
|
31
|
+
//noindent. use <p class="flushright"> for //flushright (for
|
32
|
+
backward compatibility, it can be reverted to older <div> and
|
33
|
+
<pre> style by setting --deprecated-blocklines.)
|
34
|
+
* test/test_latexbuilder.rb, test/test_htmlbuilder.rb,
|
35
|
+
test/test_idgbuilder.rb: add flushright and noindent tests.
|
36
|
+
* doc/sample.css: add p, p.noindent, p.flushright, and p.caption.
|
37
|
+
|
38
|
+
Sat Nov 27 22:00:20 2010 Kenshi Muto <kmuto@debian.org>
|
39
|
+
|
40
|
+
* bin/review-index: deprecate --html option.
|
41
|
+
* bin/review-check: deprecate -s option.
|
42
|
+
* bin/review-preproc: deprecate --final option.
|
43
|
+
|
44
|
+
Sat Nov 27 21:40:42 2010 Kenshi Muto <kmuto@debian.org>
|
45
|
+
|
46
|
+
* merge kdmsnr's branch.
|
47
|
+
- add inline_table/list ref to another chapter.
|
48
|
+
|
49
|
+
Sat Nov 27 14:58:05 2010 Kenshi Muto <kmuto@debian.org>
|
50
|
+
|
51
|
+
* Clean up.
|
52
|
+
- bin/setup.rb: remove obsolete file. use gem or git.
|
53
|
+
- lib/review/book.rb, test/test_book.rb: remove PARAMS.
|
54
|
+
- lib/review/compiler.rb, lib/review/htmlbuilder.rb,
|
55
|
+
lib/review/idgxmlbuilder.rb, lib/review/latexbuilder.rb:
|
56
|
+
support caption in //indepimage.
|
57
|
+
//numberlessimage aliases of //indepimage.
|
58
|
+
- bin/review-compile, lib/review/compiler.rb: --hdnumberingmode
|
59
|
+
is deprecated. use --level option.
|
60
|
+
- lib/review/book.rb: remove nocode_file and index_file because
|
61
|
+
they aren't used anymore.
|
62
|
+
- bin/review-epubmaker: print usage if argument isn't defined.
|
63
|
+
|
64
|
+
Sat Nov 27 04:00:01 2010 Masayoshi Takahashi <takahashimm@gmail.com>
|
65
|
+
|
66
|
+
* bin/review-pdfmaker: make default LaTeX style much simpler.
|
67
|
+
- add \reviewmainfont and \reviewtitlefont (you can redifine with \renewcomamnd{})
|
68
|
+
- delete header/footer definition (you can do it with config.yml)
|
69
|
+
|
70
|
+
Mon Nov 22 00:44:20 2010 Masayoshi Takahashi <takahashimm@gmail.com>
|
71
|
+
|
72
|
+
* lib/review/latexbuilder.rb: support @<icon>{} in LATEXBuilder
|
73
|
+
|
74
|
+
Sun Nov 21 21:50:32 2010 Masayoshi Takahashi <takahashimm@gmail.com>
|
75
|
+
|
76
|
+
* test/test_uuid.rb: reduce slow tests. If we use original
|
77
|
+
uuid.rb without any changes, it's no problem.
|
78
|
+
|
79
|
+
Sun Nov 21 15:02:00 2010 Kenshi Muto <kmuto@debian.org>
|
80
|
+
|
81
|
+
* lib/review/book.rb: add 'ai' to acceptable image file.
|
82
|
+
* lib/review/builder.rb: move find_pathes() and entries() here
|
83
|
+
from HTMLBuilder.
|
84
|
+
* lib/review/compiler.rb: rescue string() error for TestUnit.
|
85
|
+
* lib/review/htmlbuilder.rb: cleanup.
|
86
|
+
* lib/review/idgxmlbuilder.rb: support both 1.8 and 1.9 in
|
87
|
+
inline_maru. use find_pathes() of builder for @icon and
|
88
|
+
//indepimage.
|
89
|
+
|
90
|
+
Sun Nov 21 14:22:55 2010 Kenshi Muto <kmuto@debian.org>
|
91
|
+
|
92
|
+
* lib/review/idgxmlbuilder.rb, test/test_idgxmlbuilder.rb:
|
93
|
+
refactoring. add some tests.
|
94
|
+
|
95
|
+
Wed Nov 17 09:36:50 2010 Kenshi Muto <kmuto@debian.org>
|
96
|
+
|
97
|
+
* merge KADO's patch and modify.
|
98
|
+
- lib/review/idgxmlbuilder.rb, lib/review/htmlbuilder.rb,
|
99
|
+
lib/review/latexbuilder.rb: //lead, //read, //quote, //note,
|
100
|
+
//memo, //tip, //info, //planning, //best, //important,
|
101
|
+
//security, //caution, //term, //link, //notice, //point,
|
102
|
+
//shoot, //reference, //practice: use normal paragraph
|
103
|
+
syntax; splitted by empty line.
|
104
|
+
- bin/review-compile: For backward compatibilty, add
|
105
|
+
--deprecated-blocklines option.
|
106
|
+
|
107
|
+
Wed Nov 17 17:55:42 2010 Masayoshi Takahashi <takahashimm@gmail.com>
|
108
|
+
|
109
|
+
* lib/review/latexutils.rb, bin/review-pdfmaker,
|
110
|
+
test/test_latexbuilder.rb:
|
111
|
+
- \textbackslash -> \reviewbackslash(to replace into yensign) in LATEXBuilder
|
112
|
+
- allow to overwrite review* macro in LATEXBuilder
|
113
|
+
|
114
|
+
Sat Nov 13 23:19:25 2010 Kenshi Muto <kmuto@debian.org>
|
115
|
+
|
116
|
+
* test/test_builder.rb, test/test_htmlbuilder.rb,
|
117
|
+
test/test_idgxmlbuilder.rb, test/test_latexbuilder.rb:
|
118
|
+
add some block test codes.
|
119
|
+
* Fix //quote handling of LATEXBuilder.
|
120
|
+
|
121
|
+
Sun Nov 14 05:19:53 2010 Masayoshi Takahashi <takahashimm@gmail.com>
|
122
|
+
|
123
|
+
* merge KADO's patch.
|
124
|
+
- test/test_latexbuilder.rb, lib/review/latexbuilder.rb:
|
125
|
+
//quote allow newlines in LATEXBuilder.
|
126
|
+
|
127
|
+
Sat Nov 13 10:33:13 2010 Kenshi Muto <kmuto@debian.org>
|
128
|
+
|
129
|
+
* lib/review/idgxmlbuilder.rb: round float value for
|
130
|
+
the compatibility between 1.8 and 1.9.
|
131
|
+
|
132
|
+
Thu Nov 11 08:16:10 2010 Masayoshi Takahashi <takahashimm@gmail.com>
|
133
|
+
|
134
|
+
* test/test_latexbuilder.rb: test tagged header.
|
135
|
+
|
136
|
+
Thu Nov 11 21:34:39 2010 Kenshi Muto <kmuto@debian.org>
|
137
|
+
|
138
|
+
* lib/review/compiler.rb, lib/review/htmlbuilder.rb,
|
139
|
+
lib/review/idgxmlbuilder.rb, lib/review/latexbuilder.rb:
|
140
|
+
allow inline tags in captions and headers.
|
141
|
+
* test/test_htmlbuilder.rb: test tagged header.
|
142
|
+
|
143
|
+
Mon Nov 8 21:58:27 2010 Kenshi Muto <kmuto@debian.org>
|
144
|
+
|
145
|
+
* merge KADO's patch.
|
146
|
+
- lib/review/htmlbuilder.rb: add chap to tabel_header.
|
147
|
+
|
148
|
+
Mon Nov 8 21:51:43 2010 Kenshi Muto <kmuto@debian.org>
|
149
|
+
|
150
|
+
* lib/review/compiler.rb, lib/review/htmlbuilder.rb,
|
151
|
+
lib/review/idgxmlbuilder.rb, lib/review/latexbuilder.rb:
|
152
|
+
move @<tti>, @<ttb>, @<u>, @<uchar>, @<idx>, and @<hidx> to
|
153
|
+
base op.
|
154
|
+
* lib/review/htmlbuilder.rb, lib/review/latexbuilder.rb:
|
155
|
+
support @<uchar> op.
|
156
|
+
* test/test_htmlbuilder.rb, test/test_latexbuilder.rb,
|
157
|
+
test/test_idgxmlbuilder.rb: add test for @<uchar>.
|
158
|
+
|
159
|
+
Sun Nov 7 17:23:12 2010 Kenshi Muto <kmuto@debian.org>
|
160
|
+
|
161
|
+
* lib/review/latexbuilder.rb: support //indepimage.
|
162
|
+
* lib/review/htmlbuilder.rb, lib/review/idgxmlbuilder.rb: accept
|
163
|
+
(though just ignore) metric option of //indepimage.
|
164
|
+
|
165
|
+
Sun Nov 7 15:20:16 2010 Kenshi Muto <kmuto@debian.org>
|
166
|
+
|
167
|
+
* lib/review/htmlbuilder.rb: use <u> instead of <underline> for underline.
|
168
|
+
|
169
|
+
Sun Nov 7 13:20:37 2010 Masayoshi Takahashi <takahashimm@gmail.com>
|
170
|
+
|
171
|
+
* lib/review/latexbuilder.rb: support @<tti> and @<ttb> for LATEXBuilder
|
172
|
+
|
173
|
+
Sun Nov 7 12:35:11 2010 Kenshi Muto <kmuto@debian.org>
|
174
|
+
|
175
|
+
* lib/review/idgxmlbuilder.rb: ad-hoc support for //texequation
|
176
|
+
and @<m>.
|
177
|
+
|
178
|
+
Sun Nov 7 12:01:03 2010 Kenshi Muto <kmuto@debian.org>
|
179
|
+
|
180
|
+
* merge KADO's branch.
|
181
|
+
- lib/review/htmlbuilder.rb, lib/review/idgxmlbuilder.rb:
|
182
|
+
add @ttb op.
|
183
|
+
|
184
|
+
Thu Nov 4 20:48:41 2010 Masayoshi Takahashi <takahashimm@gmail.com>
|
185
|
+
|
186
|
+
* bin/review-pdfmaker: update colophon in LATEXBuilder.
|
187
|
+
|
188
|
+
Thu Nov 4 19:58:20 2010 Masayoshi Takahashi <takahashimm@gmail.com>
|
189
|
+
|
190
|
+
* bin/review-pdfmaker, lib/review/latexbuilder.rb:
|
191
|
+
use \reviewkw{} for @<kw>, and \reviewkw{} use \textbf{}
|
192
|
+
and \textgt{} as default
|
193
|
+
|
194
|
+
Thu Nov 4 17:29:17 2010 Masayoshi Takahashi <takahashimm@gmail.com>
|
195
|
+
|
196
|
+
* bin/review-pdfmaker: only use coverimage file if 'converimage'
|
197
|
+
attributes has a value(but ignore coverfile).
|
198
|
+
|
199
|
+
Thu Nov 4 17:11:56 2010 Masayoshi Takahashi <takahashimm@gmail.com>
|
200
|
+
|
201
|
+
* test/test_htmlbuilder.rb, test/test_latexbuilder.rb:
|
202
|
+
add some inline tests.
|
203
|
+
|
204
|
+
Thu Nov 4 17:11:04 2010 Masayoshi Takahashi <takahashimm@gmail.com>
|
205
|
+
|
206
|
+
* lib/review/latexbuilder.rb: escape inline_m's content.
|
207
|
+
|
208
|
+
Thu Nov 4 07:27:09 2010 Kenshi Muto <kmuto@debian.org>
|
209
|
+
|
210
|
+
* bin/review-compile, lib/review/compiler.rb,
|
211
|
+
lib/review/htmlbuilder.rb, lib/review/htmlutils.rb,
|
212
|
+
lib/review/latexbuilder.rb, lib/review/latexutils.rb,
|
213
|
+
doc/format.rdoc, doc/format.re, doc/format.txt:
|
214
|
+
add experimental TeX block equation/inline equation support.
|
215
|
+
add //texequation in LATEXBuilder and HTMLBuilder.
|
216
|
+
add @<m> op in HTMLBuilder.
|
217
|
+
add --mathml option to use math_ml.rb library
|
218
|
+
(http://www.hinet.mydns.jp/?mathml.rb) in HTMLBuilder.
|
219
|
+
|
220
|
+
Wed Nov 3 23:44:37 2010 Kenshi Muto <kmuto@debian.org>
|
221
|
+
|
222
|
+
* merge KADO's branch.
|
223
|
+
- bin/review-index: add chapter option
|
224
|
+
|
225
|
+
Tue Nov 2 19:11:51 2010 Kenshi Muto <kmuto@debian.org>
|
226
|
+
|
227
|
+
* merge KADO's branch.
|
228
|
+
- lib/review/htmlbuilder.rb: add chap to image_header
|
229
|
+
- doc/format.rdoc: initial document file for GitHub.
|
230
|
+
|
231
|
+
Fri Oct 29 06:23:56 2010 Kenshi Muto <kmuto@debian.org>
|
232
|
+
|
233
|
+
* lib/uuid.rb, test/test_uuid.rb, doc/ruby-uuid/README,
|
234
|
+
doc/ruby-uuid/README.ja: uuid library, imported from
|
235
|
+
git://github.com/shyouhei/ruby-uuid.git
|
236
|
+
Copyright 2007 URABE, Shyouhei.
|
237
|
+
(At this time, I prefer to import third party libraries
|
238
|
+
rather than using gems, to let ReVIEW work on essential
|
239
|
+
Ruby environments.)
|
240
|
+
* bin/review-epubmaker: use time-based random urnid when
|
241
|
+
urnid isn't defined.
|
242
|
+
write <itemref idref="toc" /> only if mytoc is defined.
|
243
|
+
* doc/sample.yaml: modify descriptions of urnid, stylesheet,
|
244
|
+
colophon, and debug.
|
245
|
+
|
246
|
+
Wed Oct 27 02:39:40 2010 Masayoshi Takahashi <takahashimm@gmail.com>
|
247
|
+
|
248
|
+
* lib/review/latexbuilder.rb: do not use \begin{table}...\end{table}
|
249
|
+
if caption is empty (because we cannot use {table} in column section)
|
250
|
+
|
251
|
+
Tue Oct 26 12:26:01 2010 Masayoshi Takahashi <takahashimm@gmail.com>
|
252
|
+
|
253
|
+
* bin/review-pdfmaker: fix all characters in rightside header are uppercase.
|
254
|
+
|
255
|
+
Sun Oct 24 04:26:54 2010 Masayoshi Takahashi <takahashimm@gmail.com>
|
256
|
+
|
257
|
+
* bin/review-pdfmaker, lib/review/latexbuilder.rb:
|
258
|
+
fix caption of //list and //table in LATEXBuilder
|
259
|
+
|
260
|
+
Tue Oct 19 15:48:44 2010 Masayoshi Takahashi <takahashimm@gmail.com>
|
261
|
+
|
262
|
+
* lib/review/latexbuilder.rb: add //tsize and //latextsize for table in LATEXBuilder
|
263
|
+
|
264
|
+
Tue Oct 19 12:54:40 2010 Masayoshi Takahashi <takahashimm@gmail.com>
|
265
|
+
|
266
|
+
* lib/review/latexbuilder.rb: not use shortstack without @<br>
|
267
|
+
|
268
|
+
Sun Oct 17 01:03:43 2010 Masayoshi Takahashi <takahashimm@gmail.com>
|
269
|
+
|
270
|
+
* bin/review-pdfmaker: LATEXBuilder supports //memo command
|
271
|
+
|
272
|
+
Wed Oct 13 21:03:25 2010 Kenshi Muto <kmuto@debian.org>
|
273
|
+
|
274
|
+
* lib/review/compiler.rb: drop support for multichoice
|
275
|
+
and singlechoice. They need more sophisticated symbols
|
276
|
+
(don't use misleading multibyte characters).
|
277
|
+
|
278
|
+
Wed Oct 13 20:54:39 2010 Kenshi Muto <kmuto@debian.org>
|
279
|
+
|
280
|
+
* support ruby 1.9.
|
281
|
+
|
282
|
+
Sat Sep 11 19:15:59 2010 Kenshi Muto <kmuto@debian.org>
|
283
|
+
|
284
|
+
* lib/review/book.rb, lib/review/htmlbuilder.rb,
|
285
|
+
lib/review/index.rb: support //indepimage.
|
286
|
+
|
287
|
+
Sat Sep 11 18:29:39 2010 Kenshi Muto <kmuto@debian.org>
|
288
|
+
|
289
|
+
* bin/review-compile, bin/review-vol, lib/review/book.rb,
|
290
|
+
lib/review/compiler.rb, lib/review/htmlbuilder.rb,
|
291
|
+
lib/review/idgxmlbuilder.rb, lib/review/index.rb,
|
292
|
+
lib/review/latexbuilder.rb, test/*.rb:
|
293
|
+
manage parameters by ReVIEW.book.param.
|
294
|
+
* bin/review-preproc, lib/review/preprocessor.rb:
|
295
|
+
manage preprocessor parameters by Preprocessor.param.
|
296
|
+
* lib/review/buildedr.rb: handle encoding conversions by
|
297
|
+
Builder#convert_outencoding.
|
298
|
+
|
299
|
+
Sat Sep 11 16:28:32 2010 Kenshi Muto <kmuto@debian.org>
|
300
|
+
|
301
|
+
* lib/review/latexbuilder.rb, lib/review/htmlbuilder.rb:
|
302
|
+
support [nonum] in headlines.
|
303
|
+
|
304
|
+
Fri Sep 10 19:33:27 2010 Kenshi Muto <kmuto@debian.org>
|
305
|
+
|
306
|
+
* lib/review/htmlbuilder.rb, test/test_htmlbuilder.rb:
|
307
|
+
revert to use double quote for element attributes.
|
308
|
+
|
309
|
+
Thu Sep 9 22:21:22 2010 Kenshi Muto <kmuto@debian.org>
|
310
|
+
|
311
|
+
* lib/review/htmlbuilder.rb:
|
312
|
+
- use single quote for element attributes.
|
313
|
+
- use 'caption' for the class name of all captions.
|
314
|
+
- surround //source by div class='source-code' instead of
|
315
|
+
div class='caption-code'.
|
316
|
+
- surround //emlist and //emlistnum by div class='emlist-code'
|
317
|
+
instead of div class='code'.
|
318
|
+
- surround //cmd by div class='cmd-code' instead of div
|
319
|
+
class='code'.
|
320
|
+
- surround table by div class='table'.
|
321
|
+
- use b (bold) for @<kw> instead of span class='kw'.
|
322
|
+
- use tt (typewriter) for @<code> instead of span
|
323
|
+
class='inline-code'.
|
324
|
+
* test/test_htmlbuilder.rb: follow single quote changes.
|
325
|
+
|
326
|
+
Wed Sep 8 22:24:49 2010 Kenshi Muto <kmuto@debian.org>
|
327
|
+
|
328
|
+
* lib/review/htmlbuilder.rb: import all of epubbuilder.rb.
|
329
|
+
- CSS name changed.
|
330
|
+
//list caption: toplabel -> listcaption
|
331
|
+
//source caption: toplabel -> sourcecaption
|
332
|
+
//image caption: botlabel -> imagecaption
|
333
|
+
//table caption: toplabel -> tablecaption
|
334
|
+
- //comment is converted as <!-- --> instead of <p class="comment">.
|
335
|
+
- //image and //numberlessimage are converted as
|
336
|
+
<div class="image"><img> instead of <p class="img"><img>
|
337
|
+
- Produce XHTML header/footer contents by default.
|
338
|
+
- Insert orderded numbers in headers by default. Specifing
|
339
|
+
--secnolevel=0 prevents all of them.
|
340
|
+
* bin/review-compile, doc/memo-reviewspec.txt, bin/review-epubmaker:
|
341
|
+
Replace string EPUB with HTML to follow HTMLBuilder changes.
|
342
|
+
|
343
|
+
Sat Sep 4 11:53:31 2010 Masayoshi Takahashi <takahashimm@gmail.com>
|
344
|
+
|
345
|
+
* lib/review/latexbuilder.rb: add bloks: emlistnum, listnum, reviewlistcaption, source, flushright
|
346
|
+
|
347
|
+
Sat Sep 4 11:45:36 2010 Masayoshi Takahashi <takahashimm@gmail.com>
|
348
|
+
|
349
|
+
* lib/review/latexbuilder.rb: add inlines: @<i>,@<idx>,@<hidx>,@<dtp>,@<code>,
|
350
|
+
@<hd_chap>,@<raw>,@<sub>,@<sup>,@<em>,@<strong>,@<u>
|
351
|
+
|
352
|
+
Fri Sep 3 22:50:56 2010 Masayoshi Takahashi <takahashimm@gmail.com>
|
353
|
+
|
354
|
+
* bin/review-pdfmaker: make background color of //cmd black
|
355
|
+
|
356
|
+
Fri Sep 3 01:01:19 2010 Masayoshi Takahashi <takahashimm@gmail.com>
|
357
|
+
|
358
|
+
* lib/review/latexbuilder.rb, bin/review-pdfmaker: use {alltt}
|
359
|
+
instead of {verbatim} to allow inline in lists and cmds.
|
360
|
+
|
361
|
+
Thu Sep 2 23:38:01 2010 Masayoshi Takahashi <takahashimm@gmail.com>
|
362
|
+
|
363
|
+
* bin/review-pdfmaker: add command bin/review-pdfmaker for generating PDF document by LaTeX
|
364
|
+
|
365
|
+
Thu Sep 2 13:24:24 2010 Masayoshi Takahashi <takahashimm@gmail.com>
|
366
|
+
|
367
|
+
* lib/review/latexbuilder.rb, test/test_latexbuilder.rb: add op @<br>{} into LaTeXBuilder.
|
368
|
+
|
369
|
+
Thu Sep 2 12:05:58 2010 Kenshi Muto <kmuto@debian.org>
|
370
|
+
|
371
|
+
* add op @<br>{}.
|
372
|
+
|
373
|
+
Wed Sep 1 14:43:13 2010 Kenshi Muto <kmuto@debian.org>
|
374
|
+
|
375
|
+
* Merge git://github.com/akira/review. 52db533ba53a8d9416a17773fdfcf97044f858f0
|
376
|
+
- added tests for ReVIEW.book
|
377
|
+
- added tests for ReVIEW::Parameters
|
378
|
+
- moved get_instance_variables to the Helper module
|
379
|
+
- added tests for ReVIEW::Book.{load,load_default}
|
380
|
+
- added tests for ReVIEW::Book.update_rubyenv
|
381
|
+
- added tests for ReVIEW::ChapterSet
|
382
|
+
- added tests for ReVIEW::Chapter.intern_pathes
|
383
|
+
- added tests for index methods of ReVIEW::Chapter
|
384
|
+
- added tests for ReVIEW::Chapter#on_CHAPS?
|
385
|
+
- added tests for ReVIEW::Part
|
386
|
+
- added/modifed ext of contents of CHAPS/PREDEF
|
387
|
+
Can we omit ext of files?
|
388
|
+
- added a test for ReVIEW::Book#volume
|
389
|
+
- added a test for ReVIEW::Book#{chapters,chapter,each_chapter}
|
390
|
+
- added a test for ReVIEW::Book#{part,each_part}
|
391
|
+
- added a test for ReVIEW::Book#parts
|
392
|
+
- added a test for ReVIEW::Book#basedir
|
393
|
+
- added tests for ReVIEW::Book#postscripts
|
394
|
+
- added tests for ReVIEW::Book#prefaces
|
395
|
+
- added tests for ReVIEW::Book#{setParameter,parse_chapters}
|
396
|
+
- added tests for ReVIEW::Book#read_{CHPAS,PART,bib}
|
397
|
+
- added a test for Book.load_default
|
398
|
+
- added a test for ReVIEW::Chapter#volume
|
399
|
+
- added some tests for ReVIEW::Chapter
|
400
|
+
- added some tests for Builder
|
401
|
+
- added test for ReVIEW::HTMLUtils
|
402
|
+
- removed unused setup
|
403
|
+
- added tests for LineInput
|
404
|
+
- added rcov task
|
405
|
+
|
406
|
+
Sun Aug 22 23:25:44 2010 Kenshi Muto <kmuto@debian.org>
|
407
|
+
|
408
|
+
* Merge git://github.com/moro/review into moro
|
409
|
+
- map* from git blob object
|
410
|
+
with @mapfile(git|<object-spec>).example:
|
411
|
+
#@mapfile(git|2e725159:src/codes/features/signup_and_login.feature)
|
412
|
+
|
413
|
+
Sun Aug 22 23:08:59 2010 Kenshi Muto <kmuto@debian.org>
|
414
|
+
|
415
|
+
* lib/review/epubbuilder.rb: remove escape_html from table to
|
416
|
+
avoid double escaping. add @<dtp> op.
|
417
|
+
* test/test_epubbuilder.rb: add test for table to avoid double
|
418
|
+
escaping.
|
419
|
+
* test/test_idgxmlbuilder.rb: add test unit for IDGXML builder.
|
420
|
+
|
421
|
+
Fri Aug 20 14:20:03 2010 Masayoshi Takahashi <takahashimm@gmail.com>
|
422
|
+
|
423
|
+
* doc/memo-reviewspec.txt: add document for design of review format.
|
424
|
+
|
425
|
+
Sun Aug 8 17:18:03 2010 Kenshi Muto <kmuto@debian.org>
|
426
|
+
|
427
|
+
* Merge nari's branch. 27a35652ecb5a94d5b36
|
428
|
+
- lib/review/htmlbuilder.rb: add @<doorquote>, @<talk>
|
429
|
+
- lib/review/htmlbuilder.rb: support @<href>.
|
430
|
+
- lib/review/builder.rb: move param parameter to global.
|
431
|
+
- lib/review/compiler.rb: replace @@hdnumberingmode by @strategy.param.
|
432
|
+
* lib/review/epubbuilder.rb: add @<doorquote>, @<talk>, @<hd_chap>.
|
433
|
+
* lib/review/compiler.rb, lib/review/index.rb: unify coding styles.
|
434
|
+
fix a typo.
|
435
|
+
|
436
|
+
Sun Aug 8 17:01:48 2010 Kenshi Muto <kmuto@debian.org>
|
437
|
+
|
438
|
+
* lib/review/compiler.rb, lib/review/epubbuilder.rb: support //box
|
439
|
+
as global environment.
|
440
|
+
* lib/review/epubbuilder.rb: support @<icon>.
|
441
|
+
|
1
442
|
Mon Jul 5 14:42:49 2010 Kenshi Muto <kmuto@debian.org>
|
2
443
|
|
3
444
|
* lib/review/idgxmlbuilder.rb, lib/review/epubbuilder.rb:
|
data/README.rdoc
CHANGED
@@ -2,6 +2,31 @@
|
|
2
2
|
|
3
3
|
ReVIEW is a easy-to-use digital publishing system for books and ebooks.
|
4
4
|
|
5
|
+
== Format
|
6
|
+
|
7
|
+
ReVIEW uses its original format('ReVIEW format') as source files. See doc/format.rdoc (in Japanese).
|
8
|
+
|
9
|
+
Output formats ReVIEW supports are:
|
10
|
+
|
11
|
+
* EPUB
|
12
|
+
* LaTeX(ptexlive)
|
13
|
+
* InDesign(IDGXML)
|
14
|
+
* plain text(TOPBuilder Markup Lang.)
|
15
|
+
|
16
|
+
== Commands
|
17
|
+
|
18
|
+
There are two commands generate files directly.
|
19
|
+
|
20
|
+
* review-epubmaker: generate EPUB file.
|
21
|
+
* review-pdfmaker: generate PDF file using LaTeX(ptexlive).
|
22
|
+
|
23
|
+
And some useful commands.
|
24
|
+
|
25
|
+
* review-compile: compile ReVIEW fomat files.
|
26
|
+
* review-vol: figure out size of ReVIEW files.
|
27
|
+
* review-index: generate index with various format.
|
28
|
+
* review-preproc: preprocessor.
|
29
|
+
|
5
30
|
== Note on Patches/Pull Requests
|
6
31
|
|
7
32
|
* Fork the project.
|