forked from kmuto/review
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
2489 lines (1591 loc) · 80 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Fri Apr 29 23:11:06 2016 Masayoshi Takahashi <[email protected]>
* Release 2.0.0
Mon Apr 4 14:42:51 2016 Kenshi Muto <[email protected]>
* config.yml:
support "inherit: YAMLfilename" parameter in config.yml to
read other YAML file (such as common.yml.)
Sun Apr 3 17:21:25 2016 Masayoshi Takahashi <[email protected]>
* epubmaker:
add direction in default setting.
Sun Apr 3 11:04:53 2016 Kenshi Muto <[email protected]>
* epubmaker:
accept hash value for 'booktitle' and some other parameters,
as same as 'aut:' (author value).
This change aims to set "file-as" variable to book title.
Sun Apr 3 11:03:47 2016 Masayoshi Takahashi <[email protected]>
use SecureRandom.uuid instead of ruby-uuid
Fri Mar 25 22:16:33 2016 Kenshi Muto <[email protected]>
* bin/review-preproc:
load review-preproc-ext.rb if it exists, to overwrite
review-preproc.
Sun Dec 27 16:25:45 2015 Masayoshi Takahashi <[email protected]>
* Release 1.7.2
Sun Nov 29 23:12:29 2015 Masayoshi Takahashi <[email protected]>
* Release 1.7.1
Thu Oct 29 13:58:22 2015 KADO Masanori <[email protected]>
* Release 1.7.0
Mon Jun 29 18:16:06 2015 KADO Masanori <[email protected]>
* Release 1.6.0
Sat Feb 28 19:51:29 2015 KADO Masanori <[email protected]>
* Release 1.5.0.
Sun Feb 1 20:17:22 2015 Kenshi Muto <[email protected]>
* bin/review-epubmaker:
Introduce structured YAML tree.
Some epubmaker-specific configurations are moved under "epubmaker:".
You can still keep to use parameters for compatibility,
but you'll get a 'deprecated' warning message.
epubmaker:
ncxindent: ...
flattoc: ...
flattocindent: ...
hook_beforeprocess: ...
hook_afterfrontmatter: ...
hook_afterbody: ...
hook_afterbackmatter: ...
hook_aftercopyimage] ...
hook_prepack] ...
rename_for_legacy: ...
zip_stage1: ...
zip_stage2: ...
zip_addpath: ...
verify_target_images: ...
force_include_images: ...
cover_linear: ...
* bin/review-pdfmaker:
Introduce structured YAML tree and new hooks.
pdfmaker:
hook_beforetexcompile: ... (before LaTeX compiling)
hook_aftertexcompile: ... (after all of LaTeX compiling)
hook_afterdvipdf: ... (after dvipdfm conversion)
These hooks get two arguments. $1 is temporary build directory.
$2 is the base directory (where you executed review-pdfmaker).
Mon Jan 26 20:29:30 2015 Masayoshi Takahashi <[email protected]>
* lib/review/i18n.rb:
To initialize after loading config.yml, modifiy API I18n.setup
and remove I18n.i18n.
Tue Jan 13 19:26:04 2015 Masayoshi Takahashi <[email protected]>
* lib/review/pdfmaker.rb:
review-pdfmaker removes a PDF file if already exists
As a PDF file can be re-generated from source files, review-pdfmaker
remove the file when the file exists rather than exiting with error.
review-epubmaker do the same way.
Tue Dec 9 15:25:38 2014 Masayoshi Takahashi <[email protected]>
* lib/review/configure.rb:
update default value of "toc" as nil.
If you need TOC page in body, you should add "toc: true" in config.yml (EPUB2/3, LaTeX).
Tue Dec 9 10:27:21 2014 Masayoshi Takahashi <[email protected]>
* bin/review-vol:
add --yaml option to specify config.yml
add a parameter `page_metric` in config.yml
Sun Dec 7 16:57:01 2014 Masayoshi Takahashi <[email protected]>
* lib/review/book/chapter.rb, test/test_book_chapter.rb:
remove Chapter.intern_pathes.
To get chapters, use Book::Base.load and Book::Base#chapter.
Mon Nov 17 09:28:21 2014 Kenshi Muto <[email protected]>
* lib/review/book/chapter.rb, lib/review/book/index.rb:
fix @<hd> to show appendix correctly with respecting
appendix_format yaml parameter.
Wed Nov 5 19:11:02 2014 Kenshi Muto <[email protected]>
* lib/review/idgxmlbuilder.rb, test/test_idgxmlbuilder.rb:
stop providing a index from @<ttb>.
That behavior just makes a confuse.
Wed Oct 29 18:54:28 2014 KADO Masanori <[email protected]>
* Release 1.4.0.
Thu Sep 18 13:48:24 2014 KADO Masanori <[email protected]>
* 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"
Wed Aug 20 17:15:04 2014 Masayoshi Takahashi <[email protected]>
* lib/review/book/chapter.rb: remove unused method Chapter.for_stdin and Chapter.for_path
Wed Aug 20 01:51:02 2014 Masayoshi Takahashi <[email protected]>
* lib/review/book/parameters.rb: remove ReVIEW::Book::Parameters
Wed Aug 20 00:30:07 2014 Masayoshi Takahashi <[email protected]>
* lib/review/book/parameters.rb, lib/review/book/base.rb,
test/test_book.rb, test/test_book_parameter.rb:
remove unused method: ReVIEW::Book::Parameters.default and ReVIEW::Book::Parameters.load
Thu Aug 7 16:25:23 2014 KADO Masanori <[email protected]>
* lib/review/book/base.rb (Base#prefaces, postscripts):
remove implicit prefaces and postscripts.
Wed Aug 6 18:55:31 2014 KADO Masanori <[email protected]>
* bin/review-catalog-converter: add review-catalog-converter for
converting old style catalog files into a new style catalog.yml file.
Thu Jul 31 15:05:34 2014 Kenshi Muto <[email protected]>
* lib/review/htmlbuilder.rb, lib/review/idgxmlbuilder.rb:
provides warning message if image couldn't be found.
Sun Jun 29 22:12:58 2014 Masanori Kado <[email protected]>
* Release 1.3.0.
Sun Jun 29 10:40:02 2014 Kenshi Muto <[email protected]>
* Now review-epubmaker-ng becomes review-epubmaker.
Previous review-epubmaker is renamed to review-epubmaker-legacy.
We believe new review-epubmaker has a compatibility with
previous version, but please inform us if you meet a different
behavior. See doc/libepubmaker/config.yml for details of
configurations.
Fri Jun 27 22:49:17 2014 Kenshi Muto <[email protected]>
* lib/epubmaker/epubv2.rb: insert dummy <span> element with
double-width space in tree toc when <li> element has only
child <ol> element. Closes #285.
Tue Jun 17 10:36:31 2014 Masayoshi Takahashi <[email protected]>
* lib/review/book/base.rb:
remove (rarely used) features.
* ignore ./config.rb file
* ignore ./lib/review/* files
* ignore ./*/*.re and ./*/*/*.re files
Wed Jun 11 20:15:00 2014 KADO Masanori <[email protected]>
* lib/review/book/base.rb (ReVIEW::Book::Base#config):
Rename method and instance variable from param to config.
Sun Jun 8 22:55:39 2014 Kenshi Muto <[email protected]>
* lib/review/htmlbuilder.rb, lib/review/htmlutils.rb,
test/test_htmlbuilder.rb, test/test_htmlutils.rb:
normalize html ID. ID must be /\A[a-z][0-9a-z_.-]*/
with case insensitive.
Sun Jun 8 22:04:29 2014 Kenshi Muto <[email protected]>
* bin/review-epubmaker, bin/review-pdfmaker,
lib/review/epubmaker.rb, lib/review/makerhelper.rb:
review-*maker calls review-compile of exactly same
directory. Closes #228, #288.
Sat Jun 7 00:37:17 2014 Kenshi Muto <[email protected]>
* lib/review/htmlbuilder.rb:
use the value of htmlext variable for html file
extension, instead of static ".html".
Sat Jun 7 00:06:37 2014 Kenshi Muto <[email protected]>
* lib/epubmaker/content.rb, lib/epubmaker/epubv3.rb,
lib/review/epubmaker.rb:
add properties='svg' attribute to OPF item of HTML
which links SVG file (to satisfy EPUB3 spec.)
Wed Jun 4 12:05:36 2014 Kenshi Muto <[email protected]>
* add safe mode.
This feature checks a numeric value of REVIEW_SAFE_MODE
environment variable.
bit1(+1) : blocks any hooks of epubmaker.
bit2(+2) : blocks review-ext.rb.
bit3(+4) : blocks user's custom html layouts.
Mon Jun 2 14:23:28 2014 Kenshi Muto <[email protected]>
* doc/libepubmaker/config.yml, lib/epubmaker/producer.rb,
lib/review/epubmaker.rb: implement strict image finder mode
for review-epubmaker-ng.
review-epubmaker-ng picks up the images which are used in each
HTMLs and CSSs by declareing 'verify_target_images: true' in yml.
Thu May 28 00:51:08 2014 Masayoshi Takahashi <[email protected]>
* lib/review/book/image_finder.rb:
add new class ReVIEW::Book::ImageFinder extracted from ReVIEW::Book::Index
Index#find_pathes moves to ImageFinder#find_path, and select only one (first) path
because rest pathes is not used.
ImageFinder is an independent class, so you can get image pathes without ImageIndex.
Sat Apr 12 16:31:11 2014 Masayoshi Takahashi <[email protected]>
* lib/review/book/index.rb: allow same @<icon>s in one document (remove warning)
Thu Apr 3 19:03:03 2014 Kenshi Muto <[email protected]>
* change all .yaml to .yml. (#244)
locale.yaml is still supported for backward compatibility.
(but locale.yml is preferred.)
Thu Apr 3 18:41:42 2014 Kenshi Muto <[email protected]>
* lib/review/latexbuilder.rb: escape idx string.
Thu Apr 3 09:53:26 2014 Kenshi Muto <[email protected]>
* lib/epubmaker: add zip_addpath parameter to include
extra pathes in ePUB file.
* Rename sample YAML file's extension from .yaml to .yml.
Wed Apr 2 22:34:56 2014 Masayoshi Takahashi <[email protected]>
* Release 1.2.0.
Tue Mar 25 19:11:36 2014 Kenshi Muto <[email protected]>
* lib/review/book/index.rb, bin/review-compile:
improve the image file finder.
Now review-compile finds a image file from:
1. <imgdir>/<builder>/<chapid>/<id>.<ext>
2. <imgdir>/<builder>/<chapid>-<id>.<ext>
3. <imgdir>/<builder>/<id>.<ext>
4. <imgdir>/<chapid>/<id>.<ext>
5. <imgdir>/<chapid>-<id>.<ext>
6. <imgdir>/<id>.<ext>
Sun Mar 23 23:54:27 2014 Kenshi Muto <[email protected]>
* doc/libepubmaker/config.yaml, lib/epubmaker/epubv2.rb,
lib/epubmaker/epubv3.rb, lib/epubmaker/poducer.rb,
test/test_epubmaker.rb: support both hierarchy toc and
flat toc.
Sun Mar 23 18:05:53 2014 Kenshi Muto <[email protected]>
* doc/libepubmaker/config.yaml, lib/epubmaker/epubv2.rb,
lib/epubmaker/epubv3.rb, lib/epubmaker/poducer.rb,
lib/review/epubmaker.rb: use <bookname>-toc.<htmlext> for
ePUB2 as same as ePUB3. dropped tocfile parameter.
Closes: #237
Tue Mar 18 18:37:12 2014 Kenshi Muto <[email protected]>
* doc/libepubmaker/config.yaml: add descriptions of some parameters.
Tue Mar 18 17:57:23 2014 Kenshi Muto <[email protected]>
* epubmaker/content.rb, epubmaker/producer.rb, epubmaker.rb:
add embeded font support. By default, review-epubmaker-ng
takes fonts/*.{otf|ttf|woff} and images/*.{otf|ttf|woff}.
You can change this behaviour by modifying image_ext, font_ext,
fontdir, and imagedir in config.yaml.
Thu Mar 13 11:34:15 2014 Kenshi Muto <[email protected]>
* lib/review/htmlutils.rb, lib/review/epubmaker.rb, test_htmlbuilder.rb: use pygments higlighting only if "pygments: true" is defined.
Thu Mar 13 09:52:50 2014 Kenshi Muto <[email protected]>
* epubmaker/epubv3.rb: <nav> needs own epub namespace. <nav> should use <ol>, not <ul>.
Thu Mar 13 00:36:58 2014 Kenshi Muto <[email protected]>
* lib/review/epubmaker.rb: remove unnecessary escape character for review-epubmaker-ng.
Wed Mar 12 20:14:22 2014 Kenshi Muto <[email protected]>
* epubmaker/epubv2.rb, epubmaker/producer.rb, review/epubmaker.rb:
- use system() instead of exec() for review-epubmaker-ng.
- hand over stylesheet values to review-compile in review-epubmaker-ng.
Wed Mar 12 20:03:12 2014 Masayoshi Takahashi <[email protected]>
* bin/review-pdfmaker: support LuaLaTeX.
Sat Mar 8 23:16:52 2014 Kenshi Muto <[email protected]>
* 'ReVIEW' has been renamed to 'Re:VIEW'.
Tue Oct 8 18:57:54 2013 Masayoshi Takahashi <[email protected]>
* lib/review/htmlbuilder.rb:
support epub:type="noteref" and epub:type="footnote" in EPUB3.
Tue Oct 8 13:47:01 2013 Masayoshi Takahashi <[email protected]>
* bin/review-epubmaker: support MathML in EPUB3
Mon Oct 7 22:37:38 2013 Kenshi Muto <[email protected]>
* lib/review/book/compilable.rb:
remove type and label from the extracted title.
* bin/review-epubmaker:
add prefix 'rv' to internal ID for each converted files.
Closes: #204
* lib/review/htmlbuilder.rb:
set 'noteref' style class for footnote referers.
Closes: #205
Tue Sep 17 09:25:20 2013 Kenshi Muto <[email protected]>
* lib/review/builder.rb, lib/review/topbuilder.rb:
force all builders to load compiler.rb.
Sun Sep 15 14:39:43 2013 Masayoshi Takahashi <[email protected]>
* bin/review-init: fix review-init; it's broken when installed as gem.
Thu Aug 29 21:33:19 2013 Masayoshi Takahashi <[email protected]>
* Version bump to 1.1.0.
Sat Jun 29 01:34:14 2013 Masayoshi Takahashi <[email protected]>
* lib/review/htmlbuilder.rb, lib/review/latexbuilder.rb:
use split_paragraph for //bibpaper block.
Sat Mar 30 03:15:43 2013 Masayoshi Takahashi <[email protected]>
* lib/review/latexbuilder.rb, lib/review/review.tex.erb,
test/test_latexbuilder.rb:
move alltt environment into ReVIEW macros
(reviewbox, reviewemlist, reviewlist, reviewcmd,
reviewdummyimage.)
If you redefine these macros, you should add \begin{alltt}
and \end{alltt} in your definitions.
Sun Mar 24 15:55:43 2013 Kenshi Muto <[email protected]>
* lib/review/idgxmlbuilder.rb, test/test_idgxmlbuilder.rb:
support PART.
Mon Aug 27 20:27:11 2012 Kenshi Muto <[email protected]>
* lib/review/compiler.rb, lib/review/htmlbuilder.rb,
lib/review/idgxmlbuilder.rb, lib/review/latexbuilder.rb,
lib/review/topbuilder.rb, test/test_htmlbuilder.rb,
test/test_idgxmlbuilder.rb, test/test_latexbuilder.rb:
Add //centering to centerize contents.
Wed Aug 8 18:47:33 2012 Kenshi Muto <[email protected]>
* bin/review-compile, lib/review/idgxmlbuilder.rb:
Add --structuredxml option to produce structured XML for sections.
Sat Jul 14 16:07:54 2012 Masayoshi Takahashi <[email protected]>
* lib/review/review.tex.erb: \usepackage{jumoline} is optional
Sat Jun 16 00:57:14 2012 Masayoshi Takahashi <[email protected]>
* bin/review-compile, lib/review/builder.rb:
support --tabwidth=WIDTH option in review-compile
Fri Apr 20 16:07:35 2012 Kenshi Muto <[email protected]>
* lib/epubmaker/epubv*.rb: escape entity strings in meta informations.
Tue Mar 13 02:58:41 2012 Masayoshi Takahashi <[email protected]>
* lib/review/htmlbuilder.rb: support @<bou> in HTMLBuilder
Tue Mar 13 02:57:24 2012 Masayoshi Takahashi <[email protected]>
* lib/review/latexbuilder.rb: support @<ami> in LATEXBuilder
Sun Feb 12 16:06:52 2012 Masayoshi Takahashi <[email protected]>
* bin/review-pdfmaker: fix ebb and extractbb options for PDF as images
Mon Jan 30 20:39:17 2012 Masayoshi Takahashi <[email protected]>
* Version bump to 1.0.0.
Sat Jan 28 00:28:34 2012 Kenshi Muto <[email protected]>
* //raw supports to indicate builder(s) by using
//raw[|builder,builder| ...]
* merge kdmsnr's branch.
commit 207c787c961d61bbc517e160effadf417f05e28e
unescape in inline_raw: refs #54
Sun Jan 22 19:49:42 2012 Kenshi Muto <[email protected]>
* revert 17b0deb55b599deb1bdfbd6c61957d6edd5977ed change.
It caused a bug that '#@#' was included in paragraphs when
'#@#' was located just after paragraph line.
Sat Jan 14 23:24:52 2012 Kenshi Muto <[email protected]>
* lib/review/builder.rb, lib/review/htmlbuilder.rb,
lib/review/i18n.yaml, lib/review/idgxmlbuilder.rb,
lib/review/topbuilder.rb: show only counter on
image/list/table caption, if chapter number is
undefined.
Sat Jan 14 22:33:04 2012 Kenshi Muto <[email protected]>
* lib/review/tocparser.rb: remove BOM (\xEF\xBB\xBF) from
line head to avoid review-index error. Closes #72.
Sat Jan 14 22:02:29 2012 Kenshi Muto <[email protected]>
* lib/review/compiler.rb, lib/review/preprocessor.rb,
test/test_preprocessor.rb: fix difference of line#
between error output and source file which has comments.
Closes #73.
Mon Jan 2 01:09:58 2012 Kenshi Muto <[email protected]>
* lib/review/idgxmlbuilder: put <listinfo> to codelist element
(//list) as same as list (//emlist).
Fri Dec 16 01:01:31 2011 Masayoshi Takahashi <[email protected]>
* lib/review/latexbuilder.rb: LATEXBuilder: fix dlist(dd) bug
Sat Nov 12 18:42:24 2011 Masayoshi Takahashi <[email protected]>
* bin/review-pdfmaker:
LATEXBuilder: appendix and backmatter should be able to redefine
Fri Nov 11 02:45:50 2011 Masayoshi Takahashi <[email protected]>
* lib/review/latexbuilder.rb:
LATEXBuilder: use \url instead of \href if label is empty
Sat Nov 5 15:37:58 2011 Masayoshi Takahashi <[email protected]>
* bin/review-epubmaker, bin/review-pdfmaker:
fixes #50; make name of files generated in review-{epub|pdf}maker same as source filenames
Fri Nov 4 22:39:23 2011 Masayoshi Takahashi <[email protected]>
* bin/review-pdfmaker:
Force to execute platex command 3 times.
Executing only 2 times, some documents convert into PDF with
invalid page number :-(
Thu Oct 27 16:30:08 2011 Kenshi Muto <[email protected]>
* lib/review/topbuilder.rb: trivial bug fixes around //raw.
Sun Oct 9 00:43:51 2011 Masayoshi Takahashi <[email protected]>
* lib/review/latexbuilder.rb, lib/review/latexutils.rb:
LATEXBuilder: fix escape in URL (use special method)
Tue Sep 27 21:44:13 2011 Masayoshi Takahashi <[email protected]>
* bin/review-epubmaker: default author should be nil
Tue Sep 27 21:36:00 2011 Masayoshi Takahashi <[email protected]>
* bin/review-epubmaker: fix Issue #43: fix generating invalid EPUB toc.html file
Tue Sep 27 18:51:27 2011 Masayoshi Takahashi <[email protected]>
* lib/review/book.rb, bin/review-pdfmaker:
support *.pdf file for images in LATEXBuilder
Tue Sep 27 18:19:20 2011 Masayoshi Takahashi <[email protected]>
* bin/review-pdfmaker:
support customizing coverfile in LATEXBuilder (same as HTMLBuilder)
Fri Sep 23 22:06:26 2011 Masayoshi Takahashi <[email protected]>
* lib/review/latexutils.rb:
support MARUSUJI(number in circle) 0-10
Wed Sep 21 19:51:57 2011 Masayoshi Takahashi <[email protected]>
* lib/review/compiler.rb: fix slow regexp (cf. [ruby-list:48379])
Thu Sep 15 00:28:05 2011 Kenshi Muto <[email protected]>
* lib/review/builder.rb, lib/review/htmlbuilder.rb,
lib/review/texbuilder.rb, lib/review/idgxmlbuilder.rb,
test/test_htmlbuilder.rb, test/test_latexbuilder.rb,
test/test_idgxmlbuilder.rb: handle metric parameter of
//image and //indepimage more portable.
Builder specific parameter can be specified with prefix
html::, latex::, and idgxml::.
Thu Sep 1 13:21:16 2011 Kenshi Muto <[email protected]>
* lib/review/htmlbuilder.rb: support --draft flag.
add @<comment>. //comment and @<comment> will show in the
output when --draft flag is specified. Without this flag
(default), they will be converted to '<!-- -->'.
Thu Sep 1 12:39:54 2011 Kenshi Muto <[email protected]>
* lib/review/htmlbuilder.rb: escape html in @<code>.
Mon Aug 29 10:59:15 2011 Masayoshi Takahashi <[email protected]>
* bin/review-pdfmaker:
add translater in okuduke and titlepage if values["trl"] has value
* bin/review-epubmaker:
add translater in okuduke if values["trl"] has value
Fri Aug 26 14:57:35 2011 Masayoshi Takahashi <[email protected]>
* bin/review-pdfmaker: fix some style broken in TeXLive 2011
* bin/review-pdfmaker: use extractbb instead of ebb
Sat Aug 13 11:06:17 2011 Masayoshi Takahashi <[email protected]>
* bin/review-epubmaker:
fix Issue #34: generating stylesheet with appropriate filename
Sat Aug 11 01:23:00 2011 Masayoshi Takahashi <[email protected]>
* test/test_latexbuilder.rb, lib/review/latexbuilder.rb:
fix //noindent in LATEXBuilder
Sat Jul 2 13:34:00 2011 Masayoshi Takahashi <[email protected]>
* lib/review/latexbuilder.rb, lib/review/compiler.rb, bin/review-compile:
support //comment and @<comment> as PDF Annotation in LATEXBuilder
Sat Jul 2 11:22:53 2011 Masayoshi Takahashi <[email protected]>
* bin/review-epubmaker, lib/review/htmlbuilder.rb:
fix @<bib> and bib.re support in EPUB
Sun Jun 26 22:38:09 2011 KADO Masanori <[email protected]>
* lib/review/builder.rb, lib/review/compiler.rb, lib/review/index.rb,
lib/review/latexbuilder.rb, lib/review/idgxmlbuilder.rb, lib/review/htmlbuilder.rb:
support //graph
Thu Jun 16 15:59:35 2011 Kenshi Muto <[email protected]>
* lib/review/idgxmlbuilder.rb, test/test_idgxmlbuilder.rb:
<td> has xyh attribution to point cell location and a number
of header lines.
Wed Jun 1 23:32:06 2011 Kenshi Muto <[email protected]>
* lib/review/idgxmlbuilder.rb: <recipe> uses full
width blank instead of tab, because tab breaks
a table element.
Wed Jun 1 18:42:52 2011 Masayoshi Takahashi <[email protected]>
* support caption as optional in //cmd{..} and
//emlist{..}.
Tue May 24 12:57:37 2011 Kenshi Muto <[email protected]>
* lib/review/idgxmlbuilder.rb: Use <lead> element for
//lead and //read by default, to avoid nested <p>
elements.
Wed May 11 14:54:50 2011 Kenshi Muto <[email protected]>
* merge Yutaka HARA's branch.
commit b4cf87a791f7dcca475cec9a5e838cc0da09de3b
Author: Yutaka HARA <[email protected]>
Date: Wed May 11 14:28:41 2011 +0900
bin/review-vol: review-vol should accept --directory
Mon Apr 25 07:22:39 2011 Kenshi Muto <[email protected]>
* bin/review-compile, lib/review/htmlbuilder.rb:
add --htmlversion option. This parameter takes the
HTML version value 4 or 5.
* bin/review-epubmaker-ng: now works. It gets an ability to
produce EPUB3 book.
* lib/epubmaker/epubv3.rb. lib/epubmaker/producer.rb: support
EPUB3.
* lib/epubmaker/epubv2.rb: fix indents.
Sat Apr 23 12:15:46 2011 Kenshi Muto <[email protected]>
* Cherry-pick from Kouji Takao's branch.
commit 133c44c61da8b1057a6883e95a9165815f163cb4
Author: Kouji Takao <[email protected]>
Date: Sun Jan 2 20:42:40 2011 +0900
display chapter name.
commit 35b65a3e13463c54e696c71b6ec92d9c04a036df
Author: Kouji Takao <[email protected]>
Date: Sun Jan 2 20:38:47 2011 +0900
supported book configuration in config.rb.
commit 0c493c434bda7bc5b58d5927cc8caedb8da5105c
Author: Kouji Takao <[email protected]>
Date: Sun Jan 2 20:37:56 2011 +0900
supported comment in CHAPS file.
Mon Apr 11 18:41:26 2011 Masayoshi Takahashi <[email protected]>
* bin/review-pdfmaker: add texdocumentclass option in config.yml
Wed Mar 16 16:09:42 2011 Kenshi Muto <[email protected]>
* Mege nari's branch.
- use compile_inline() to caption on //bibpaper.
Fri Feb 25 22:40:18 2011 Kenshi Muto <[email protected]>
* Merge nari's branch.
- add maxwidth for latex indepimage.
Thu Feb 3 23:29:07 2011 Kenshi Muto <[email protected]>
* lib/review/book.rb, lib/review/index.rb: workaround for
inline icon file support. (it still exports duplicate ID warning...)
Sat Jan 29 23:03:37 2011 Kenshi Muto <[email protected]>
* Merge nari's branch.
- add @<bib> //bib to latexbuilder.
Sat Jan 29 19:00:07 2011 Kenshi Muto <[email protected]>
* lib/epubmaker/epubv2.rb: add dc:publisher value in opf file
(same value of prt).
Wed Jan 12 23:49:05 2011 Kenshi Muto <[email protected]>
* lib/epubmaker/epubv2.rb: fix level handling of mytoc.
Mon Dec 20 23:41:04 2010 Kenshi Muto <[email protected]>
* lib/epubmaker/epubv2.rb: fix indent.
* test/test_epubmaker.rb: initial test codes.
Mon Dec 20 00:12:41 2010 Kenshi Muto <[email protected]>
* lib/epubmaker.rb: separate files to content, epubv2, epubv3,
producer, and resource.
Sat Dec 18 10:50:24 2010 Kenshi Muto <[email protected]>
* bin/review-compile, lib/review/htmlbuilder.rb,
lib/review/idgxmlbuilder.rb: unify block coding styles and regexp
coding styles.
* bin/review-compile: accept multiple stylesheets.
set default values for language and htmlext.
use YAML file by passing --yaml=YAMLFILE option.
* lib/review/htmlbuilder.rb: support htmlext and language parameter.
support multiple stylesheets.
* lib/epubmaker.rb: new EPUB support library. Not only ReVIEW can
use this library. This library is experimental.
* bin/review-epubmaker-ng: experimental alternative implementation
for review-epubmaker using epubmaker.rb. This tools is under
construction and may be changed widely.
* doc/libepubmaker/sample.yaml: sample YAML file for epubmaker.rb
library.
Sat Dec 12 09:30:28 2010 KADO Masanori <[email protected]>
* lib/review/compiler.rb: add [/column] notation
* test/test_htmlbuilder.rb, test/test_idgxmlbuilder.rb, test/test_latexbuilder.rb: add test for [/column] notation
* lib/review/tocparser.rb: ignore [/column] notation for review-index
* doc/format.rdoc: add [/column] notation
Sat Dec 11 08:49:48 2010 KADO Masanori <[email protected]>
* bin/review-pdfmaker, lib/review/latexbuilder.rb: add maxwidth
for latex image
* bin/review-pdfmaker: include image subdir for ebb
Sat Dec 11 02:39:37 2010 Masayoshi Takahashi <[email protected]>
* lib/review/htmlbuilder.rb: remove empty line after <pre> tag
Thu Dec 9 11:15:11 2010 Masayoshi Takahashi <[email protected]>
* lib/review/compiler.rb: fix slow regexp for compiling inline
(ex. '@<href>{http://very.long.name/and/missing/close/curly/brace')
Sat Dec 4 00:18:45 2010 Kenshi Muto <[email protected]>
* doc/quickstart.rdoc: created.
* lib/review/textbuilder.rb: provide a wrapper of topbuilder.rb.
'review-compile --target text' (or review2text) makes a plain
text file with pseudo tags.
Thu Dec 2 08:23:14 2010 Kenshi Muto <[email protected]>
* lib/review/compiler.rb, lib/review/htmlbuilder.rb,
lib/review/latexbuilder.rb: move core tag @<icon> to
compiler.rb.
* lib/review/topbuilder.rb, test/test_topbuilder.rb: supports
same tags with other builders.
Wed Dec 1 16:41:40 2010 Masayoshi Takahashi <[email protected]>
* VERSION: Version bump to 0.9.0
Wed Dec 1 16:38:34 2010 Masayoshi Takahashi <[email protected]>
* doc/format.txt, doc/format_idg.txt, doc/format_sjis.txt, doc/memo-reviewspec.txt:
delete old docs; see format.rdoc, format_idg.rdoc and
Wiki pages on github.com (https://github.com/kmuto/review/wiki)
Sun Nov 28 14:12:50 2010 Kenshi Muto <[email protected]>
* lib/review/idgxmlbuilder.rb: partially support for metric.
* test/test_htmlbuilder.rb, test/idg_xmlbuilder.rb,
test/test_latexbuilder.rb: add test for //indepimage and //image.
Sun Nov 28 01:28:06 2010 Masayoshi Takahashi <[email protected]>
* lib/review/latexbuilder.rb, lib/review/idgxmlbuilder.rb,
lib/review/htmlbuilder.rb, lib/review/builder.rb:
- support metric option of //image
Sat Nov 27 22:59:24 2010 Kenshi Muto <[email protected]>
* lib/review/compiler.rb: accept space/tab before :
(description list).
Sat Nov 27 22:27:56 2010 Kenshi Muto <[email protected]>
* lib/review/htmlbuilder.rb: use <p class="noindent"> for
//noindent. use <p class="flushright"> for //flushright (for
backward compatibility, it can be reverted to older <div> and
<pre> style by setting --deprecated-blocklines.)
* test/test_latexbuilder.rb, test/test_htmlbuilder.rb,
test/test_idgbuilder.rb: add flushright and noindent tests.
* doc/sample.css: add p, p.noindent, p.flushright, and p.caption.
Sat Nov 27 22:00:20 2010 Kenshi Muto <[email protected]>
* bin/review-index: deprecate --html option.
* bin/review-check: deprecate -s option.
* bin/review-preproc: deprecate --final option.
Sat Nov 27 21:40:42 2010 Kenshi Muto <[email protected]>
* merge kdmsnr's branch.
- add inline_table/list ref to another chapter.
Sat Nov 27 14:58:05 2010 Kenshi Muto <[email protected]>
* Clean up.
- bin/setup.rb: remove obsolete file. use gem or git.
- lib/review/book.rb, test/test_book.rb: remove PARAMS.
- lib/review/compiler.rb, lib/review/htmlbuilder.rb,
lib/review/idgxmlbuilder.rb, lib/review/latexbuilder.rb:
support caption in //indepimage.
//numberlessimage aliases of //indepimage.
- bin/review-compile, lib/review/compiler.rb: --hdnumberingmode
is deprecated. use --level option.
- lib/review/book.rb: remove nocode_file and index_file because
they aren't used anymore.
- bin/review-epubmaker: print usage if argument isn't defined.
Sat Nov 27 04:00:01 2010 Masayoshi Takahashi <[email protected]>
* bin/review-pdfmaker: make default LaTeX style much simpler.
- add \reviewmainfont and \reviewtitlefont (you can redifine with \renewcomamnd{})
- delete header/footer definition (you can do it with config.yml)
Mon Nov 22 00:44:20 2010 Masayoshi Takahashi <[email protected]>
* lib/review/latexbuilder.rb: support @<icon>{} in LATEXBuilder
Sun Nov 21 21:50:32 2010 Masayoshi Takahashi <[email protected]>
* test/test_uuid.rb: reduce slow tests. If we use original
uuid.rb without any changes, it's no problem.
Sun Nov 21 15:02:00 2010 Kenshi Muto <[email protected]>
* lib/review/book.rb: add 'ai' to acceptable image file.
* lib/review/builder.rb: move find_pathes() and entries() here
from HTMLBuilder.
* lib/review/compiler.rb: rescue string() error for TestUnit.
* lib/review/htmlbuilder.rb: cleanup.
* lib/review/idgxmlbuilder.rb: support both 1.8 and 1.9 in
inline_maru. use find_pathes() of builder for @icon and
//indepimage.
Sun Nov 21 14:22:55 2010 Kenshi Muto <[email protected]>
* lib/review/idgxmlbuilder.rb, test/test_idgxmlbuilder.rb:
refactoring. add some tests.
Wed Nov 17 09:36:50 2010 Kenshi Muto <[email protected]>
* merge KADO's patch and modify.
- lib/review/idgxmlbuilder.rb, lib/review/htmlbuilder.rb,
lib/review/latexbuilder.rb: //lead, //read, //quote, //note,
//memo, //tip, //info, //planning, //best, //important,
//security, //caution, //term, //link, //notice, //point,
//shoot, //reference, //practice: use normal paragraph
syntax; splitted by empty line.
- bin/review-compile: For backward compatibilty, add
--deprecated-blocklines option.
Wed Nov 17 17:55:42 2010 Masayoshi Takahashi <[email protected]>
* lib/review/latexutils.rb, bin/review-pdfmaker,
test/test_latexbuilder.rb:
- \textbackslash -> \reviewbackslash(to replace into yensign) in LATEXBuilder
- allow to overwrite review* macro in LATEXBuilder
Sat Nov 13 23:19:25 2010 Kenshi Muto <[email protected]>
* test/test_builder.rb, test/test_htmlbuilder.rb,
test/test_idgxmlbuilder.rb, test/test_latexbuilder.rb:
add some block test codes.
* Fix //quote handling of LATEXBuilder.
Sun Nov 14 05:19:53 2010 Masayoshi Takahashi <[email protected]>
* merge KADO's patch.
- test/test_latexbuilder.rb, lib/review/latexbuilder.rb:
//quote allow newlines in LATEXBuilder.
Sat Nov 13 10:33:13 2010 Kenshi Muto <[email protected]>
* lib/review/idgxmlbuilder.rb: round float value for
the compatibility between 1.8 and 1.9.
Thu Nov 11 08:16:10 2010 Masayoshi Takahashi <[email protected]>
* test/test_latexbuilder.rb: test tagged header.
Thu Nov 11 21:34:39 2010 Kenshi Muto <[email protected]>
* lib/review/compiler.rb, lib/review/htmlbuilder.rb,
lib/review/idgxmlbuilder.rb, lib/review/latexbuilder.rb:
allow inline tags in captions and headers.
* test/test_htmlbuilder.rb: test tagged header.
Mon Nov 8 21:58:27 2010 Kenshi Muto <[email protected]>
* merge KADO's patch.
- lib/review/htmlbuilder.rb: add chap to tabel_header.
Mon Nov 8 21:51:43 2010 Kenshi Muto <[email protected]>
* lib/review/compiler.rb, lib/review/htmlbuilder.rb,
lib/review/idgxmlbuilder.rb, lib/review/latexbuilder.rb:
move @<tti>, @<ttb>, @<u>, @<uchar>, @<idx>, and @<hidx> to
base op.
* lib/review/htmlbuilder.rb, lib/review/latexbuilder.rb:
support @<uchar> op.
* test/test_htmlbuilder.rb, test/test_latexbuilder.rb,
test/test_idgxmlbuilder.rb: add test for @<uchar>.
Sun Nov 7 17:23:12 2010 Kenshi Muto <[email protected]>
* lib/review/latexbuilder.rb: support //indepimage.
* lib/review/htmlbuilder.rb, lib/review/idgxmlbuilder.rb: accept
(though just ignore) metric option of //indepimage.
Sun Nov 7 15:20:16 2010 Kenshi Muto <[email protected]>
* lib/review/htmlbuilder.rb: use <u> instead of <underline> for underline.
Sun Nov 7 13:20:37 2010 Masayoshi Takahashi <[email protected]>
* lib/review/latexbuilder.rb: support @<tti> and @<ttb> for LATEXBuilder
Sun Nov 7 12:35:11 2010 Kenshi Muto <[email protected]>
* lib/review/idgxmlbuilder.rb: ad-hoc support for //texequation
and @<m>.
Sun Nov 7 12:01:03 2010 Kenshi Muto <[email protected]>
* merge KADO's branch.
- lib/review/htmlbuilder.rb, lib/review/idgxmlbuilder.rb:
add @ttb op.
Thu Nov 4 20:48:41 2010 Masayoshi Takahashi <[email protected]>
* bin/review-pdfmaker: update colophon in LATEXBuilder.
Thu Nov 4 19:58:20 2010 Masayoshi Takahashi <[email protected]>
* bin/review-pdfmaker, lib/review/latexbuilder.rb:
use \reviewkw{} for @<kw>, and \reviewkw{} use \textbf{}
and \textgt{} as default
Thu Nov 4 17:29:17 2010 Masayoshi Takahashi <[email protected]>
* bin/review-pdfmaker: only use coverimage file if 'converimage'
attributes has a value(but ignore coverfile).
Thu Nov 4 17:11:56 2010 Masayoshi Takahashi <[email protected]>
* test/test_htmlbuilder.rb, test/test_latexbuilder.rb:
add some inline tests.
Thu Nov 4 17:11:04 2010 Masayoshi Takahashi <[email protected]>
* lib/review/latexbuilder.rb: escape inline_m's content.
Thu Nov 4 07:27:09 2010 Kenshi Muto <[email protected]>
* bin/review-compile, lib/review/compiler.rb,
lib/review/htmlbuilder.rb, lib/review/htmlutils.rb,
lib/review/latexbuilder.rb, lib/review/latexutils.rb,
doc/format.rdoc, doc/format.re, doc/format.txt:
add experimental TeX block equation/inline equation support.
add //texequation in LATEXBuilder and HTMLBuilder.
add @<m> op in HTMLBuilder.
add --mathml option to use math_ml.rb library
(http://www.hinet.mydns.jp/?mathml.rb) in HTMLBuilder.
Wed Nov 3 23:44:37 2010 Kenshi Muto <[email protected]>
* merge KADO's branch.
- bin/review-index: add chapter option
Tue Nov 2 19:11:51 2010 Kenshi Muto <[email protected]>
* merge KADO's branch.
- lib/review/htmlbuilder.rb: add chap to image_header
- doc/format.rdoc: initial document file for GitHub.