rabbit 2.0.3 → 2.0.4

Sign up to get free protection for your applications and to get access to all the features.
Binary file
Binary file
Binary file
data/doc/en/news.rd CHANGED
@@ -3,6 +3,38 @@ layout: en
3
3
  title: News
4
4
  apply_data: false
5
5
  ---
6
+ == 2.0.4: 2012-09-12
7
+
8
+ A bug fix release.
9
+
10
+ === Improvements
11
+
12
+ ==== rabbit-slide
13
+
14
+ * --title is used for generated slide title.
15
+ [Reported by znz]
16
+
17
+ ==== Theme
18
+
19
+ * Increased quote image resolution.
20
+
21
+ === Fixes
22
+
23
+ ==== rabbit-slide
24
+
25
+ * Fixed a bug that rake publish:slideshare doesn't work. The task
26
+ publishes your slide to SlideShare.
27
+ [GitHub#8] [Patch by myokoym]
28
+
29
+ ==== Theme
30
+
31
+ * Fix a bug that image reflection doesnt' work.
32
+
33
+ === Thanks
34
+
35
+ * znz
36
+ * myokoym
37
+
6
38
  == 2.0.3: 2012-09-10
7
39
 
8
40
  This release improves block quote style.
data/doc/ja/news.rd CHANGED
@@ -3,6 +3,37 @@ layout: ja
3
3
  title: お知らせ
4
4
  apply_data: false
5
5
  ---
6
+ == 2.0.4: 2012-09-12
7
+
8
+ バグフィックスリリース。
9
+
10
+ === 改良
11
+
12
+ ==== rabbit-slide
13
+
14
+ * --titleで指定した値を生成するスライドのタイトルにした。
15
+ [znzさんが報告]
16
+
17
+ ==== テーマ
18
+
19
+ * 引用記号画像の解像度を大きくした。
20
+
21
+ === 修正
22
+
23
+ ==== rabbit-slide
24
+
25
+ * SlideShareへアップロードするrake publish:slideshareが動かない問題を修正。
26
+ [GitHub#8] [myokoymさんがパッチ提供]
27
+
28
+ ==== テーマ
29
+
30
+ * 画像の鏡面反射が効かない問題を修正。
31
+
32
+ === 感謝
33
+
34
+ * znzさん
35
+ * myokoymさん
36
+
6
37
  == 2.0.3: 2012-09-10
7
38
 
8
39
  引用のみばえがよくなったリリース。
@@ -403,7 +403,7 @@ EOR
403
403
  end
404
404
 
405
405
  def slide_source_title(source, generator, title)
406
- source << generator.heading(1, _("TITLE"))
406
+ source << generator.heading(1, title)
407
407
  source << "\n\n"
408
408
  end
409
409
 
@@ -253,37 +253,44 @@ module Rabbit
253
253
  x, y = from_screen(x, y)
254
254
  @context.save do
255
255
  @context.translate(x, y)
256
- pixbuf = scale_pixbuf(pixbuf, params)
257
- @context.set_source_pixbuf(pixbuf, 0, 0)
256
+ set_source_pixbuf(pixbuf, params)
258
257
  @context.paint(params[:alpha])
259
258
  end
260
259
 
261
- _draw_reflected_pixbuf(pixbuf, x, y, params[:reflect])
260
+ _draw_reflected_pixbuf(pixbuf, x, y, params)
262
261
  end
263
262
 
264
- def scale_pixbuf(pixbuf, params)
263
+ def set_source_pixbuf(pixbuf, params)
265
264
  draw_scaled_pixbuf = params[:draw_scaled_pixbuf]
266
265
  draw_scaled_pixbuf = @draw_scaled_image if draw_scaled_pixbuf.nil?
267
266
  width = (params[:width] || pixbuf.width).to_f
268
267
  height = (params[:height] || pixbuf.height).to_f
269
268
 
270
269
  return pixbuf if [width, height] == [pixbuf.width, pixbuf.height]
271
- case draw_scaled_image
270
+ case draw_scaled_pixbuf
272
271
  when true
273
- return pixbuf.scale(width, height)
272
+ scaled_pixbuf = pixbuf.scale(width, height)
273
+ @context.set_source_pixbuf(scaled_pixbuf, 0, 0)
274
274
  when false
275
- @context.scale(width / pixbuf.width, height / pixbuf.height)
276
- return pixbuf
275
+ @context.set_source_pixbuf(pixbuf, 0, 0)
276
+ matrix = ::Cairo::Matrix.scale(pixbuf.width / width,
277
+ pixbuf.height / height)
278
+ @context.source.matrix = matrix
277
279
  else
278
280
  scales = [4, 3, 2]
279
281
  scales.each do |scale|
280
282
  if width * scale < pixbuf.width and height * scale < pixbuf.height
281
- @context.scale(1.0 / scale, 1.0 / scale)
282
- return pixbuf.scale(width * scale, height * scale)
283
+ scaled_pixbuf = pixbuf.scale(width * scale, height * scale)
284
+ @context.set_source_pixbuf(scaled_pixbuf)
285
+ matrix = ::Cairo::Matrix.scale(scale, scale)
286
+ @context.source.matrix = matrix
287
+ return
283
288
  end
284
289
  end
285
- @context.scale(width / pixbuf.width, height / pixbuf.height)
286
- return pixbuf
290
+ @context.set_source_pixbuf(pixbuf, 0, 0)
291
+ matrix = ::Cairo::Matrix.scale(pixbuf.width / width,
292
+ pixbuf.height / height)
293
+ @context.source.matrix = matrix
287
294
  end
288
295
  end
289
296
 
@@ -306,7 +313,7 @@ module Rabbit
306
313
  end
307
314
 
308
315
  _draw_reflected_rsvg_handle(handle, x, y, width, height,
309
- params[:reflect])
316
+ params)
310
317
  end
311
318
 
312
319
  def poppler_available?
@@ -451,18 +458,19 @@ module Rabbit
451
458
  end
452
459
 
453
460
  def _draw_reflected_pixbuf(pixbuf, x, y, params)
454
- return unless params
461
+ reflect_params = params[:reflect]
462
+ return unless reflect_params
455
463
 
456
- params = {} if params == true
457
- ratio = params[:ratio] || 0.3
458
- start_alpha = params[:start_alpha] || 0.3
464
+ reflect_params = {} if reflect_params == true
465
+ ratio = reflect_params[:ratio] || 0.3
466
+ start_alpha = reflect_params[:start_alpha] || 0.3
459
467
 
460
468
  @context.save do
461
- width = pixbuf.width
462
- height = pixbuf.height
469
+ width = (params[:width] || pixbuf.width).to_f
470
+ height = (params[:height] || pixbuf.height).to_f
463
471
  @context.translate(x, y + height * 2)
464
472
  reflect_context(:x)
465
- @context.set_source_pixbuf(pixbuf, 0, 0)
473
+ set_source_pixbuf(pixbuf, params)
466
474
  pattern = ::Cairo::LinearPattern.new(width * 0.5, 0,
467
475
  width * 0.5, height)
468
476
  pattern.add_color_stop_rgba(0, 0, 0, 0, 0)
@@ -157,8 +157,7 @@ module Rabbit
157
157
  publish_tasks << :rubygems
158
158
  end
159
159
 
160
- slideshare_user = @slide.author.slideshare_user
161
- if slideshare_user
160
+ if @slide.author.slideshare_user
162
161
  define_publish_slideshare_task
163
162
  publish_tasks << :slideshare
164
163
  end
@@ -179,6 +178,7 @@ module Rabbit
179
178
  end
180
179
 
181
180
  def define_publish_slideshare_task
181
+ slideshare_user = @slide.author.slideshare_user
182
182
  desc(_("Publish the slide to %s" % "SlideShare"))
183
183
  task :slideshare => [:pdf, "gem:validate"] do
184
184
  require "rabbit/slideshare"
@@ -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.0.3"
18
+ VERSION = "2.0.4"
19
19
  end
data/po/rabbit.pot CHANGED
@@ -6,10 +6,10 @@
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: rabbit 2.0.2\n"
9
+ "Project-Id-Version: rabbit 2.0.4\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2012-09-02 21:45+0900\n"
12
- "PO-Revision-Date: 2012-09-02 21:45+0900\n"
11
+ "POT-Creation-Date: 2012-09-13 08:58+0900\n"
12
+ "PO-Revision-Date: 2012-09-13 08:58+0900\n"
13
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
15
  "Language: \n"
@@ -213,7 +213,7 @@ msgstr ""
213
213
  msgid "Install"
214
214
  msgstr ""
215
215
 
216
- #: ../lib/rabbit/command/rabbit-slide.rb:397 ../lib/rabbit/command/rabbit-slide.rb:406
216
+ #: ../lib/rabbit/command/rabbit-slide.rb:397
217
217
  msgid "TITLE"
218
218
  msgstr ""
219
219
 
@@ -689,7 +689,7 @@ msgstr ""
689
689
  msgid "For users"
690
690
  msgstr ""
691
691
 
692
- #: ../lib/rabbit/command/rabbit-theme.rb:229 ../lib/rabbit/task/theme.rb:81 ../lib/rabbit/task/theme.rb:118
692
+ #: ../lib/rabbit/command/rabbit-theme.rb:229 ../lib/rabbit/task/theme.rb:94
693
693
  msgid "rabbit-theme-benchmark-en.gem"
694
694
  msgstr ""
695
695
 
@@ -905,11 +905,11 @@ msgstr ""
905
905
  msgid "Unknown"
906
906
  msgstr ""
907
907
 
908
- #: ../lib/rabbit/theme-configuration.rb:48 ../lib/rabbit/slide-configuration.rb:53
908
+ #: ../lib/rabbit/theme-configuration.rb:48 ../lib/rabbit/slide-configuration.rb:49
909
909
  msgid "Failed to read slide configuration: %s: %s"
910
910
  msgstr ""
911
911
 
912
- #: ../lib/rabbit/theme-configuration.rb:58 ../lib/rabbit/slide-configuration.rb:63
912
+ #: ../lib/rabbit/theme-configuration.rb:58 ../lib/rabbit/slide-configuration.rb:59
913
913
  msgid "Failed to write slide configuration: %s: %s"
914
914
  msgstr ""
915
915
 
@@ -1372,7 +1372,7 @@ msgstr ""
1372
1372
  msgid "Displays list items like ones in the website of the Ruby-GNOME2 Project; i.e. displays text of the first-level items colored blue and underlined, the second- and third-level items marked with black squares and circles."
1373
1373
  msgstr ""
1374
1374
 
1375
- #: ../lib/rabbit/theme/default-block-quote/default-block-quote.rb:111
1375
+ #: ../lib/rabbit/theme/default-block-quote/default-block-quote.rb:112
1376
1376
  msgid "[cited from `%s']"
1377
1377
  msgstr ""
1378
1378
 
@@ -2281,11 +2281,11 @@ msgstr ""
2281
2281
  msgid "Displays an image as a logo at the headlines of slides."
2282
2282
  msgstr ""
2283
2283
 
2284
- #: ../lib/rabbit/author-configuration.rb:45
2284
+ #: ../lib/rabbit/author-configuration.rb:42
2285
2285
  msgid "Failed to read author configuration: %s: %s"
2286
2286
  msgstr ""
2287
2287
 
2288
- #: ../lib/rabbit/author-configuration.rb:55
2288
+ #: ../lib/rabbit/author-configuration.rb:52
2289
2289
  msgid "Failed to write author configuration: %s: %s"
2290
2290
  msgstr ""
2291
2291
 
@@ -2297,7 +2297,7 @@ msgstr ""
2297
2297
  msgid "Creating file: %s"
2298
2298
  msgstr ""
2299
2299
 
2300
- #: ../lib/rabbit/renderer/print/cairo.rb:122
2300
+ #: ../lib/rabbit/renderer/print/cairo.rb:130
2301
2301
  msgid "can't find printer for %s"
2302
2302
  msgstr ""
2303
2303
 
@@ -2305,51 +2305,55 @@ msgstr ""
2305
2305
  msgid "%s does not support: %s"
2306
2306
  msgstr ""
2307
2307
 
2308
- #: ../lib/rabbit/task/slide.rb:85
2309
- msgid "To run rabbit, create '%{options_file}'!"
2308
+ #: ../lib/rabbit/task/slide.rb:91
2309
+ msgid "To run rabbit, create '%{options_path}'!"
2310
2310
  msgstr ""
2311
2311
 
2312
- #: ../lib/rabbit/task/slide.rb:89
2312
+ #: ../lib/rabbit/task/slide.rb:95
2313
2313
  msgid "Show slide"
2314
2314
  msgstr ""
2315
2315
 
2316
- #: ../lib/rabbit/task/slide.rb:94 ../lib/rabbit/task/theme.rb:84
2316
+ #: ../lib/rabbit/task/slide.rb:107 ../lib/rabbit/task/theme.rb:104
2317
2317
  msgid "Create gem: %{gem_path}"
2318
2318
  msgstr ""
2319
2319
 
2320
- #: ../lib/rabbit/task/slide.rb:104 ../lib/rabbit/task/theme.rb:94
2320
+ #: ../lib/rabbit/task/slide.rb:119 ../lib/rabbit/task/theme.rb:116
2321
2321
  msgid "Write %{item} in %{where}: %{content}"
2322
2322
  msgstr ""
2323
2323
 
2324
- #: ../lib/rabbit/task/slide.rb:128 ../lib/rabbit/task/theme.rb:121
2324
+ #: ../lib/rabbit/task/slide.rb:145 ../lib/rabbit/task/theme.rb:154
2325
2325
  msgid "Generate PDF: %{pdf_path}"
2326
2326
  msgstr ""
2327
2327
 
2328
- #: ../lib/rabbit/task/slide.rb:131
2328
+ #: ../lib/rabbit/task/slide.rb:150
2329
2329
  msgid "Publish the slide to all available targets"
2330
2330
  msgstr ""
2331
2331
 
2332
- #: ../lib/rabbit/task/slide.rb:137 ../lib/rabbit/task/slide.rb:146 ../lib/rabbit/task/slide.rb:167
2332
+ #: ../lib/rabbit/task/slide.rb:174 ../lib/rabbit/task/slide.rb:182 ../lib/rabbit/task/slide.rb:205
2333
2333
  msgid "Publish the slide to %s"
2334
2334
  msgstr ""
2335
2335
 
2336
- #: ../lib/rabbit/task/slide.rb:158
2336
+ #: ../lib/rabbit/task/slide.rb:194
2337
2337
  msgid "Uploaded successfully!"
2338
2338
  msgstr ""
2339
2339
 
2340
- #: ../lib/rabbit/task/slide.rb:159
2340
+ #: ../lib/rabbit/task/slide.rb:195
2341
2341
  msgid "See %s"
2342
2342
  msgstr ""
2343
2343
 
2344
- #: ../lib/rabbit/task/theme.rb:79
2344
+ #: ../lib/rabbit/task/theme.rb:92
2345
2345
  msgid "Show theme benchmark slide with this theme"
2346
2346
  msgstr ""
2347
2347
 
2348
- #: ../lib/rabbit/task/theme.rb:124
2348
+ #: ../lib/rabbit/task/theme.rb:136
2349
+ msgid "Generate all PDFs"
2350
+ msgstr ""
2351
+
2352
+ #: ../lib/rabbit/task/theme.rb:162
2349
2353
  msgid "Publish the theme to all available targets"
2350
2354
  msgstr ""
2351
2355
 
2352
- #: ../lib/rabbit/task/theme.rb:130
2356
+ #: ../lib/rabbit/task/theme.rb:168
2353
2357
  msgid "Publish the theme to %s"
2354
2358
  msgstr ""
2355
2359
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rabbit
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.3
4
+ version: 2.0.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-09-10 00:00:00.000000000 Z
12
+ date: 2012-09-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: gtk2
@@ -872,11 +872,6 @@ files:
872
872
  - sample/kof2005/ruby-pink-circle-logo.png
873
873
  - sample/kof2005/gtk+-widget.svg
874
874
  - sample/kof2005/skip-up-with-ruby-gnome2.rd
875
- - sample/kou/horizontal-bar.svg
876
- - sample/kou/clear-blue-headline-background.svg
877
- - sample/kou/quote.svg
878
- - sample/kou/vertical-bar.svg
879
- - sample/kou/clear-blue-icon.svg
880
875
  - sample/join_cozmixng.svg
881
876
  - sample/html_and_wiki.png
882
877
  - sample/blue-circle.rd
@@ -1,283 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
- <svg
4
- xmlns:dc="http://purl.org/dc/elements/1.1/"
5
- xmlns:cc="http://creativecommons.org/ns#"
6
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7
- xmlns:svg="http://www.w3.org/2000/svg"
8
- xmlns="http://www.w3.org/2000/svg"
9
- xmlns:xlink="http://www.w3.org/1999/xlink"
10
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
- width="533.78003"
13
- height="135.97"
14
- id="svg2"
15
- sodipodi:version="0.32"
16
- inkscape:version="0.46"
17
- sodipodi:docname="clear-blue-headline-background.svg"
18
- inkscape:output_extension="org.inkscape.output.svg.inkscape"
19
- version="1.0">
20
- <defs
21
- id="defs4">
22
- <linearGradient
23
- inkscape:collect="always"
24
- id="linearGradient3180">
25
- <stop
26
- style="stop-color:#ffffff;stop-opacity:1;"
27
- offset="0"
28
- id="stop3182" />
29
- <stop
30
- style="stop-color:#ffffff;stop-opacity:0"
31
- offset="1"
32
- id="stop3184" />
33
- </linearGradient>
34
- <linearGradient
35
- id="linearGradient3647">
36
- <stop
37
- style="stop-color:#458cff;stop-opacity:1;"
38
- offset="0"
39
- id="stop3649" />
40
- <stop
41
- id="stop3711"
42
- offset="0.5"
43
- style="stop-color:#a2c5ff;stop-opacity:1;" />
44
- <stop
45
- style="stop-color:#ffffff;stop-opacity:1;"
46
- offset="1"
47
- id="stop3651" />
48
- </linearGradient>
49
- <linearGradient
50
- inkscape:collect="always"
51
- id="linearGradient3227">
52
- <stop
53
- style="stop-color:#000000;stop-opacity:1;"
54
- offset="0"
55
- id="stop3229" />
56
- <stop
57
- style="stop-color:#000000;stop-opacity:0;"
58
- offset="1"
59
- id="stop3231" />
60
- </linearGradient>
61
- <linearGradient
62
- id="linearGradient3165">
63
- <stop
64
- style="stop-color:#458cff;stop-opacity:0.49803922;"
65
- offset="0"
66
- id="stop3167" />
67
- <stop
68
- id="stop3177"
69
- offset="0.5"
70
- style="stop-color:#458cff;stop-opacity:0.12941177;" />
71
- <stop
72
- style="stop-color:#458cff;stop-opacity:0;"
73
- offset="1"
74
- id="stop3169" />
75
- </linearGradient>
76
- <inkscape:perspective
77
- sodipodi:type="inkscape:persp3d"
78
- inkscape:vp_x="0 : 526.18109 : 1"
79
- inkscape:vp_y="0 : 1000 : 0"
80
- inkscape:vp_z="744.09448 : 526.18109 : 1"
81
- inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
82
- id="perspective10" />
83
- <linearGradient
84
- inkscape:collect="always"
85
- xlink:href="#linearGradient3165"
86
- id="linearGradient3173"
87
- x1="405.98703"
88
- y1="89.505043"
89
- x2="405.98703"
90
- y2="176.49324"
91
- gradientUnits="userSpaceOnUse" />
92
- <linearGradient
93
- inkscape:collect="always"
94
- xlink:href="#linearGradient3165"
95
- id="linearGradient3206"
96
- gradientUnits="userSpaceOnUse"
97
- x1="405.98703"
98
- y1="89.505043"
99
- x2="405.98703"
100
- y2="169.43434"
101
- gradientTransform="translate(6.0299998,-1.7513455)" />
102
- <linearGradient
103
- inkscape:collect="always"
104
- xlink:href="#linearGradient3165"
105
- id="linearGradient3219"
106
- gradientUnits="userSpaceOnUse"
107
- x1="438.17645"
108
- y1="99.538658"
109
- x2="168.23529"
110
- y2="98.009247"
111
- gradientTransform="translate(6.0299998,-1.7513455)" />
112
- <linearGradient
113
- inkscape:collect="always"
114
- xlink:href="#linearGradient3227"
115
- id="linearGradient3233"
116
- x1="317.70999"
117
- y1="126.50894"
118
- x2="471.39017"
119
- y2="126.50894"
120
- gradientUnits="userSpaceOnUse" />
121
- <linearGradient
122
- inkscape:collect="always"
123
- xlink:href="#linearGradient3647"
124
- id="linearGradient3653"
125
- x1="561.64172"
126
- y1="-79.140556"
127
- x2="556.35602"
128
- y2="-8.1643858"
129
- gradientUnits="userSpaceOnUse"
130
- gradientTransform="translate(5.0971187,-3.6670828)" />
131
- <filter
132
- inkscape:collect="always"
133
- id="filter3707">
134
- <feGaussianBlur
135
- inkscape:collect="always"
136
- stdDeviation="1.6354901"
137
- id="feGaussianBlur3709" />
138
- </filter>
139
- <linearGradient
140
- inkscape:collect="always"
141
- xlink:href="#linearGradient3647"
142
- id="linearGradient3715"
143
- gradientUnits="userSpaceOnUse"
144
- x1="561.64172"
145
- y1="-79.140556"
146
- x2="560.94934"
147
- y2="-1.3262331"
148
- gradientTransform="matrix(0.8870556,0,0,0.8389762,-100.66335,390.79218)" />
149
- <filter
150
- inkscape:collect="always"
151
- id="filter3737">
152
- <feGaussianBlur
153
- inkscape:collect="always"
154
- stdDeviation="1.4399509"
155
- id="feGaussianBlur3739" />
156
- </filter>
157
- <linearGradient
158
- inkscape:collect="always"
159
- xlink:href="#linearGradient3180"
160
- id="linearGradient3186"
161
- x1="400.3125"
162
- y1="117.89062"
163
- x2="156.29044"
164
- y2="117.89062"
165
- gradientUnits="userSpaceOnUse"
166
- gradientTransform="translate(6.0299998,-1.7513453)" />
167
- <filter
168
- inkscape:collect="always"
169
- id="filter3228"
170
- x="-0.021547107"
171
- width="1.0430942"
172
- y="-0.10934203"
173
- height="1.2186841">
174
- <feGaussianBlur
175
- inkscape:collect="always"
176
- stdDeviation="2.5869072"
177
- id="feGaussianBlur3230" />
178
- </filter>
179
- <filter
180
- inkscape:collect="always"
181
- id="filter3248"
182
- x="-0.021379517"
183
- width="1.0427589"
184
- y="-0.11387166"
185
- height="1.2277433">
186
- <feGaussianBlur
187
- inkscape:collect="always"
188
- stdDeviation="2.788966"
189
- id="feGaussianBlur3250" />
190
- </filter>
191
- </defs>
192
- <sodipodi:namedview
193
- id="base"
194
- pagecolor="#ffffff"
195
- bordercolor="#666666"
196
- borderopacity="1.0"
197
- gridtolerance="10000"
198
- guidetolerance="10"
199
- objecttolerance="10"
200
- inkscape:pageopacity="0.0"
201
- inkscape:pageshadow="2"
202
- inkscape:zoom="1.8493561"
203
- inkscape:cx="326.44625"
204
- inkscape:cy="40.251731"
205
- inkscape:document-units="px"
206
- inkscape:current-layer="layer1"
207
- showgrid="false"
208
- showguides="true"
209
- inkscape:guide-bbox="true"
210
- inkscape:window-width="1189"
211
- inkscape:window-height="671"
212
- inkscape:window-x="42"
213
- inkscape:window-y="32">
214
- <sodipodi:guide
215
- orientation="1,0"
216
- position="123.88235,954.35294"
217
- id="guide3181" />
218
- </sodipodi:namedview>
219
- <metadata
220
- id="metadata7">
221
- <rdf:RDF>
222
- <cc:Work
223
- rdf:about="">
224
- <dc:format>image/svg+xml</dc:format>
225
- <dc:type
226
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
227
- </cc:Work>
228
- </rdf:RDF>
229
- </metadata>
230
- <g
231
- inkscape:label="Layer 1"
232
- inkscape:groupmode="layer"
233
- id="layer1"
234
- transform="translate(-55.938873,-88.5)">
235
- <path
236
- style="fill:url(#linearGradient3206);fill-opacity:1"
237
- d="M 55.968873,166.59578 L 56.351226,207.74864 L 591.74874,207.74864 L 591.74874,87.748657 L 405.84249,87.748657 C 401.03218,88.557068 396.59701,89.182275 391.71749,90.061158 C 368.48635,94.245475 345.9216,98.859076 337.90499,100.09241 C 334.17705,100.66594 329.95003,101.50221 325.37374,102.56115 C 320.79745,103.62009 315.89396,104.89525 310.77999,106.31115 C 300.55205,109.14295 289.5447,112.54093 279.02999,116.0299 C 268.51528,119.51887 258.47117,123.09883 250.15499,126.2174 C 241.11972,129.23457 239.26983,130.22098 229.98748,132.4323 C 226.49162,133.26511 214.16367,136.64643 209.5328,137.44844 C 204.16908,138.37738 190.78756,140.89808 180.27999,142.43615 C 172.61693,143.55785 145.79194,145.82568 116.73099,152.92472 C 87.670053,160.02372 59.370343,166.30741 55.968873,166.59578 z"
238
- id="path3209"
239
- sodipodi:nodetypes="cccccssssscssssc" />
240
- <path
241
- style="fill:url(#linearGradient3219);fill-opacity:1;filter:url(#filter3228)"
242
- d="M 117.70278,144.5299 C 156.6807,131.52785 237.59266,120.76431 279.46868,111.53539 C 321.34469,102.30648 363.94948,94.612205 405.84249,87.748657 L 117.70278,87.748657 L 117.70278,144.5299 z"
243
- id="rect2385"
244
- sodipodi:nodetypes="csccc" />
245
- <path
246
- id="path3221"
247
- d="M 94.761617,144.5299 C 101.56455,143.95316 170.09323,144.43235 180.82072,143.51761 C 197.79352,142.30028 198.00159,142.23218 213.76562,139.19141 C 217.28514,138.46481 227.10392,134.84805 231.62374,133.7174 C 235.52285,132.74202 241.83881,129.33597 250.15499,126.2174 C 258.47117,123.09883 268.51528,119.51887 279.02999,116.0299 C 289.5447,112.54093 300.55205,109.14295 310.77999,106.31115 C 317.16276,104.2365 381.99714,94.335526 337.90499,100.09241 C 324.89219,102.49142 368.48635,94.245475 391.71749,90.061158 C 396.59701,89.182275 401.03218,88.557068 405.84249,87.748657"
248
- style="fill:none;fill-opacity:1;stroke:url(#linearGradient3186);stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter3248)"
249
- sodipodi:nodetypes="cccsssccsc" />
250
- <rect
251
- transform="matrix(0.9424229,0.3344236,-0.3344236,0.9424229,6.0299998,-1.7513455)"
252
- y="-56.166138"
253
- x="536.30225"
254
- height="52"
255
- width="50.470589"
256
- id="rect3655"
257
- style="fill:#001a48;fill-opacity:0.64788735;stroke:none;stroke-width:0.19999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter3707)" />
258
- <rect
259
- style="fill:url(#linearGradient3653);fill-opacity:1;stroke:none;stroke-width:0.19999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
260
- id="rect3645"
261
- width="50.470589"
262
- height="51.999992"
263
- x="536.29211"
264
- y="-62.265236"
265
- transform="matrix(0.9424229,0.3344235,-0.3344235,0.9424229,0,0)" />
266
- <rect
267
- style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.19999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter3737)"
268
- id="rect3717"
269
- width="44.770218"
270
- height="43.626751"
271
- x="369.57797"
272
- y="338.80719"
273
- transform="matrix(0.9362883,-0.3512325,0.4013773,0.9159128,4.0299997,0.2486545)" />
274
- <rect
275
- transform="matrix(0.9362883,-0.3512324,0.4013773,0.9159128,0,0)"
276
- y="341.62973"
277
- x="370.53638"
278
- height="43.626747"
279
- width="44.770218"
280
- id="rect3713"
281
- style="fill:url(#linearGradient3715);fill-opacity:1;stroke:none;stroke-width:0.19999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
282
- </g>
283
- </svg>