rabbit 2.2.0 → 2.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. checksums.yaml +4 -4
  2. data/doc/_layouts/skeleton.html +1 -0
  3. data/doc/css/rabbit.css +2 -1
  4. data/doc/css/syntax.scss +67 -0
  5. data/doc/en/development.rd +31 -0
  6. data/doc/en/index.rd +0 -4
  7. data/doc/en/news.rd +55 -0
  8. data/doc/en/sample/markdown/rabbit.md +250 -246
  9. data/doc/en/usage/rabbit.rd +16 -0
  10. data/doc/ja/development.rd +30 -0
  11. data/doc/ja/index.rd +0 -5
  12. data/doc/ja/news.rd +55 -0
  13. data/doc/ja/sample/markdown/rabbit.md +251 -247
  14. data/doc/ja/usage/rabbit.rd +16 -1
  15. data/lib/rabbit/command/rabbit.rb +5 -1
  16. data/lib/rabbit/element/index-slide.rb +1 -1
  17. data/lib/rabbit/element/text-renderer.rb +7 -7
  18. data/lib/rabbit/gtk.rb +17 -10
  19. data/lib/rabbit/image/svg.rb +25 -23
  20. data/lib/rabbit/info-window.rb +1 -0
  21. data/lib/rabbit/parser/ext/rouge.rb +126 -0
  22. data/lib/rabbit/parser/markdown/converter.rb +4 -4
  23. data/lib/rabbit/parser/rd/ext/block-verbatim.rb +13 -1
  24. data/lib/rabbit/parser/rd/rt/rt2rabbit-lib.rb +3 -3
  25. data/lib/rabbit/parser/wiki/output.rb +9 -3
  26. data/lib/rabbit/progress.rb +16 -8
  27. data/lib/rabbit/renderer/display/drawing-area-base.rb +8 -8
  28. data/lib/rabbit/renderer/display/drawing-area-primitive.rb +3 -3
  29. data/lib/rabbit/renderer/display/graffiti.rb +39 -39
  30. data/lib/rabbit/renderer/display/progress.rb +3 -2
  31. data/lib/rabbit/renderer/display/search.rb +1 -1
  32. data/lib/rabbit/renderer/kernel.rb +1 -1
  33. data/lib/rabbit/search-window.rb +2 -2
  34. data/lib/rabbit/source/memory.rb +4 -0
  35. data/lib/rabbit/theme/background-image-toolkit/background-image-toolkit.rb +1 -1
  36. data/lib/rabbit/theme/color-circle-title-slide/color-circle-title-slide.rb +1 -1
  37. data/lib/rabbit/theme/default-block-quote/default-block-quote.rb +1 -1
  38. data/lib/rabbit/theme/image-slide-number/image-slide-number.rb +13 -2
  39. data/lib/rabbit/theme/lightning-talk-toolkit/lightning-talk-toolkit.rb +2 -2
  40. data/lib/rabbit/theme/slide-number/slide-number.rb +1 -1
  41. data/lib/rabbit/theme/syntax-highlighting/syntax-highlighting.rb +3 -0
  42. data/lib/rabbit/theme/table/table.rb +1 -1
  43. data/lib/rabbit/theme/title-on-image-toolkit/title-on-image-toolkit.rb +1 -1
  44. data/lib/rabbit/utils.rb +1 -1
  45. data/lib/rabbit/version.rb +2 -2
  46. data/po/en/rabbit.edit.po +107 -107
  47. data/po/fr/rabbit.edit.po +107 -107
  48. data/po/ja/rabbit.edit.po +107 -107
  49. data/rabbit.gemspec +3 -2
  50. data/sample/rabbit-en.rd +12 -0
  51. data/sample/rabbit.rd +12 -0
  52. data/test/parser/test-markdown.rb +9 -57
  53. metadata +20 -4
@@ -28,7 +28,7 @@ match(*all_table) do |tables|
28
28
  table.add_pre_draw_proc(name) do |canvas, x, y, w, h, simulation|
29
29
  if table.caption and layout.nil?
30
30
  caption = Text.new(table.caption)
31
- caption.align = Pango::Layout::ALIGN_CENTER
31
+ caption.align = Pango::Alignment::CENTER
32
32
  caption.prop_set("size", @normal_font_size)
33
33
  set_font_family(caption)
34
34
  caption.compile(canvas, x, y, w, h)
@@ -69,7 +69,7 @@ def setup_title_on_image_slide(slide)
69
69
  shadow_headline.font(:color => nil)
70
70
  shadow_layout = canvas.make_layout(shadow_headline.markuped_text)
71
71
  shadow_layout.set_width(w * Pango::SCALE)
72
- shadow_layout.set_alignment(Pango::Layout::ALIGN_CENTER)
72
+ shadow_layout.set_alignment(Pango::Alignment::CENTER)
73
73
 
74
74
  font_size = headline.pixel_font_size
