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