rabbit 3.0.2 → 3.0.4

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 (139) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +31 -0
  3. data/Rakefile +51 -73
  4. data/data/locale/ja/LC_MESSAGES/rabbit.mo +0 -0
  5. data/doc/_config.yml +2 -2
  6. data/doc/en/how-to-make/markdown.md +28 -2
  7. data/doc/en/how-to-make/rd.rd +28 -2
  8. data/doc/en/install/homebrew.rd +0 -15
  9. data/doc/en/news.rd +83 -0
  10. data/doc/en/sample/hiki/rabbit.hiki +1 -1
  11. data/doc/en/sample/markdown/rabbit.md +1 -1
  12. data/doc/en/sample/rd/rabbit.rd +1 -1
  13. data/doc/en/usage/rabbit-slide.rd +1 -1
  14. data/doc/en/usage/rabbit.rd +1 -1
  15. data/doc/ja/how-to-make/markdown.md +25 -5
  16. data/doc/ja/how-to-make/rd.rd +25 -5
  17. data/doc/ja/install/homebrew.rd +0 -15
  18. data/doc/ja/news.rd +83 -0
  19. data/doc/ja/usage/rabbit.rd +1 -1
  20. data/lib/rabbit/action.rb +1 -23
  21. data/lib/rabbit/canvas.rb +2 -10
  22. data/lib/rabbit/command/rabbit-slide.rb +1 -1
  23. data/lib/rabbit/command/rabbit.rb +6 -4
  24. data/lib/rabbit/cursor-manager.rb +5 -5
  25. data/lib/rabbit/element/text.rb +66 -0
  26. data/lib/rabbit/error.rb +9 -1
  27. data/lib/rabbit/frame.rb +22 -2
  28. data/lib/rabbit/front.rb +1 -1
  29. data/lib/rabbit/gesture/handler.rb +5 -8
  30. data/lib/rabbit/gtk.rb +44 -2
  31. data/lib/rabbit/image/mermaid.rb +3 -2
  32. data/lib/rabbit/info-window.rb +16 -2
  33. data/lib/rabbit/menu.rb +1 -3
  34. data/lib/rabbit/parser/ext/charty.rb +9 -0
  35. data/lib/rabbit/parser/markdown/converter.rb +3 -3
  36. data/lib/rabbit/parser/rd/ext/block-verbatim.rb +0 -12
  37. data/lib/rabbit/parser/rd/ext/inline-verbatim.rb +23 -0
  38. data/lib/rabbit/parser/wiki/output.rb +0 -6
  39. data/lib/rabbit/renderer/base.rb +1 -9
  40. data/lib/rabbit/renderer/display/base.rb +7 -5
  41. data/lib/rabbit/renderer/display/button-handler.rb +25 -10
  42. data/lib/rabbit/renderer/display/cursor.rb +18 -2
  43. data/lib/rabbit/renderer/display/drawing-area-base.rb +23 -7
  44. data/lib/rabbit/renderer/display/drawing-area-primitive.rb +35 -20
  45. data/lib/rabbit/renderer/display/gesture.rb +17 -1
  46. data/lib/rabbit/renderer/engine/cairo.rb +27 -13
  47. data/lib/rabbit/renderer/gl.rb +0 -81
  48. data/lib/rabbit/renderer/kernel.rb +0 -50
  49. data/lib/rabbit/renderer/offscreen.rb +1 -6
  50. data/lib/rabbit/renderer/printer.rb +2 -8
  51. data/lib/rabbit/renderer/screen.rb +6 -7
  52. data/lib/rabbit/source/argf.rb +17 -1
  53. data/lib/rabbit/source/base.rb +35 -10
  54. data/lib/rabbit/source/file.rb +17 -1
  55. data/lib/rabbit/source/uri.rb +17 -1
  56. data/lib/rabbit/theme/dark-gradation/dark-gradation.rb +2 -2
  57. data/lib/rabbit/theme/default-comment/default-comment.rb +1 -5
  58. data/lib/rabbit/theme/image-slide-number/property.rb +1 -1
  59. data/lib/rabbit/theme/title-background-image/title-background-image.rb +2 -2
  60. data/lib/rabbit/trackball.rb +21 -21
  61. data/lib/rabbit/utils.rb +5 -45
  62. data/lib/rabbit/version.rb +2 -2
  63. data/lib/rabbit/video-window.rb +6 -2
  64. data/po/en/rabbit.edit.po +27 -45
  65. data/po/en/rabbit.po +9 -24
  66. data/po/fr/rabbit.edit.po +27 -45
  67. data/po/fr/rabbit.po +9 -24
  68. data/po/ja/rabbit.edit.po +59 -71
  69. data/po/ja/rabbit.po +12 -24
  70. data/rabbit.gemspec +11 -14
  71. data/sample/gl-sample.rd +2 -4
  72. data/sample/rabbit/theme/gl-sample/gl-sample.rb +1 -1
  73. data/sample/rabbit-en.hiki +1 -1
  74. data/sample/rabbit-en.md +1 -1
  75. data/sample/rabbit-en.rd +1 -13
  76. data/sample/rabbit.rd +1 -13
  77. data/test/helper.rb +1 -2
  78. data/test/parser/test-markdown.rb +4 -3
  79. data/test/parser/test-rd.rb +3 -3
  80. data/test/parser/test-wiki.rb +2 -2
  81. data/test/test-readme-parser.rb +15 -12
  82. data/test/test-source.rb +2 -2
  83. metadata +35 -122
  84. data/doc/images/screenshots/en/blue-circle-raw.png +0 -0
  85. data/doc/images/screenshots/en/blue-circle.png +0 -0
  86. data/doc/images/screenshots/en/clear-blue-raw.png +0 -0
  87. data/doc/images/screenshots/en/clear-blue.png +0 -0
  88. data/doc/images/screenshots/en/cozmixng-raw.png +0 -0
  89. data/doc/images/screenshots/en/cozmixng.png +0 -0
  90. data/doc/images/screenshots/en/dark-gradation-raw.png +0 -0
  91. data/doc/images/screenshots/en/dark-gradation.png +0 -0
  92. data/doc/images/screenshots/en/day-white-raw.png +0 -0
  93. data/doc/images/screenshots/en/day-white.png +0 -0
  94. data/doc/images/screenshots/en/debian-raw.png +0 -0
  95. data/doc/images/screenshots/en/debian.png +0 -0
  96. data/doc/images/screenshots/en/green-circle-raw.png +0 -0
  97. data/doc/images/screenshots/en/green-circle.png +0 -0
  98. data/doc/images/screenshots/en/night-black-raw.png +0 -0
  99. data/doc/images/screenshots/en/night-black.png +0 -0
  100. data/doc/images/screenshots/en/rabbit-raw.png +0 -0
  101. data/doc/images/screenshots/en/rabbit.png +0 -0
  102. data/doc/images/screenshots/en/ranguba-raw.png +0 -0
  103. data/doc/images/screenshots/en/ranguba.png +0 -0
  104. data/doc/images/screenshots/en/red-frame-raw.png +0 -0
  105. data/doc/images/screenshots/en/red-frame.png +0 -0
  106. data/doc/images/screenshots/en/ruby-gnome2-raw.png +0 -0
  107. data/doc/images/screenshots/en/ruby-gnome2.png +0 -0
  108. data/doc/images/screenshots/en/rubykaigi2011-raw.png +0 -0
  109. data/doc/images/screenshots/en/rubykaigi2011.png +0 -0
  110. data/doc/images/screenshots/ja/blue-circle-raw.png +0 -0
  111. data/doc/images/screenshots/ja/blue-circle.png +0 -0
  112. data/doc/images/screenshots/ja/clear-blue-raw.png +0 -0
  113. data/doc/images/screenshots/ja/clear-blue.png +0 -0
  114. data/doc/images/screenshots/ja/cozmixng-raw.png +0 -0
  115. data/doc/images/screenshots/ja/cozmixng.png +0 -0
  116. data/doc/images/screenshots/ja/dark-gradation-raw.png +0 -0
  117. data/doc/images/screenshots/ja/dark-gradation.png +0 -0
  118. data/doc/images/screenshots/ja/day-white-raw.png +0 -0
  119. data/doc/images/screenshots/ja/day-white.png +0 -0
  120. data/doc/images/screenshots/ja/debian-raw.png +0 -0
  121. data/doc/images/screenshots/ja/debian.png +0 -0
  122. data/doc/images/screenshots/ja/green-circle-raw.png +0 -0
  123. data/doc/images/screenshots/ja/green-circle.png +0 -0
  124. data/doc/images/screenshots/ja/night-black-raw.png +0 -0
  125. data/doc/images/screenshots/ja/night-black.png +0 -0
  126. data/doc/images/screenshots/ja/rabbit-raw.png +0 -0
  127. data/doc/images/screenshots/ja/rabbit.png +0 -0
  128. data/doc/images/screenshots/ja/ranguba-raw.png +0 -0
  129. data/doc/images/screenshots/ja/ranguba.png +0 -0
  130. data/doc/images/screenshots/ja/red-frame-raw.png +0 -0
  131. data/doc/images/screenshots/ja/red-frame.png +0 -0
  132. data/doc/images/screenshots/ja/ruby-gnome2-raw.png +0 -0
  133. data/doc/images/screenshots/ja/ruby-gnome2.png +0 -0
  134. data/doc/images/screenshots/ja/rubykaigi2011-raw.png +0 -0
  135. data/doc/images/screenshots/ja/rubykaigi2011.png +0 -0
  136. data/lib/rabbit/parser/ext/emacs.rb +0 -121
  137. data/lib/rabbit/renderer/display/clutter-embed.rb +0 -606
  138. data/lib/rabbit/theme/clutter-comment/clutter-comment.rb +0 -76
  139. data/lib/rabbit/theme/clutter-comment/property.rb +0 -3