75
75
  move_x = @applier.screen_x(font_size.to_f / @applier.screen_size(10))
@@ -199,7 +199,7 @@ module Rabbit
199
199
  window_x, window_y = window.origin
200
200
  window_width = window.width
201
201
  window_height = window.height
202
- target_width, target_height = target.size_request
202
+ target_width, target_height = target.size
203
203
 
204
204
  args = [window_x, window_y, window_width, window_height]
205
205
  args.concat([target_width, target_height])
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2012-2016 Kouhei Sutou <kou@cozmixng.org>
1
+ # Copyright (C) 2012-2017 Kouhei Sutou <kou@cozmixng.org>
2
2
  #
3
3
  # This program is free software; you can redistribute it and/or modify
4
4
  # it under the terms of the GNU General Public License as published by
@@ -15,5 +15,5 @@
15
15
  # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16
16
 
17
17
  module Rabbit
18
- VERSION = "2.2.0"
18
+ VERSION = "2.2.1"
19
19
  end
@@ -220,7 +220,7 @@ msgstr ""
220
220
  msgid "Save as image"
221
221
  msgstr ""
222
222
 
223
- #: ../lib/rabbit/action/basic.rb:83 ../lib/rabbit/command/rabbit.rb:318
223
+ #: ../lib/rabbit/action/basic.rb:83 ../lib/rabbit/command/rabbit.rb:322
224
224
  msgid "Print"
225
225
  msgstr ""
226
226
 
@@ -604,398 +604,398 @@ msgstr ""
604
604
  msgid "rabbit-theme-benchmark-en.gem"
605
605
  msgstr ""
606
606
 
607
- #: ../lib/rabbit/command/rabbit.rb:147 ../lib/rabbit/theme/blue-bar/property.rb:1 ../lib/rabbit/theme/blue-circle/property.rb:1 ../lib/rabbit/theme/centering-rabbit/property.rb:1 ../lib/rabbit/theme/clear-blue/property.rb:1 ../lib/rabbit/theme/cozmixng/property.rb:1 ../lib/rabbit/theme/dark-gradation/property.rb:1 ../lib/rabbit/theme/day-white/property.rb:1 ../lib/rabbit/theme/debian/property.rb:1 ../lib/rabbit/theme/default/property.rb:1 ../lib/rabbit/theme/enishi-green/property.rb:1 ../lib/rabbit/theme/green-circle/property.rb:1 ../lib/rabbit/theme/image-viewer/property.rb:1 ../lib/rabbit/theme/lightning-clear-blue/property.rb:1 ../lib/rabbit/theme/lightning-monochrome/property.rb:1 ../lib/rabbit/theme/lightning-rabbit/property.rb:1 ../lib/rabbit/theme/lightning-simple/property.rb:1 ../lib/rabbit/theme/lightning-talk/property.rb:1 ../lib/rabbit/theme/nari/property.rb:1 ../lib/rabbit/theme/night-black/property.rb:1 ../lib/rabbit/theme/pdf/property.rb:1 ../lib/rabbit/theme/rabbit/property.rb:1 ../lib/rabbit/theme/ranguba/property.rb:1 ../lib/rabbit/theme/red-frame/property.rb:1 ../lib/rabbit/theme/ruby-gnome2/property.rb:1 ../lib/rabbit/theme/rubykaigi2011/property.rb:1
607
+ #: ../lib/rabbit/command/rabbit.rb:151 ../lib/rabbit/theme/blue-bar/property.rb:1 ../lib/rabbit/theme/blue-circle/property.rb:1 ../lib/rabbit/theme/centering-rabbit/property.rb:1 ../lib/rabbit/theme/clear-blue/property.rb:1 ../lib/rabbit/theme/cozmixng/property.rb:1 ../lib/rabbit/theme/dark-gradation/property.rb:1 ../lib/rabbit/theme/day-white/property.rb:1 ../lib/rabbit/theme/debian/property.rb:1 ../lib/rabbit/theme/default/property.rb:1 ../lib/rabbit/theme/enishi-green/property.rb:1 ../lib/rabbit/theme/green-circle/property.rb:1 ../lib/rabbit/theme/image-viewer/property.rb:1 ../lib/rabbit/theme/lightning-clear-blue/property.rb:1 ../lib/rabbit/theme/lightning-monochrome/property.rb:1 ../lib/rabbit/theme/lightning-rabbit/property.rb:1 ../lib/rabbit/theme/lightning-simple/property.rb:1 ../lib/rabbit/theme/lightning-talk/property.rb:1 ../lib/rabbit/theme/nari/property.rb:1 ../lib/rabbit/theme/night-black/property.rb:1 ../lib/rabbit/theme/pdf/property.rb:1 ../lib/rabbit/theme/rabbit/property.rb:1 ../lib/rabbit/theme/ranguba/property.rb:1 ../lib/rabbit/theme/red-frame/property.rb:1 ../lib/rabbit/theme/ruby-gnome2/property.rb:1 ../lib/rabbit/theme/rubykaigi2011/property.rb:1
608
608
  msgid "Theme"
609
609
  msgstr ""
610
610
 
611
- #: ../lib/rabbit/command/rabbit.rb:150
611
+ #: ../lib/rabbit/command/rabbit.rb:154
612
612
  msgid "Add [PATH] to load path."
613
613
  msgstr ""
614
614
 
615
- #: ../lib/rabbit/command/rabbit.rb:155
615
+ #: ../lib/rabbit/command/rabbit.rb:159
616
616
  msgid "Use [THEME] as theme."
617
617
  msgstr ""
618
618
 
619
- #: ../lib/rabbit/command/rabbit.rb:162
619
+ #: ../lib/rabbit/command/rabbit.rb:166
620
620
  msgid "Use [THEME] for comment."
621
621
  msgstr ""
622
622
 
623
- #: ../lib/rabbit/command/rabbit.rb:168
623
+ #: ../lib/rabbit/command/rabbit.rb:172
624
624
  msgid "Use [TIME] as allotted time."
625
625
  msgstr ""
626
626
 
627
- #: ../lib/rabbit/command/rabbit.rb:174 ../lib/rabbit/html/generator.rb:404
627
+ #: ../lib/rabbit/command/rabbit.rb:178 ../lib/rabbit/html/generator.rb:404
628
628
  msgid "Source"
629
629
  msgstr ""
630
630
 
631
- #: ../lib/rabbit/command/rabbit.rb:181
631
+ #: ../lib/rabbit/command/rabbit.rb:185
632
632
  msgid ""
633
633
  "When select %s\n"
634
634
  "specify %s\n"
635
635
  "as [SOURCE_INFOS]."
636
636
  msgstr ""
637
637
 
638
- #: ../lib/rabbit/command/rabbit.rb:188
638
+ #: ../lib/rabbit/command/rabbit.rb:192
639
639
  msgid "Specify source type as [TYPE]."
640
640
  msgstr ""
641
641
 
642
- #: ../lib/rabbit/command/rabbit.rb:189 ../lib/rabbit/console.rb:165 ../lib/rabbit/console.rb:182
642
+ #: ../lib/rabbit/command/rabbit.rb:193 ../lib/rabbit/console.rb:165 ../lib/rabbit/console.rb:182
643
643
  msgid "Select from [%s]."
644
644
  msgstr ""
645
645
 
646
- #: ../lib/rabbit/command/rabbit.rb:190
646
+ #: ../lib/rabbit/command/rabbit.rb:194
647
647
  msgid "Note: case insensitive."
648
648
  msgstr ""
649
649
 
650
- #: ../lib/rabbit/command/rabbit.rb:204
650
+ #: ../lib/rabbit/command/rabbit.rb:208
651
651
  msgid "Specify source encoding as [ENCODING]."
652
652
  msgstr ""
653
653
 
654
- #: ../lib/rabbit/command/rabbit.rb:205 ../lib/rabbit/command/rabbit.rb:211 ../lib/rabbit/command/rabbit.rb:378 ../lib/rabbit/command/rabbit.rb:385 ../lib/rabbit/command/rabbit.rb:392 ../lib/rabbit/command/rabbit.rb:399 ../lib/rabbit/command/rabbit.rb:424 ../lib/rabbit/command/rabbit.rb:431 ../lib/rabbit/command/rabbit.rb:438 ../lib/rabbit/command/rabbit.rb:445 ../lib/rabbit/command/rabbit.rb:558 ../lib/rabbit/console.rb:150
654
+ #: ../lib/rabbit/command/rabbit.rb:209 ../lib/rabbit/command/rabbit.rb:215 ../lib/rabbit/command/rabbit.rb:382 ../lib/rabbit/command/rabbit.rb:389 ../lib/rabbit/command/rabbit.rb:396 ../lib/rabbit/command/rabbit.rb:403 ../lib/rabbit/command/rabbit.rb:428 ../lib/rabbit/command/rabbit.rb:435 ../lib/rabbit/command/rabbit.rb:442 ../lib/rabbit/command/rabbit.rb:449 ../lib/rabbit/command/rabbit.rb:562 ../lib/rabbit/console.rb:150
655
655
  msgid "(auto)"
656
656
  msgstr ""
657
657
 
658
- #: ../lib/rabbit/command/rabbit.rb:210
658
+ #: ../lib/rabbit/command/rabbit.rb:214
659
659
  msgid "Specify base URI or path of source as [BASE]."
660
660
  msgstr ""
661
661
 
662
- #: ../lib/rabbit/command/rabbit.rb:216
662
+ #: ../lib/rabbit/command/rabbit.rb:220
663
663
  msgid "Initial state"
664
664
  msgstr ""
665
665
 