@@ -1,3 +1,19 @@
1
+ # Copyright (C) 2004-2024 Kouhei Sutou <kou@cozmixng.org>
2
+ #
3
+ # This program is free software; you can redistribute it and/or modify
4
+ # it under the terms of the GNU General Public License as published by
5
+ # the Free Software Foundation; either version 2 of the License, or
6
+ # (at your option) any later version.
7
+ #
8
+ # This program is distributed in the hope that it will be useful,
9
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
10
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
+ # GNU General Public License for more details.
12
+ #
13
+ # You should have received a copy of the GNU General Public License along
14
+ # with this program; if not, write to the Free Software Foundation, Inc.,
15
+ # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16
+
1
17
  require 'fileutils'
2
18
  require 'tmpdir'
3
19
 
@@ -35,7 +51,7 @@ module Rabbit
35
51
  @source = _read
36
52
  case @encoding
37
53
  when nil
38
- enc = guess_encoding(@source)
54
+ enc = guess_encoding(@source) || Encoding::ASCII_8BIT
39
55
  when Encoding
40
56
  enc = @encoding
41
57
  else
@@ -128,15 +144,24 @@ module Rabbit
128
144
  end
129
145
  end
130
146
 
131
- def guess_encoding(str)
132
- return Encoding::UTF_8 if utf8_encoding?(str)
133
-
134
- require 'nkf'
135
- NKF.guess(str)
136
- end
137
-
138
- def utf8_encoding?(string)
139
- string.dup.force_encoding(Encoding::UTF_8).valid_encoding?
147
+ def guess_encoding(string)
148
+ string = string.dup
149
+ candidates = [
150
+ Encoding::UTF_8,
151
+ Encoding::EUCJP_MS,
152
+ Encoding::EUCJP,
153
+ Encoding::WINDOWS_31J,
154
+ Encoding::Shift_JIS,
155
+ Encoding::CP51932,
156
+ Encoding::CP50221,
157
+ Encoding::ISO2022_JP,
158
+ Encoding::UTF_16BE,
159
+ Encoding::UTF_16LE,
160
+ ]
161
+ candidates.find do |candidate|
162
+ next if candidate.dummy?
163
+ string.force_encoding(candidate).valid_encoding?
164
+ end
140
165
  end