666
- #: ../lib/rabbit/command/rabbit.rb:219
666
+ #: ../lib/rabbit/command/rabbit.rb:223
667
667
  msgid "Toggle full screen mode."
668
668
  msgstr ""
669
669
 
670
- #: ../lib/rabbit/command/rabbit.rb:225
670
+ #: ../lib/rabbit/command/rabbit.rb:229
671
671
  msgid "Toggle index mode."
672
672
  msgstr ""
673
673
 
674
- #: ../lib/rabbit/command/rabbit.rb:231
674
+ #: ../lib/rabbit/command/rabbit.rb:235
675
675
  msgid "Show the Nth slide. (zero-based)"
676
676
  msgstr ""
677
677
 
678
- #: ../lib/rabbit/command/rabbit.rb:237
678
+ #: ../lib/rabbit/command/rabbit.rb:241
679
679
  msgid "Size"
680
680
  msgstr ""
681
681
 
682
- #: ../lib/rabbit/command/rabbit.rb:240
682
+ #: ../lib/rabbit/command/rabbit.rb:244
683
683
  msgid "Set window geometry [GEOMETRY]."
684
684
  msgstr ""
685
685
 
686
- #: ../lib/rabbit/command/rabbit.rb:241
686
+ #: ../lib/rabbit/command/rabbit.rb:245
687
687
  msgid "Format: WIDTHxHEIGHT+X+Y"
688
688
  msgstr ""
689
689
 
690
- #: ../lib/rabbit/command/rabbit.rb:248
690
+ #: ../lib/rabbit/command/rabbit.rb:252
691
691
  msgid "Set window width to [WIDTH]."
692
692
  msgstr ""
693
693
 
694
- #: ../lib/rabbit/command/rabbit.rb:255
694
+ #: ../lib/rabbit/command/rabbit.rb:259
695
695
  msgid "Set window height to [HEIGHT]."
696
696
  msgstr ""
697
697
 
698
- #: ../lib/rabbit/command/rabbit.rb:260
698
+ #: ../lib/rabbit/command/rabbit.rb:264
699
699
  msgid ""
700
700
  "Set window width and height to\n"
701
701
  "[WIDTH] and [HEIGHT]."
702
702
  msgstr ""
703
703
 
704
- #: ../lib/rabbit/command/rabbit.rb:273
704
+ #: ../lib/rabbit/command/rabbit.rb:277
705
705
  msgid "Save"
706
706
  msgstr ""
707
707
 
708
- #: ../lib/rabbit/command/rabbit.rb:276
708
+ #: ../lib/rabbit/command/rabbit.rb:280
709
709
  msgid "Save as image and exit."
710
710
  msgstr ""
711
711
 
712
- #: ../lib/rabbit/command/rabbit.rb:281
712
+ #: ../lib/rabbit/command/rabbit.rb:285
713
713
  msgid "Specify saved image type as [TYPE]."
714
714
  msgstr ""
715
715
 
716
- #: ../lib/rabbit/command/rabbit.rb:288
716
+ #: ../lib/rabbit/command/rabbit.rb:292
717
717
  msgid "Specify saved image base name as [BASE_NAME]."
718
718
  msgstr ""
719
719
 
720
- #: ../lib/rabbit/command/rabbit.rb:289 ../lib/rabbit/command/rabbit.rb:327
720
+ #: ../lib/rabbit/command/rabbit.rb:293 ../lib/rabbit/command/rabbit.rb:331
721
721
  msgid "Title of slide"
722
722
  msgstr ""
723
723
 
724
- #: ../lib/rabbit/command/rabbit.rb:294
724
+ #: ../lib/rabbit/command/rabbit.rb:298
725
725
  msgid "Output HTML for viewing saved images."
726
726
  msgstr ""
727
727
 
728
- #: ../lib/rabbit/command/rabbit.rb:300
728
+ #: ../lib/rabbit/command/rabbit.rb:304
729
729
  msgid "Output index HTML for navigating slides."
730
730
  msgstr ""
731
731
 
732
- #: ../lib/rabbit/command/rabbit.rb:306
732
+ #: ../lib/rabbit/command/rabbit.rb:310
733
733
  msgid "Specify base URI of RSS as [URI]."
734
734
  msgstr ""
735
735
 
736
- #: ../lib/rabbit/command/rabbit.rb:307
736
+ #: ../lib/rabbit/command/rabbit.rb:311
737
737
  msgid "RSS is generated only when HTML is output."
738
738
  msgstr ""
739
739
 
740
- #: ../lib/rabbit/command/rabbit.rb:313
740
+ #: ../lib/rabbit/command/rabbit.rb:317
741
741
  msgid "Specify source filenam as [FILENAME]."
742
742
  msgstr ""
743
743
 
744
- #: ../lib/rabbit/command/rabbit.rb:321
744
+ #: ../lib/rabbit/command/rabbit.rb:325
745
745
  msgid "Print and exit."
746
746
  msgstr ""
747
747
 
748
- #: ../lib/rabbit/command/rabbit.rb:326
748
+ #: ../lib/rabbit/command/rabbit.rb:330
749
749
  msgid "Specify printed out filename as [FILENAME]."
750
750
  msgstr ""
751
751
 
752
- #: ../lib/rabbit/command/rabbit.rb:333
752
+ #: ../lib/rabbit/command/rabbit.rb:337
753
753
  msgid "Set slides per page."
754
754
  msgstr ""
755
755
 
756
- #: ../lib/rabbit/command/rabbit.rb:339
756
+ #: ../lib/rabbit/command/rabbit.rb:343
757
757
  msgid "Draw scaled image."
758
758
  msgstr ""
759
759
 
760
- #: ../lib/rabbit/command/rabbit.rb:340
760
+ #: ../lib/rabbit/command/rabbit.rb:344
761
761
  msgid "Better look for displaying but lesser look for printing."
762
762
  msgstr ""
763
763
 
764
- #: ../lib/rabbit/command/rabbit.rb:345
764
+ #: ../lib/rabbit/command/rabbit.rb:349
765
765
  msgid "Paper"
766
766
  msgstr ""
767
767
 
768
- #: ../lib/rabbit/command/rabbit.rb:349
768
+ #: ../lib/rabbit/command/rabbit.rb:353
769
769
  msgid "Set paper width to [WIDTH] Pt."
770
770
  msgstr ""
771
771
 
772
- #: ../lib/rabbit/command/rabbit.rb:350
772
+ #: ../lib/rabbit/command/rabbit.rb:354
773
773
  msgid "(landscape A4 width)"
774
774
  msgstr ""
775
775
 
776
- #: ../lib/rabbit/command/rabbit.rb:356
776
+ #: ../lib/rabbit/command/rabbit.rb:360
777
777
  msgid "Set paper height to [HEIGHT] Pt."
778
778
  msgstr ""
779
779
 
780
- #: ../lib/rabbit/command/rabbit.rb:357
780
+ #: ../lib/rabbit/command/rabbit.rb:361
781
781
  msgid "(landscape A4 height)"
782
782
  msgstr ""
783
783
 
784
- #: ../lib/rabbit/command/rabbit.rb:361
784
+ #: ../lib/rabbit/command/rabbit.rb:365
785
785
  msgid ""
786
786
  "Set paper width and height to\n"
787
787
  "[WIDTH] Pt and [HEIGHT] Pt."
788
788
  msgstr ""
789
789
 
790
- #: ../lib/rabbit/command/rabbit.rb:363
790
+ #: ../lib/rabbit/command/rabbit.rb:367
791
791
  msgid "(landscape A4 size)"
792
792
  msgstr ""
793
793
 
794
- #: ../lib/rabbit/command/rabbit.rb:373
794
+ #: ../lib/rabbit/command/rabbit.rb:377
795
795
  msgid "Margin"
796
796
  msgstr ""
797
797
 
798
- #: ../lib/rabbit/command/rabbit.rb:377
798
+ #: ../lib/rabbit/command/rabbit.rb:381
799
799
  msgid "Set left margin for slides per page mode print."
800
800
  msgstr ""
801
801
 
802
- #: ../lib/rabbit/command/rabbit.rb:384
802
+ #: ../lib/rabbit/command/rabbit.rb:388
803
803
  msgid "Set right margin for slides per page mode print."
804
804
  msgstr ""
805
805
 
806
- #: ../lib/rabbit/command/rabbit.rb:391
806
+ #: ../lib/rabbit/command/rabbit.rb:395
807
807
  msgid "Set top margin for slides per page mode print."
808
808
  msgstr ""
809
809
 
810
- #: ../lib/rabbit/command/rabbit.rb:398
810
+ #: ../lib/rabbit/command/rabbit.rb:402
811
811
  msgid "Set bottom margin for slides per page mode print."
812
812
  msgstr ""
813
813
 
814
- #: ../lib/rabbit/command/rabbit.rb:403
814
+ #: ../lib/rabbit/command/rabbit.rb:407
815
815
  msgid "[ALL]"
816
816
  msgstr ""
817
817
 
818
- #: ../lib/rabbit/command/rabbit.rb:404
818
+ #: ../lib/rabbit/command/rabbit.rb:408
819
819
  msgid "[TOP_BOTTOM],[LEFT_RIGHT]"
820
820
  msgstr ""
821
821
 
822
- #: ../lib/rabbit/command/rabbit.rb:405
822
+ #: ../lib/rabbit/command/rabbit.rb:409
823
823
  msgid "[TOP],[LEFT_RIGHT],[BOTTOM]"
824
824
  msgstr ""
825
825
 
826
- #: ../lib/rabbit/command/rabbit.rb:406
826
+ #: ../lib/rabbit/command/rabbit.rb:410
827
827
  msgid "[TOP],[RIGHT],[BOTTOM],[LEFT]"