141
166
 
142
167
  def extract_extension(path)
@@ -1,3 +1,19 @@
1
+ # Copyright (C) 2004-2024 Sutou Kouhei <kou@cozmixng.org>
2
+ #
3
+ # This program is free software; you can redistribute it and/or modify
4
+ # it under the terms of the GNU General Public License as published by
5
+ # the Free Software Foundation; either version 2 of the License, or
6
+ # (at your option) any later version.
7
+ #
8
+ # This program is distributed in the hope that it will be useful,
9
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
10
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
+ # GNU General Public License for more details.
12
+ #
13
+ # You should have received a copy of the GNU General Public License along
14
+ # with this program; if not, write to the Free Software Foundation, Inc.,
15
+ # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16
+
1
17
  require 'rabbit/source/base'
2
18
 
3
19
  module Rabbit
@@ -25,7 +41,7 @@ module Rabbit
25
41
  rescue SourceUnreadableError
26
42
  @logger.error($!.message)
27
43
  @mtime = Time.now + LimitAccessInterval::MINIMUM_ACCESS_TIME
28
- ""
44
+ +""
29
45
  end
30
46
  end
31
47
 
@@ -1,3 +1,19 @@
1
+ # Copyright (C) 2004-2024 Sutou Kouhei <kou@cozmixng.org>
2
+ #
3
+ # This program is free software; you can redistribute it and/or modify
4
+ # it under the terms of the GNU General Public License as published by
5
+ # the Free Software Foundation; either version 2 of the License, or
6
+ # (at your option) any later version.
7
+ #
8
+ # This program is distributed in the hope that it will be useful,
9
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
10
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
+ # GNU General Public License for more details.
12
+ #
13
+ # You should have received a copy of the GNU General Public License along
14
+ # with this program; if not, write to the Free Software Foundation, Inc.,
15
+ # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16
+
1
17
  require "uri"