828
828
  msgstr ""
829
829
 
830
- #: ../lib/rabbit/command/rabbit.rb:409
830
+ #: ../lib/rabbit/command/rabbit.rb:413
831
831
  msgid "Set margin for slides per page mode print."
832
832
  msgstr ""
833
833
 
834
- #: ../lib/rabbit/command/rabbit.rb:423
834
+ #: ../lib/rabbit/command/rabbit.rb:427
835
835
  msgid "Set left page margin."
836
836
  msgstr ""
837
837
 
838
- #: ../lib/rabbit/command/rabbit.rb:430
838
+ #: ../lib/rabbit/command/rabbit.rb:434
839
839
  msgid "Set right page margin."
840
840
  msgstr ""
841
841
 
842
- #: ../lib/rabbit/command/rabbit.rb:437
842
+ #: ../lib/rabbit/command/rabbit.rb:441
843
843
  msgid "Set top page margin."
844
844
  msgstr ""
845
845
 
846
- #: ../lib/rabbit/command/rabbit.rb:444
846
+ #: ../lib/rabbit/command/rabbit.rb:448
847
847
  msgid "Set bottom page margin."
848
848
  msgstr ""
849
849
 
850
- #: ../lib/rabbit/command/rabbit.rb:451
850
+ #: ../lib/rabbit/command/rabbit.rb:455
851
851
  msgid "Set page margin."
852
852
  msgstr ""
853
853
 
854
- #: ../lib/rabbit/command/rabbit.rb:463
854
+ #: ../lib/rabbit/command/rabbit.rb:467
855
855
  msgid "dRuby"
856
856
  msgstr ""
857
857
 
858
- #: ../lib/rabbit/command/rabbit.rb:466
858
+ #: ../lib/rabbit/command/rabbit.rb:470
859
859
  msgid "Specify whether to use dRuby."
860
860
  msgstr ""
861
861
 
862
- #: ../lib/rabbit/command/rabbit.rb:472
862
+ #: ../lib/rabbit/command/rabbit.rb:476
863
863
  msgid "Specify dRuby URI."
864
864
  msgstr ""
865
865
 
866
- #: ../lib/rabbit/command/rabbit.rb:478
866
+ #: ../lib/rabbit/command/rabbit.rb:482
867
867
  msgid "Specify whether to output dRuby URI."
868
868
  msgstr ""
869
869
 
870
- #: ../lib/rabbit/command/rabbit.rb:483
870
+ #: ../lib/rabbit/command/rabbit.rb:487
871
871
  msgid "SOAP"
872
872
  msgstr ""
873
873
 
874
- #: ../lib/rabbit/command/rabbit.rb:486
874
+ #: ../lib/rabbit/command/rabbit.rb:490
875
875
  msgid "Specify whether to use SOAP."
876
876
  msgstr ""
877
877
 
878
- #: ../lib/rabbit/command/rabbit.rb:492
878
+ #: ../lib/rabbit/command/rabbit.rb:496
879
879
  msgid "Specify SOAP host as [HOST]."
880
880
  msgstr ""
881
881
 
882
- #: ../lib/rabbit/command/rabbit.rb:499
882
+ #: ../lib/rabbit/command/rabbit.rb:503
883
883
  msgid "Specify SOAP port as [PORT]."
884
884
  msgstr ""
885
885
 
886
- #: ../lib/rabbit/command/rabbit.rb:504
886
+ #: ../lib/rabbit/command/rabbit.rb:508
887
887
  msgid "XML-RPC"
888
888
  msgstr ""
889
889
 
890
- #: ../lib/rabbit/command/rabbit.rb:507
890
+ #: ../lib/rabbit/command/rabbit.rb:511
891
891
  msgid "Specify whether to use XML-RPC."
892
892
  msgstr ""
893
893
 
894
- #: ../lib/rabbit/command/rabbit.rb:513
894
+ #: ../lib/rabbit/command/rabbit.rb:517
895
895
  msgid "Specify XML-RPC host as [HOST]."
896
896
  msgstr ""
897
897
 
898
- #: ../lib/rabbit/command/rabbit.rb:520
898
+ #: ../lib/rabbit/command/rabbit.rb:524
899
899
  msgid "Specify XML-RPC port as [PORT]."
900
900
  msgstr ""
901
901
 
902
- #: ../lib/rabbit/command/rabbit.rb:525
902
+ #: ../lib/rabbit/command/rabbit.rb:529
903
903
  msgid "Public level"
904
904
  msgstr ""
905
905
 
906
- #: ../lib/rabbit/command/rabbit.rb:532
906
+ #: ../lib/rabbit/command/rabbit.rb:536
907
907
  msgid "Specify public level."
908
908
  msgstr ""
909
909
 
910
- #: ../lib/rabbit/command/rabbit.rb:533
910
+ #: ../lib/rabbit/command/rabbit.rb:537
911
911
  msgid "Select from the following:"
912
912
  msgstr ""
913
913
 
914
- #: ../lib/rabbit/command/rabbit.rb:542 ../lib/rabbit/command/rabbit.rb:567 ../lib/rabbit/command/rabbit.rb:574
914
+ #: ../lib/rabbit/command/rabbit.rb:546 ../lib/rabbit/command/rabbit.rb:571 ../lib/rabbit/command/rabbit.rb:578
915
915
  msgid "(%s)"
916
916
  msgstr ""
917
917
 
918
- #: ../lib/rabbit/command/rabbit.rb:547 ../lib/rabbit/theme/clutter-comment/property.rb:1 ../lib/rabbit/theme/footer-comment/property.rb:1 ../lib/rabbit/theme/stream-comment/property.rb:1
918
+ #: ../lib/rabbit/command/rabbit.rb:551 ../lib/rabbit/theme/clutter-comment/property.rb:1 ../lib/rabbit/theme/footer-comment/property.rb:1 ../lib/rabbit/theme/stream-comment/property.rb:1
919
919
  msgid "Comment"
920
920
  msgstr ""
921
921
 
922
- #: ../lib/rabbit/command/rabbit.rb:550 ../lib/rabbit/command/rabbit.rb:556
922
+ #: ../lib/rabbit/command/rabbit.rb:554 ../lib/rabbit/command/rabbit.rb:560
923
923
  msgid "Deprecated. Just ignored."
924
924
  msgstr ""
925
925
 
926
- #: ../lib/rabbit/command/rabbit.rb:551
926
+ #: ../lib/rabbit/command/rabbit.rb:555
927
927
  msgid "Specify initial comment source."
928
928
  msgstr ""
929
929
 
930
- #: ../lib/rabbit/command/rabbit.rb:552
930
+ #: ../lib/rabbit/command/rabbit.rb:556
931
931
  msgid "(default source)"
932
932
  msgstr ""
933
933
 
934
- #: ../lib/rabbit/command/rabbit.rb:557
934
+ #: ../lib/rabbit/command/rabbit.rb:561
935
935
  msgid "Specify comment source encoding."
936
936
  msgstr ""
937
937
 
938
- #: ../lib/rabbit/command/rabbit.rb:561
938
+ #: ../lib/rabbit/command/rabbit.rb:565
939
939
  msgid "Migemo"
940
940
  msgstr ""
941
941
 
942
- #: ../lib/rabbit/command/rabbit.rb:566
942
+ #: ../lib/rabbit/command/rabbit.rb:570
943
943
  msgid "Specify search paths for Migemo static dictionary."
944
944
  msgstr ""
945
945
 
946
- #: ../lib/rabbit/command/rabbit.rb:573
946
+ #: ../lib/rabbit/command/rabbit.rb:577
947
947
  msgid "Specify static dictionary name for Migemo."
948
948
  msgstr ""
949
949
 
950
- #: ../lib/rabbit/command/rabbit.rb:578
950
+ #: ../lib/rabbit/command/rabbit.rb:582
951
951
  msgid "3D"
952
952
  msgstr ""
953
953
 
954
- #: ../lib/rabbit/command/rabbit.rb:581
954
+ #: ../lib/rabbit/command/rabbit.rb:585
955
955
  msgid "Specify whether to use OpenGL if available."
956
956
  msgstr ""
957
957
 
958
- #: ../lib/rabbit/command/rabbit.rb:586
958
+ #: ../lib/rabbit/command/rabbit.rb:590
959
959
  msgid "Display"
960
960
  msgstr ""
961
961
 
962
- #: ../lib/rabbit/command/rabbit.rb:589
962
+ #: ../lib/rabbit/command/rabbit.rb:593
963
963
  msgid "Specify whether to keep above window."
964
964
  msgstr ""
965
965
 
966
- #: ../lib/rabbit/command/rabbit.rb:594
966
+ #: ../lib/rabbit/command/rabbit.rb:598
967
967
  msgid "Others"
968
968
  msgstr ""
969
969
 
970
- #: ../lib/rabbit/command/rabbit.rb:597
970
+ #: ../lib/rabbit/command/rabbit.rb:601
971
971
  msgid "Check slide source syntax and exit."
972
972
  msgstr ""
973
973
 
974
- #: ../lib/rabbit/command/rabbit.rb:602
974
+ #: ../lib/rabbit/command/rabbit.rb:606
975
975
  msgid "Show a native window ID of the Rabbit window if available."
976
976
  msgstr ""
977
977
 
978
- #: ../lib/rabbit/command/rabbit.rb:603
978
+ #: ../lib/rabbit/command/rabbit.rb:607
979
979
  msgid "e.g. The ID is the ID of X resource on X window system."
980
980
  msgstr ""
981
981
 