2
18
  require "open-uri"
3
19
 
@@ -52,7 +68,7 @@ module Rabbit
52
68
  rescue
53
69
  @logger.error($!.message)
54
70
  @last_modified = Time.now + MINIMUM_ACCESS_TIME
55
- ""
71
+ +""
56
72
  end
57
73
  end
58
74
 
@@ -9,7 +9,7 @@
9
9
  @monospace_font = "Monospace"
10
10
  @monospace_font_family = find_font_family(@monospace_font)
11
11
  #-------------------------
12
- # forground color
12
+ # foreground color
13
13
  #-------------------------
14
14
  @default_foreground = "#ffeeee"
15
15
  set_foreground(@default_foreground)
@@ -94,7 +94,7 @@ set_foreground(@default_foreground)
94
94
  @block_quote_close_quote_image = nil
95
95
  @block_quote_image_max_width = canvas.width * 0.1
96
96
  #-------------------------
97
- # include defaul theme!
97
+ # include default theme!
98
98
  #-------------------------
99
99
  include_theme("default")
100
100
  #-------------------------
@@ -1,9 +1,5 @@
1
1
  if canvas.comment_theme
2
2
  include_theme(canvas.comment_theme)
3
3
  else
4
- if display? and canvas.renderer.widget.class.name == "Clutter::GtkEmbed"
5
- include_theme("clutter-comment")
6
- else
7
- include_theme("footer-comment")
8
- end
4
+ include_theme("footer-comment")
9
5
  end
@@ -44,7 +44,7 @@
44
44
  "@image_slide_number_flag_type" => {
45
45
  :default => "'rectangle'",
46
46
  :description => N_("Form of the start and goal flags. " \
47
- "Avaiable forms are (({'triangle'})) and " \
47
+ "Available forms are (({'triangle'})) and " \
48
48
  "(({'rectangle'})).")
49
49
  },