982
- #: ../lib/rabbit/command/rabbit.rb:644
982
+ #: ../lib/rabbit/command/rabbit.rb:648
983
983
  msgid "Choose a Rabbit source file"
984
984
  msgstr ""
985
985
 
986
- #: ../lib/rabbit/command/rabbit.rb:762
986
+ #: ../lib/rabbit/command/rabbit.rb:766
987
987
  msgid "dRuby URI <%s> is in use."
988
988
  msgstr ""
989
989
 
990
- #: ../lib/rabbit/command/rabbit.rb:781
990
+ #: ../lib/rabbit/command/rabbit.rb:785
991
991
  msgid "port <%s> for SOAP is in use."
992
992
  msgstr ""
993
993
 
994
- #: ../lib/rabbit/command/rabbit.rb:802
994
+ #: ../lib/rabbit/command/rabbit.rb:806
995
995
  msgid "port <%s> for XML-RPC is in use."
996
996
  msgstr ""
997
997
 
998
- #: ../lib/rabbit/command/rabbit.rb:863
998
+ #: ../lib/rabbit/command/rabbit.rb:867
999
999
  msgid "Window ID: %d"
1000
1000
  msgstr ""
1001
1001
 
@@ -1223,11 +1223,11 @@ msgstr ""
1223
1223
  msgid "tried mimeTeX commands: %s"
1224
1224
  msgstr ""
1225
1225
 
1226
- #: ../lib/rabbit/parser/markdown/converter.rb:170 ../test/parser/test-markdown.rb:340
1226
+ #: ../lib/rabbit/parser/markdown/converter.rb:170 ../test/parser/test-markdown.rb:292
1227
1227
  msgid "multiple ![alt]{image} in a paragraph isn't supported."
1228
1228
  msgstr ""
1229
1229
 
1230
- #: ../lib/rabbit/parser/markdown/converter.rb:294 ../test/parser/test-markdown.rb:354
1230
+ #: ../lib/rabbit/parser/markdown/converter.rb:294 ../test/parser/test-markdown.rb:306
1231
1231
  msgid "horizontal rule isn't supported."
1232
1232
  msgstr ""
1233
1233
 
@@ -1235,7 +1235,7 @@ msgstr ""
1235
1235
  msgid "multiple ![]('XXX.png'){:align='right'} isn't supported."
1236
1236
  msgstr ""
1237
1237
 
1238
- #: ../lib/rabbit/parser/markdown/converter.rb:412 ../test/parser/test-markdown.rb:367
1238
+ #: ../lib/rabbit/parser/markdown/converter.rb:412 ../test/parser/test-markdown.rb:319
1239
1239
  msgid "tag name is missing."
1240
1240
  msgstr ""
1241
1241
 
@@ -1243,11 +1243,11 @@ msgstr ""
1243
1243
  msgid "HTML isn't supported."
1244
1244
  msgstr ""
1245
1245
 
1246
- #: ../lib/rabbit/parser/rd/ext/block-verbatim.rb:61
1246
+ #: ../lib/rabbit/parser/rd/ext/block-verbatim.rb:62
1247
1247
  msgid "multiple 'align = right' isn't supported."
1248
1248
  msgstr ""
1249
1249
 
1250
- #: ../lib/rabbit/parser/rd/ext/block-verbatim.rb:154
1250
+ #: ../lib/rabbit/parser/rd/ext/block-verbatim.rb:155
1251
1251
  msgid "RTtool isn't available"
1252
1252
  msgstr ""
1253
1253
 
@@ -1255,19 +1255,19 @@ msgstr ""
1255
1255
  msgid "[BUG] [%s] %s extension isn't available."
1256
1256
  msgstr ""
1257
1257
 
1258
- #: ../lib/rabbit/parser/wiki/output.rb:105
1258
+ #: ../lib/rabbit/parser/wiki/output.rb:106
1259
1259
  msgid "horizontal rule is unsupported"
1260
1260
  msgstr ""
1261
1261
 
1262
- #: ../lib/rabbit/parser/wiki/output.rb:355
1262
+ #: ../lib/rabbit/parser/wiki/output.rb:356
1263
1263
  msgid "unsupported list type: %s"
1264
1264
  msgstr ""
1265
1265
 
1266
- #: ../lib/rabbit/parser/wiki/output.rb:388 ../test/parser/test-wiki.rb:46
1266
+ #: ../lib/rabbit/parser/wiki/output.rb:389 ../test/parser/test-wiki.rb:46
1267
1267
  msgid "inline {{image(...)}} isn't supported."
1268
1268
  msgstr ""
1269
1269
 
1270
- #: ../lib/rabbit/parser/wiki/output.rb:464 ../test/parser/test-wiki.rb:66
1270
+ #: ../lib/rabbit/parser/wiki/output.rb:465 ../test/parser/test-wiki.rb:66
1271
1271
  msgid "multiple {{image(..., :align => :right)}} isn't supported."
1272
1272
  msgstr ""
1273
1273