50
50
  "@image_slide_number_start_image" => {
@@ -1,5 +1,5 @@
1
1
  @title_background_image_properties ||= {}
2
- default_title_backgroud_image_properties = {
2
+ default_title_background_image_properties = {
3
3
  "as_large_as_possible" => true,
4
4
  "align" => "center",
5
5
  "assign_box" => false,
@@ -8,7 +8,7 @@ default_title_backgroud_image_properties = {
8
8
 
9
9
  match(TitleSlide) do |slides|
10
10
  slides.each do |slide|
11
- image_properties = default_title_backgroud_image_properties.dup
11
+ image_properties = default_title_background_image_properties.dup
12
12
  @title_background_image_properties.each do |key, value|
13
13
  value = value.to_s if value.is_a?(Symbol)
14
14
  image_properties[key.to_s.gsub(/-/, "_")] = value
@@ -75,31 +75,31 @@ module Rabbit
75
75
  range = [size, other.size].min unless range
76
76
  (0...range).inject(Vector.new){|ret, i| ret << self[i] - other[i]}
77
77
  end
78
-
78
+
79
79
  def vcross(other)
80
80
  dst = Vector.new
81
81
  dst << (self[1] * other[2]) - (self[2] * other[1])
82
82
  dst << (self[2] * other[0]) - (self[0] * other[2])
83
83
  dst << (self[0] * other[1]) - (self[1] * other[0])
84
84
  end
85
-
85
+
86
86
  def vlength
87
87
  Math.sqrt(inject(0){|ret, i| ret + i ** 2})
88
88
  end
89
-
89
+
90
90
  def vscale(div); collect{|v| v *= div}; end
91
91
  def vnormal; vscale(1.0 / vlength); end
92
-
92
+
93
93
  def vdot(other, range = nil)
94
94
  range = [size, other.size].min unless range
95
95
  (0...range).inject(0.0){|ret, i| ret + self[i] * other[i]}
96
96
  end
97
-
97
+
98
98
  def vadd(other, range = nil)
99
99
  range = [size, other.size].min unless range
100
100
  (0...range).inject(Vector.new){|ret, i| ret << self[i] + other[i]}
101
101
  end
102
-
102
+
103
103
  #
104
104
  # Quaternions always obey: a^2 + b^2 + c^2 + d^2 = 1.0
105
105
  # If they don't add up to 1.0, dividing by their magnitued will
@@ -115,7 +115,7 @@ module Rabbit
115
115
  def normalize_quat
116
116
  collect{|q| q = q / inject(0){|ret, i| ret + i ** 2}}
117
117
  end
118
-
118
+
119
119
  # Build a rotation matrix, given a quaternion rotation.
120
120
  def build_rotmatrix
121
121
  m = []
@@ -131,7 +131,7 @@ module Rabbit
131
131
  m << [0.0, 0.0, 0.0, 1.0]
132
132
  m
133
133
  end
134
-
134
+
135
135
  # Given an axis and angle, compute quaternion.
136
136
  def axis_to_quat(phi)
137
137
  b, c, d = self.vnormal.vscale(Math.sin(phi/2.0))
@@ -143,7 +143,7 @@ module Rabbit
143
143
  end
144
144
  end
145
145
 
146
- #
146
+ #
147
147
  # This size should really be based on the distance from the center of
148
148
  # rotation to the point on the object underneath the mouse. That
149
149
  # point would then track the mouse as closely as possible. This is a
@@ -157,7 +157,7 @@ module Rabbit
157
157
  if (p1x == p2x && p1y == p2y)
158
158
  return Vector.new([0.0, 0.0, 0.0, 1.0])
159
159
  end
160
-
160
+
161
161
  # First, figure out z-coordinates for projection of P1 and P2 to
162
162
  # deformed sphere
163
163
  p1 = Vector.new([p1x, p1y, tb_project_to_sphere(SIZE, p1x, p1y)])
@@ -165,19 +165,19 @@ module Rabbit
165
165
 
166
166
  # Now, we want the cross product of P1 and P2
167
167
  a = p2.vcross(p1)
168
-
168
+
169
169
  # Figure out how much to rotate around that axis.
170
170
  d = p1.vsub(p2)
171
171
  t = d.vlength / (2.0 * SIZE)
172
-
172
+
173
173
  # Avoid problems with out-of-control values...
174
174
  t = 1.0 if (t > 1.0)
175
175
  t = -1.0 if (t < -1.0)
176
176
  phi = 2.0 * Math.asin(t)
177
-
177
+
178
178
  a.axis_to_quat(phi)
179
179
  end
180
-
180
+
181
181
  #
182
182
  # Project an x,y pair onto a sphere of radius r OR a hyperbolic sheet
183
183
  # if we are away from the center of the sphere.
@@ -192,20 +192,20 @@ module Rabbit
192
192
  end
193
193
  z
194
194
  end
195
-
195
+
196
196
  #
197
197
  # Given two rotations, e2 and e2, expressed as quaternion rotations,
198
198
  # figure out the equivalent single rotation and stuff it into dest.
199
- #
199
+ #
200
200
  # This routine also normalizes the result every RENORM_COUNT times it is
201
201
  # called, to keep error from creeping in.
202
- #
202
+ #
203
203
  # NOTE: This routine is written so that q1 or q2 may be the same
204
204
  # as dest (or each other).
205
205
  #
206
-
206
+
207
207
  RENORM_COUNT = 97
208
-
208
+
209
209
  @@quats_count = 0
210
210
  def add_quats(q1, q2)
211
211
  t1 = q1.vscale(q2[3])
@@ -213,9 +213,9 @@ module Rabbit
213
213
  t3 = q2.vcross(q1)
214
214
  tf = t1.vadd(t2)
215
215
  tf = t3.vadd(tf)
216
-
216
+
217
217
  tf[3] = q1[3] * q2[3] - q1.vdot(q2, 3)
218
-
218
+
219
219
  @@quats_count += 1
220
220
  ret = tf
221
221
  if (@@quats_count > RENORM_COUNT)
data/lib/rabbit/utils.rb CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2004-2015 Kouhei Sutou <kou@cozmixng.org>
1
+ # Copyright (C) 2004-2024 Sutou Kouhei <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,7 +15,6 @@
15
15
  # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16
16
 
17
17
  require 'tempfile'
18
- require 'nkf'
19
18
 
20
19
  module Rabbit
21
20
  module Utils
@@ -385,45 +384,6 @@ module Rabbit
385
384
  end
386
385
  end
387
386
 
388
- module ScreenInfo
389
- module_function
390
- def default_screen
391
- Gdk::Screen.default
392
- end
393
-
394
- def screen_width
395
- default_screen.width
396
- end
397
-
398
- def screen_width_mm
399
- default_screen.width_mm
400
- end
401
-
402
- def screen_height
403
- default_screen.height
404
- end
405
-
406
- def screen_height_mm
407
- default_screen.height_mm
408
- end
409
-
410
- def screen_x_resolution
411
- screen_width / mm_to_inch(screen_width_mm)
412
- end
413
-
414
- def screen_y_resolution
415
- screen_height / mm_to_inch(screen_height_mm)
416
- end
417
-
418
- def screen_depth
419
- default_screen.system_visual.depth
420
- end
421
-
422
- def mm_to_inch(mm)
423
- mm / 25.4
424
- end
425
- end
426
-
427
387
  module HTML
428
388
  module_function
429
389
  def a_link(start_a, label, label_only)
@@ -491,19 +451,19 @@ module Rabbit
491
451
  end
492
452
 
493
453
  def to_utf8(str)
494
- NKF.nkf("-w", str)
454
+ str.encode(Encoding::UTF_8)
495
455
  end
496
456
 
497
457
  def to_eucjp(str)
498
- NKF.nkf("-e", str)
458
+ str.encode(Encoding::EUCJP)
499
459
  end
500
460
 
501
461
  def to_utf8_from_eucjp(str)
502
- NKF.nkf("-wE", str)
462
+ str.encode(Encoding::UTF_8, Encoding::EUCJP)
503
463
  end
504
464
 
505
465
  def to_eucjp_from_utf8(str)
506
- NKF.nkf("-eW", str)
466
+ str.encode(Encoding::EUCJP, Encoding::UTF_8)
507
467
  end
508
468
  end
509
469
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2012-2021 Sutou Kouhei <kou@cozmixng.org>
1
+ # Copyright (C) 2012-2023 Sutou Kouhei <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 = "3.0.2"
18
+ VERSION = "3.0.4"
19
19
  end
@@ -15,8 +15,12 @@
15
15
  # with this program; if not, write to the Free Software Foundation, Inc.,
16
16
  # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
17
 
18
- require "clutter-gtk"
19
- require "clutter-gst"
18
+ case ENV["RABBIT_GTK"]
19
+ when "4"
20
+ else
21
+ require "clutter-gtk"
22
+ require "clutter-gst"
23
+ end
20
24
 
21
25
  require "rabbit/gtk"
22
26
 
data/po/en/rabbit.edit.po CHANGED
@@ -392,11 +392,11 @@ msgstr ""
392
392
  msgid "Failed to write author configuration: %s: %s"
393
393
  msgstr ""
394
394
 
395
- #: ../lib/rabbit/canvas.rb:646
395
+ #: ../lib/rabbit/canvas.rb:637
396
396
  msgid "Unknown action: %s"
397
397
  msgstr ""
398
398
 
399
- #: ../lib/rabbit/canvas.rb:741
399
+ #: ../lib/rabbit/canvas.rb:733
400
400
  msgid "Processing..."
401
401
  msgstr ""
402
402
 
@@ -493,7 +493,7 @@ msgid "Tags of the new slide"
493
493
  msgstr ""
494
494
 
495
495
  #: ../lib/rabbit/command/rabbit-slide.rb:192
496
- msgid "Allotted time in presentaion"
496
+ msgid "Allotted time in presentation"
497
497
  msgstr ""
498
498
 
499
499
  #: ../lib/rabbit/command/rabbit-slide.rb:199
@@ -949,7 +949,7 @@ msgstr ""
949
949
  msgid "(%s)"
950
950
  msgstr ""
951
951
 
952
- #: ../lib/rabbit/command/rabbit.rb:550 ../lib/rabbit/theme/clutter-comment/property.rb:1 ../lib/rabbit/theme/footer-comment/property.rb:1 ../lib/rabbit/theme/stream-comment/property.rb:1
952
+ #: ../lib/rabbit/command/rabbit.rb:550 ../lib/rabbit/theme/footer-comment/property.rb:1 ../lib/rabbit/theme/stream-comment/property.rb:1
953
953
  msgid "Comment"
954
954
  msgstr ""
955
955
 
@@ -1021,7 +1021,7 @@ msgstr ""
1021
1021
  msgid "port <%s> for XML-RPC is in use."
1022
1022
  msgstr ""
1023
1023
 
1024
- #: ../lib/rabbit/command/rabbit.rb:858
1024
+ #: ../lib/rabbit/command/rabbit.rb:859
1025
1025
  msgid "Window ID: %d"
1026
1026
  msgstr ""
1027
1027
 
@@ -1137,6 +1137,10 @@ msgstr ""
1137
1137
  msgid "print isn't supported"
1138
1138
  msgstr ""
1139
1139
 
1140
+ #: ../lib/rabbit/error.rb:236
1141
+ msgid "unknown Font Awesome name: %s"
1142
+ msgstr ""
1143
+
1140
1144
  #: ../lib/rabbit/gem-finder.rb:46
1141
1145
  msgid "Installing gem: %s"
1142
1146
  msgstr ""
@@ -1173,7 +1177,7 @@ msgstr ""
1173
1177
  msgid "PDF"
1174
1178
  msgstr ""
1175
1179
 
1176
- #: ../lib/rabbit/image/mermaid.rb:57
1180
+ #: ../lib/rabbit/image/mermaid.rb:58
1177
1181
  msgid "tried mermaid command: %s"
1178
1182
  msgstr ""
1179
1183
 
@@ -1189,7 +1193,7 @@ msgstr ""
1189
1193
  msgid "%s: Information window"
1190
1194
  msgstr ""
1191
1195
 
1192
- #: ../lib/rabbit/info-window.rb:323
1196
+ #: ../lib/rabbit/info-window.rb:337
1193
1197
  msgid "unlimited"
1194
1198
  msgstr ""
1195
1199
 
@@ -1241,10 +1245,6 @@ msgstr ""
1241
1245
  msgid "tried blockdiag command: %s"
1242
1246
  msgstr ""
1243
1247
 
1244
- #: ../lib/rabbit/parser/ext/emacs.rb:94
1245
- msgid "emacs: unsupported element name: %s"
1246
- msgstr ""
1247
-
1248
1248
  #: ../lib/rabbit/parser/ext/enscript.rb:30
1249
1249
  msgid "enscript: unsupported language: %s"
1250
1250
  msgstr ""
@@ -1269,11 +1269,11 @@ msgstr ""
1269
1269
  msgid "![alt]{image} and other contents in a paragraph isn't supported: %{types}"
1270
1270
  msgstr ""
1271
1271
 
1272
- #: ../lib/rabbit/parser/markdown/converter.rb:300 ../test/parser/test-markdown.rb:304
1272
+ #: ../lib/rabbit/parser/markdown/converter.rb:300
1273
1273
  msgid "horizontal rule isn't supported."
1274
1274
  msgstr ""
1275
1275
 
1276
- #: ../lib/rabbit/parser/markdown/converter.rb:418 ../test/parser/test-markdown.rb:317
1276
+ #: ../lib/rabbit/parser/markdown/converter.rb:418
1277
1277
  msgid "tag name is missing."
1278
1278
  msgstr ""
1279
1279
 
@@ -1281,7 +1281,7 @@ msgstr ""
1281
1281
  msgid "HTML isn't supported."
1282
1282
  msgstr ""
1283
1283
 
1284
- #: ../lib/rabbit/parser/rd/ext/block-verbatim.rb:137
1284
+ #: ../lib/rabbit/parser/rd/ext/block-verbatim.rb:125
1285
1285
  msgid "RTtool isn't available"
1286
1286
  msgstr ""
1287
1287
 
@@ -1289,19 +1289,19 @@ msgstr ""
1289
1289
  msgid "[BUG] [%s] %s extension isn't available."
1290
1290
  msgstr ""
1291
1291
 
1292
- #: ../lib/rabbit/parser/wiki/output.rb:106
1292
+ #: ../lib/rabbit/parser/wiki/output.rb:105
1293
1293
  msgid "horizontal rule is unsupported"
1294
1294
  msgstr ""
1295
1295
 
1296
- #: ../lib/rabbit/parser/wiki/output.rb:356
1296
+ #: ../lib/rabbit/parser/wiki/output.rb:355
1297
1297
  msgid "unsupported list type: %s"
1298
1298
  msgstr ""
1299
1299
 
1300
- #: ../lib/rabbit/parser/wiki/output.rb:389 ../test/parser/test-wiki.rb:44
1300
+ #: ../lib/rabbit/parser/wiki/output.rb:388
1301
1301
  msgid "inline {{image(...)}} isn't supported."
1302
1302
  msgstr ""
1303
1303
 
1304
- #: ../lib/rabbit/parser/wiki/output.rb:465 ../test/parser/test-wiki.rb:64
1304
+ #: ../lib/rabbit/parser/wiki/output.rb:464
1305
1305
  msgid "multiple {{image(..., :align => :right)}} isn't supported."
1306
1306
  msgstr ""
1307
1307
 
@@ -1317,11 +1317,11 @@ msgstr ""
1317
1317
  msgid "No README found"
1318
1318
  msgstr ""
1319
1319
 
1320
- #: ../lib/rabbit/renderer/base.rb:357
1320
+ #: ../lib/rabbit/renderer/base.rb:354
1321
1321
  msgid "%s does not support: %s"
1322
1322
  msgstr ""
1323
1323
 
1324
- #: ../lib/rabbit/renderer/printer.rb:223
1324
+ #: ../lib/rabbit/renderer/printer.rb:217
1325
1325
  msgid "can't find printer for %s"
1326
1326
  msgstr ""
1327
1327
 
@@ -1333,11 +1333,11 @@ msgstr ""
1333
1333
  msgid "Failed to write slide configuration: %s: %s"
1334
1334
  msgstr ""
1335
1335
 
1336
- #: ../lib/rabbit/source/argf.rb:10
1336
+ #: ../lib/rabbit/source/argf.rb:26
1337
1337
  msgid "none (get from STDIN) or [FILE_NAMES]"
1338
1338
  msgstr ""
1339
1339
 
1340
- #: ../lib/rabbit/source/file.rb:9
1340
+ #: ../lib/rabbit/source/file.rb:25
1341
1341
  msgid "[FILENAME]"
1342
1342
  msgstr ""
1343
1343
 
@@ -1345,7 +1345,7 @@ msgstr ""
1345
1345
  msgid "[FILENAME_OR_NOT]"
1346
1346
  msgstr ""
1347
1347
 
1348
- #: ../lib/rabbit/source/uri.rb:27
1348
+ #: ../lib/rabbit/source/uri.rb:43
1349
1349
  msgid "URI"
1350
1350
  msgstr ""
1351
1351
 
@@ -1489,14 +1489,6 @@ msgstr ""
1489
1489
  msgid "Whether uninstalling this toolkit or not. This option is useful for cases you do not want to make the toolkit work for certain slides."
1490
1490
  msgstr ""
1491
1491
 
1492
- #: ../lib/rabbit/theme/clutter-comment/property.rb:2
1493
- msgid "Clutter Comment"
1494
- msgstr ""
1495
-
1496
- #: ../lib/rabbit/theme/clutter-comment/property.rb:3
1497
- msgid "Show comment as a rolling Clutter actor."
1498
- msgstr ""
1499
-
1500
1492
  #: ../lib/rabbit/theme/color-circle-block-quote/property.rb:2
1501
1493
  msgid "Color Circle block quote"
1502
1494
  msgstr ""
@@ -1961,7 +1953,7 @@ msgid "Color of numbers displayed on the start and goal flags."
1961
1953
  msgstr ""
1962
1954
 
1963
1955
  #: ../lib/rabbit/theme/image-slide-number/property.rb:46
1964
- msgid "Form of the start and goal flags. Avaiable forms are (({'triangle'})) and (({'rectangle'}))."
1956
+ msgid "Form of the start and goal flags. Available forms are (({'triangle'})) and (({'rectangle'}))."
1965
1957
  msgstr ""
1966
1958
 
1967
1959
  #: ../lib/rabbit/theme/image-slide-number/property.rb:52
@@ -2100,15 +2092,11 @@ msgid "Newline in Slides"
2100
2092
  msgstr ""
2101
2093
 
2102
2094
  #: ../lib/rabbit/theme/newline-in-slides/property.rb:3 ../lib/rabbit/theme/newline-in-title/property.rb:3
2103
- msgid ""
2104
- "Convenience '\n"
2105
- "' newline notation."
2095
+ msgid "Convenience '\\n' newline notation."
2106
2096
  msgstr ""
2107
2097
 
2108
2098
  #: ../lib/rabbit/theme/newline-in-slides/property.rb:4
2109
- msgid ""
2110
- "Enable '\n"
2111
- "' notation to insert newline in all slides."
2099
+ msgid "Enable '\\n' notation to insert newline in all slides."
2112
2100
  msgstr ""
2113
2101
 
2114
2102
  #: ../lib/rabbit/theme/newline-in-title/property.rb:2
@@ -2116,9 +2104,7 @@ msgid "Newline in Title"
2116
2104
  msgstr ""
2117
2105
 
2118
2106
  #: ../lib/rabbit/theme/newline-in-title/property.rb:4
2119
- msgid ""
2120
- "Enable '\n"
2121
- "' notation to insert newline in title."
2107
+ msgid "Enable '\\n' notation to insert newline in title."
2122
2108
  msgstr ""
2123
2109
 
2124
2110
  #: ../lib/rabbit/theme/night-black/property.rb:2
@@ -2678,7 +2664,3 @@ msgstr ""
2678
2664
  #: ../lib/rabbit/theme/title-slide-background-image/property.rb:2
2679
2665
  msgid "TitleSlideBackgroundImage"
2680
2666
  msgstr ""
2681
-
2682
- #: ../test/parser/test-markdown.rb:290
2683
- msgid "![alt]{image} and other contents in a paragraph isn't supported: [:text, :img]"
2684
- msgstr ""