active_list 6.0.0

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 (103) hide show
  1. data/LICENSE.txt +20 -0
  2. data/README.rdoc +46 -0
  3. data/app/assets/images/active_list.png +0 -0
  4. data/app/assets/images/active_list.svg +415 -0
  5. data/app/assets/javascripts/active_list.jquery.js +136 -0
  6. data/app/assets/stylesheets/active_list.css.scss +7 -0
  7. data/app/assets/stylesheets/active_list/background.scss +39 -0
  8. data/app/assets/stylesheets/active_list/minimal.scss +87 -0
  9. data/app/assets/stylesheets/active_list/theme.scss +189 -0
  10. data/lib/active_list.rb +61 -0
  11. data/lib/active_list/action_pack.rb +46 -0
  12. data/lib/active_list/definition.rb +17 -0
  13. data/lib/active_list/definition/abstract_column.rb +54 -0
  14. data/lib/active_list/definition/action_column.rb +76 -0
  15. data/lib/active_list/definition/association_column.rb +80 -0
  16. data/lib/active_list/definition/attribute_column.rb +58 -0
  17. data/lib/active_list/definition/check_box_column.rb +17 -0
  18. data/lib/active_list/definition/data_column.rb +88 -0
  19. data/lib/active_list/definition/empty_column.rb +10 -0
  20. data/lib/active_list/definition/field_column.rb +20 -0
  21. data/lib/active_list/definition/status_column.rb +10 -0
  22. data/lib/active_list/definition/table.rb +159 -0
  23. data/lib/active_list/definition/text_field_column.rb +10 -0
  24. data/lib/active_list/exporters.rb +17 -0
  25. data/lib/active_list/exporters/abstract_exporter.rb +55 -0
  26. data/lib/active_list/exporters/csv_exporter.rb +32 -0
  27. data/lib/active_list/exporters/excel_csv_exporter.rb +38 -0
  28. data/lib/active_list/exporters/open_document_spreadsheet_exporter.rb +82 -0
  29. data/lib/active_list/generator.rb +122 -0
  30. data/lib/active_list/generator/finder.rb +150 -0
  31. data/lib/active_list/helpers.rb +33 -0
  32. data/lib/active_list/rails/engine.rb +13 -0
  33. data/lib/active_list/renderers.rb +16 -0
  34. data/lib/active_list/renderers/abstract_renderer.rb +29 -0
  35. data/lib/active_list/renderers/simple_renderer.rb +356 -0
  36. data/lib/active_list/version.rb +5 -0
  37. data/locales/eng.yml +25 -0
  38. data/locales/fra.yml +25 -0
  39. data/test/active_list_test.rb +35 -0
  40. data/test/code_generation_test.rb +31 -0
  41. data/test/dummy/.gitignore +15 -0
  42. data/test/dummy/Gemfile +39 -0
  43. data/test/dummy/Gemfile.lock +132 -0
  44. data/test/dummy/Rakefile +7 -0
  45. data/test/dummy/app/assets/images/rails.png +0 -0
  46. data/test/dummy/app/assets/javascripts/application.js +16 -0
  47. data/test/dummy/app/assets/javascripts/contacts.js.coffee +3 -0
  48. data/test/dummy/app/assets/javascripts/people.js.coffee +3 -0
  49. data/test/dummy/app/assets/stylesheets/application.css +14 -0
  50. data/test/dummy/app/assets/stylesheets/contacts.css.scss +3 -0
  51. data/test/dummy/app/assets/stylesheets/people.css.scss +3 -0
  52. data/test/dummy/app/assets/stylesheets/scaffolds.css.scss +56 -0
  53. data/test/dummy/app/controllers/application_controller.rb +3 -0
  54. data/test/dummy/app/controllers/contacts_controller.rb +83 -0
  55. data/test/dummy/app/controllers/people_controller.rb +86 -0
  56. data/test/dummy/app/helpers/application_helper.rb +2 -0
  57. data/test/dummy/app/helpers/contacts_helper.rb +2 -0
  58. data/test/dummy/app/helpers/people_helper.rb +2 -0
  59. data/test/dummy/app/mailers/.gitkeep +0 -0
  60. data/test/dummy/app/models/.gitkeep +0 -0
  61. data/test/dummy/app/models/contact.rb +3 -0
  62. data/test/dummy/app/models/person.rb +3 -0
  63. data/test/dummy/app/views/contacts/_form.html.erb +37 -0
  64. data/test/dummy/app/views/contacts/edit.html.erb +6 -0
  65. data/test/dummy/app/views/contacts/index.html.erb +31 -0
  66. data/test/dummy/app/views/contacts/new.html.erb +5 -0
  67. data/test/dummy/app/views/contacts/show.html.erb +30 -0
  68. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  69. data/test/dummy/app/views/people/_form.html.erb +29 -0
  70. data/test/dummy/app/views/people/edit.html.erb +6 -0
  71. data/test/dummy/app/views/people/index.html.erb +30 -0
  72. data/test/dummy/app/views/people/new.html.erb +5 -0
  73. data/test/dummy/app/views/people/show.html.erb +20 -0
  74. data/test/dummy/config.ru +4 -0
  75. data/test/dummy/config/application.rb +59 -0
  76. data/test/dummy/config/boot.rb +6 -0
  77. data/test/dummy/config/database.yml +25 -0
  78. data/test/dummy/config/environment.rb +5 -0
  79. data/test/dummy/config/environments/development.rb +37 -0
  80. data/test/dummy/config/environments/production.rb +67 -0
  81. data/test/dummy/config/environments/test.rb +40 -0
  82. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  83. data/test/dummy/config/initializers/inflections.rb +15 -0
  84. data/test/dummy/config/initializers/mime_types.rb +5 -0
  85. data/test/dummy/config/initializers/secret_token.rb +8 -0
  86. data/test/dummy/config/initializers/session_store.rb +8 -0
  87. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  88. data/test/dummy/config/locales/en.yml +5 -0
  89. data/test/dummy/config/routes.rb +66 -0
  90. data/test/dummy/db/migrate/20120510131331_create_people.rb +11 -0
  91. data/test/dummy/db/migrate/20120510134500_create_contacts.rb +13 -0
  92. data/test/dummy/db/schema.rb +34 -0
  93. data/test/dummy/log/.gitkeep +0 -0
  94. data/test/dummy/public/404.html +26 -0
  95. data/test/dummy/public/422.html +26 -0
  96. data/test/dummy/public/500.html +25 -0
  97. data/test/dummy/public/favicon.ico +0 -0
  98. data/test/dummy/public/robots.txt +5 -0
  99. data/test/dummy/script/rails +6 -0
  100. data/test/people_controller_test.rb +55 -0
  101. data/test/table_test.rb +15 -0
  102. data/test/test_helper.rb +30 -0
  103. metadata +313 -0
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2008-2012 Brice Texier
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,46 @@
1
+ = ActiveList
2
+ {<img src="https://badge.fury.io/rb/active_list.png" alt="Gem Version" />}[http://badge.fury.io/rb/active_list]
3
+ {<img src="https://api.travis-ci.org/burisu/active_list.png?branch=master"/>}[https://travis-ci.org/burisu/active_list]
4
+ {<img src="https://gemnasium.com/burisu/active_list.png"/>}[https://gemnasium.com/burisu/active_list]
5
+ {<img src="https://codeclimate.com/github/burisu/active_list.png" />}[https://codeclimate.com/github/burisu/active_list]
6
+ {<img src="https://coveralls.io/repos/burisu/active_list/badge.png?branch=master" alt="Coverage Status" />}[https://coveralls.io/r/burisu/active_list]
7
+
8
+ ActiveList is a simple list widget. It permits to create a controller
9
+ method and view helper to displays lists.
10
+
11
+ The first need was to have a simple component to build easily HTML
12
+ tables. No scaffolds, only listings.
13
+
14
+ ActiveList works only with Rails ≥ 3.1.
15
+
16
+ ActiveList works only with Ruby ≥ 1.9 since v4.2.0.
17
+
18
+
19
+ == Quick start
20
+
21
+ First, the JS code must be added to the pipeline in app/assets/javascripts/application.js:
22
+
23
+ //= require active_list.jquery
24
+
25
+ And for style, you can add in app/assets/stylesheets/application.css:
26
+
27
+ *= require active_list
28
+
29
+ The simple way to use it is to write in our controller:
30
+
31
+ class PeopleController < ApplicationController
32
+ list
33
+
34
+ def index
35
+ end
36
+ end
37
+
38
+ And in the view app/views/people/index.html.erb:
39
+
40
+ <%= list -%>
41
+
42
+ == License
43
+
44
+ ActiveList is released under the MIT license:
45
+
46
+ * http://www.opensource.org/licenses/MIT
Binary file
@@ -0,0 +1,415 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:xlink="http://www.w3.org/1999/xlink"
11
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
+ width="256"
14
+ height="16"
15
+ id="svg2"
16
+ sodipodi:version="0.32"
17
+ inkscape:version="0.47 r22583"
18
+ version="1.0"
19
+ inkscape:export-xdpi="90"
20
+ inkscape:export-ydpi="90"
21
+ sodipodi:docname="active_list.svg"
22
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
23
+ inkscape:export-filename="active_list.png">
24
+ <defs
25
+ id="defs4">
26
+ <linearGradient
27
+ id="linearGradient4211">
28
+ <stop
29
+ id="stop4213"
30
+ offset="0"
31
+ style="stop-color:#000000;stop-opacity:0.66666669;" />
32
+ <stop
33
+ id="stop4215"
34
+ offset="1"
35
+ style="stop-color:#000000;stop-opacity:0;" />
36
+ </linearGradient>
37
+ <linearGradient
38
+ id="linearGradient3708">
39
+ <stop
40
+ style="stop-color:#000000;stop-opacity:0.66666669;"
41
+ offset="0"
42
+ id="stop3710" />
43
+ <stop
44
+ style="stop-color:#000000;stop-opacity:0;"
45
+ offset="1"
46
+ id="stop3712" />
47
+ </linearGradient>
48
+ <linearGradient
49
+ id="linearGradient3877">
50
+ <stop
51
+ style="stop-color:#d0d0d0;stop-opacity:1;"
52
+ offset="0"
53
+ id="stop3879" />
54
+ <stop
55
+ style="stop-color:#ffffff;stop-opacity:1;"
56
+ offset="1"
57
+ id="stop3881" />
58
+ </linearGradient>
59
+ <linearGradient
60
+ inkscape:collect="always"
61
+ xlink:href="#linearGradient3708"
62
+ id="linearGradient3714"
63
+ x1="304"
64
+ y1="-5.5"
65
+ x2="304"
66
+ y2="1"
67
+ gradientUnits="userSpaceOnUse"
68
+ gradientTransform="translate(-16,-1)" />
69
+ <linearGradient
70
+ inkscape:collect="always"
71
+ xlink:href="#linearGradient3877"
72
+ id="linearGradient3743"
73
+ x1="2"
74
+ y1="21.375"
75
+ x2="13"
76
+ y2="27.0625"
77
+ gradientUnits="userSpaceOnUse"
78
+ gradientTransform="translate(288,-32)" />
79
+ <linearGradient
80
+ inkscape:collect="always"
81
+ xlink:href="#linearGradient3877"
82
+ id="linearGradient3344"
83
+ gradientUnits="userSpaceOnUse"
84
+ gradientTransform="translate(192,-16)"
85
+ x1="273.5"
86
+ y1="1.6875"
87
+ x2="286.5625"
88
+ y2="13.75" />
89
+ <inkscape:perspective
90
+ id="perspective3400"
91
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
92
+ inkscape:vp_z="1 : 0.5 : 1"
93
+ inkscape:vp_y="0 : 1000 : 0"
94
+ inkscape:vp_x="0 : 0.5 : 1"
95
+ sodipodi:type="inkscape:persp3d" />
96
+ <linearGradient
97
+ inkscape:collect="always"
98
+ xlink:href="#linearGradient3708-5"
99
+ id="linearGradient3714-7"
100
+ x1="304"
101
+ y1="-5.5"
102
+ x2="304"
103
+ y2="1"
104
+ gradientUnits="userSpaceOnUse"
105
+ gradientTransform="translate(-16,-1)" />
106
+ <linearGradient
107
+ id="linearGradient3708-5">
108
+ <stop
109
+ style="stop-color:#000000;stop-opacity:0;"
110
+ offset="0"
111
+ id="stop3710-2" />
112
+ <stop
113
+ style="stop-color:#000000;stop-opacity:0.66666669;"
114
+ offset="1"
115
+ id="stop3712-1" />
116
+ </linearGradient>
117
+ <radialGradient
118
+ inkscape:collect="always"
119
+ xlink:href="#linearGradient3708-5"
120
+ id="radialGradient4209"
121
+ cx="40.650188"
122
+ cy="29.570824"
123
+ fx="40.650188"
124
+ fy="29.570824"
125
+ r="6"
126
+ gradientTransform="matrix(1.2698105e-8,-0.75019625,1.2604169,2.8185411e-8,214.85343,28.495618)"
127
+ gradientUnits="userSpaceOnUse" />
128
+ <radialGradient
129
+ inkscape:collect="always"
130
+ xlink:href="#linearGradient3708-5"
131
+ id="radialGradient4221"
132
+ gradientUnits="userSpaceOnUse"
133
+ gradientTransform="matrix(1.2698105e-8,-0.75019625,1.2604169,2.8185411e-8,214.85343,28.495618)"
134
+ cx="40.650188"
135
+ cy="29.570824"
136
+ fx="40.650188"
137
+ fy="29.570824"
138
+ r="6" />
139
+ </defs>
140
+ <sodipodi:namedview
141
+ id="base"
142
+ pagecolor="#6f6f6f"
143
+ bordercolor="#666666"
144
+ borderopacity="1.0"
145
+ inkscape:pageopacity="0"
146
+ inkscape:pageshadow="2"
147
+ inkscape:zoom="16"
148
+ inkscape:cx="14.740899"
149
+ inkscape:cy="2.590179"
150
+ inkscape:document-units="px"
151
+ inkscape:current-layer="layer1"
152
+ showguides="true"
153
+ showgrid="true"
154
+ inkscape:showpageshadow="false"
155
+ gridtolerance="0.4px"
156
+ inkscape:guide-bbox="true"
157
+ inkscape:window-width="1680"
158
+ inkscape:window-height="949"
159
+ inkscape:window-x="0"
160
+ inkscape:window-y="25"
161
+ inkscape:window-maximized="1">
162
+ <inkscape:grid
163
+ id="GridFromPre046Settings"
164
+ type="xygrid"
165
+ originx="0px"
166
+ originy="0px"
167
+ spacingx="1px"
168
+ spacingy="1px"
169
+ color="#3f3fff"
170
+ empcolor="#b73fff"
171
+ opacity="0.15294118"
172
+ empopacity="0.3372549"
173
+ empspacing="8"
174
+ visible="true"
175
+ enabled="true"
176
+ snapvisiblegridlinesonly="false" />
177
+ </sodipodi:namedview>
178
+ <metadata
179
+ id="metadata7">
180
+ <rdf:RDF>
181
+ <cc:Work
182
+ rdf:about="">
183
+ <dc:format>image/svg+xml</dc:format>
184
+ <dc:type
185
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
186
+ <dc:title></dc:title>
187
+ </cc:Work>
188
+ <cc:Work
189
+ rdf:about="">
190
+ <dc:format>image/svg+xml</dc:format>
191
+ <dc:type
192
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
193
+ </cc:Work>
194
+ </rdf:RDF>
195
+ </metadata>
196
+ <g
197
+ inkscape:label="Base"
198
+ inkscape:groupmode="layer"
199
+ id="layer1"
200
+ transform="translate(-240,16)">
201
+ <path
202
+ style="fill:#000000;fill-opacity:0.66666667;fill-rule:nonzero;stroke:none"
203
+ d="M 424,-14 L 418.5,-9 L 421.25,-9 L 424,-11.5 L 426.75,-9 L 429.5,-9 L 424,-14 z"
204
+ id="up3"
205
+ sodipodi:nodetypes="ccccccc"
206
+ inkscape:export-filename="sort-up.png"
207
+ inkscape:export-xdpi="90"
208
+ inkscape:export-ydpi="90" />
209
+ <path
210
+ style="fill:#000000;fill-opacity:0.66666667;fill-rule:nonzero;stroke:none"
211
+ d="M 247.12495,0 L 246.8437,1.28125 L 246.6562,2.5 L 245.37495,3 L 244.4062,2.21875 L 243.3437,1.4375 L 241.68745,2.96875 L 242.43745,4.0625 L 243.1562,5.0625 L 242.5937,6.3125 L 241.3437,6.46875 L 240.0312,6.65625 L 240,8.875001 L 241.28125,9.15625 L 242.5,9.34375 L 243,10.625001 L 242.21875,11.59375 L 241.4375,12.65625 L 242.96875,14.3125 L 244.0625,13.5625 L 245.0625,12.84375 L 246.3125,13.40625 L 246.46875,14.65625 L 246.65625,15.96875 L 248.875,16 L 249.15625,14.71875 L 249.34375,13.5 L 250.625,13 L 251.59375,13.78125 L 252.65625,14.5625 L 254.3125,13.03125 L 253.5625,11.9375 L 252.84375,10.9375 L 253.40625,9.6875 L 254.65625,9.53125 L 255.96875,9.34375 L 255.99995,7.125001 L 254.7187,6.84375 L 253.49995,6.65625 L 252.99995,5.374999 L 253.7812,4.40625 L 254.56245,3.34375 L 253.0312,1.6875 L 251.93745,2.4375 L 250.93745,3.15625 L 249.68745,2.59375 L 249.5312,1.34375 L 249.3437,0.03125 L 247.12495,0 z M 247.9687,5 C 249.62457,4.98086 250.97965,6.312863 250.99995,7.96875 C 251.02025,9.624637 249.68706,10.980859 248.0312,11 C 246.37533,11.01914 245.02025,9.687137 244.99995,8.03125 C 244.97965,6.375363 246.31284,5.019142 247.9687,5 z"
212
+ id="path4226-90"
213
+ inkscape:export-filename="list-start.png"
214
+ inkscape:export-xdpi="90"
215
+ inkscape:export-ydpi="90" />
216
+ <path
217
+ sodipodi:nodetypes="ccccccc"
218
+ style="fill:#000000;fill-opacity:0.66666667;fill-rule:nonzero;stroke:none"
219
+ id="path2947-4"
220
+ d="M 258.99995,-10.979318 L 262.8947,-7.098265 L 268.99995,-13 L 268.99995,-9.027149 L 262.8947,-3 L 258.99995,-6.896331 L 258.99995,-10.979318 z" />
221
+ <path
222
+ style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:url(#linearGradient3714);fill-opacity:1;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Arial;-inkscape-font-specification:Arial"
223
+ d="M 272,-16 L 272,0 L 274,0 L 274,-10 L 279,-10 L 279,0 L 281,0 L 281,-10 L 286,-10 L 286,0 L 288,0 L 288,-16 L 272,-16 z M 274,-14 L 279,-14 L 279,-12 L 274,-12 L 274,-14 z M 281,-14 L 286,-14 L 286,-12 L 281,-12 L 281,-14 z"
224
+ id="path2917"
225
+ sodipodi:nodetypes="ccccccccccccccccccccccc"
226
+ inkscape:export-xdpi="90"
227
+ inkscape:export-ydpi="90"
228
+ inkscape:export-filename="columns.png" />
229
+ <path
230
+ style="opacity:0.7;fill:url(#linearGradient3743);fill-opacity:1;stroke:none"
231
+ d="M 290,-15 L 297.1875,-15 L 301,-11.5 L 301,-1 L 290,-1 L 290,-15 z"
232
+ id="path3735"
233
+ sodipodi:nodetypes="cccccc" />
234
+ <path
235
+ style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#000000;fill-opacity:0.66666667;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Arial;-inkscape-font-specification:Arial"
236
+ d="M 289,-16 L 289,0 L 302,0 L 302,-11.9375 L 297.875,-16 L 289,-16 z M 291,-14 L 297,-14 L 297,-11 L 300,-11 L 300,-2 L 291,-2 L 291,-14 z"
237
+ id="path2913"
238
+ sodipodi:nodetypes="ccccccccccccc" />
239
+ <path
240
+ style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#000000;fill-opacity:0.66666667;stroke:none;stroke-width:1.99999988;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Arial;-inkscape-font-specification:Arial"
241
+ d="M 306,-15 L 306,-13 L 318,-13 L 318,-15 L 306,-15 z M 306,-11 L 306,-9 L 318,-9 L 318,-11 L 306,-11 z M 306,-7 L 306,-5 L 318,-5 L 318,-7 L 306,-7 z M 306,-3 L 306,-1 L 318,-1 L 318,-3 L 306,-3 z"
242
+ id="path3691"
243
+ inkscape:export-filename="pages.png"
244
+ inkscape:export-xdpi="90"
245
+ inkscape:export-ydpi="90" />
246
+ <rect
247
+ style="opacity:0.7;fill:url(#linearGradient3344);fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
248
+ id="rect3723"
249
+ width="14"
250
+ height="14"
251
+ x="465"
252
+ y="-15"
253
+ inkscape:export-filename="checked.png"
254
+ inkscape:export-xdpi="90"
255
+ inkscape:export-ydpi="90" />
256
+ <use
257
+ x="0"
258
+ y="0"
259
+ xlink:href="#path2947-4"
260
+ id="use2939"
261
+ transform="translate(208.00005,0)"
262
+ width="96"
263
+ height="32"
264
+ style="fill:#000000;fill-opacity:0.66666667" />
265
+ <rect
266
+ style="fill:none;stroke:#5555ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0;stroke-dasharray:none"
267
+ id="rect2943"
268
+ width="14"
269
+ height="14"
270
+ x="465"
271
+ y="-15" />
272
+ <use
273
+ x="0"
274
+ y="0"
275
+ xlink:href="#rect3723"
276
+ id="use3733"
277
+ transform="translate(16,0)"
278
+ width="96"
279
+ height="32"
280
+ inkscape:export-filename="unchecked.png"
281
+ inkscape:export-xdpi="90"
282
+ inkscape:export-ydpi="90" />
283
+ <use
284
+ x="0"
285
+ y="0"
286
+ xlink:href="#up3"
287
+ id="use2924"
288
+ transform="matrix(1,0,0,-1,0,-16.000006)"
289
+ width="96"
290
+ height="32"
291
+ inkscape:export-filename="sort-down.png"
292
+ inkscape:export-xdpi="90"
293
+ inkscape:export-ydpi="90"
294
+ style="fill:#555555;fill-opacity:1" />
295
+ <path
296
+ style="fill:#000000;fill-opacity:0.66666667;fill-rule:nonzero;stroke:none"
297
+ d="M 355,-8 L 361.375,-16 L 364,-16 L 357.625,-8 L 364,0 L 361.375,0 L 355,-8 z"
298
+ id="path4015-8-4-6-8"
299
+ sodipodi:nodetypes="ccccccc"
300
+ inkscape:export-filename="home.png"
301
+ inkscape:export-xdpi="90"
302
+ inkscape:export-ydpi="90" />
303
+ <g
304
+ id="g3914"
305
+ transform="translate(79,16)"
306
+ inkscape:export-filename="previous-page.png"
307
+ inkscape:export-xdpi="90"
308
+ inkscape:export-ydpi="90">
309
+ <path
310
+ style="fill:#baba6a;fill-opacity:0.66666667;stroke:none"
311
+ d="M 25.8125,16.125 L 19.4375,24 L 25.8125,32 L 28.5625,32 L 22.125,24 L 28.625,16 L 25.8125,16.125 z"
312
+ id="path4056"
313
+ transform="translate(241,-48)"
314
+ sodipodi:nodetypes="ccccccc" />
315
+ <use
316
+ height="32"
317
+ width="96"
318
+ transform="translate(-92,-16)"
319
+ id="use3904"
320
+ xlink:href="#path4015-8-4-6-8"
321
+ y="0"
322
+ x="0" />
323
+ <use
324
+ height="32"
325
+ width="96"
326
+ transform="translate(-97,-16)"
327
+ id="use3906"
328
+ xlink:href="#path4015-8-4-6-8"
329
+ y="0"
330
+ x="0" />
331
+ </g>
332
+ <g
333
+ id="g3958"
334
+ transform="translate(80,16)"
335
+ inkscape:export-filename="begin.png"
336
+ inkscape:export-xdpi="90"
337
+ inkscape:export-ydpi="90">
338
+ <use
339
+ height="32"
340
+ width="96"
341
+ transform="translate(-95,-16)"
342
+ id="use3918"
343
+ xlink:href="#g3914"
344
+ y="0"
345
+ x="0" />
346
+ <rect
347
+ inkscape:export-ydpi="90"
348
+ inkscape:export-xdpi="90"
349
+ inkscape:export-filename="home.png"
350
+ y="-32"
351
+ x="240"
352
+ height="16"
353
+ width="2"
354
+ id="rect2994-3-0"
355
+ style="fill:#000000;fill-opacity:0.66666669;fill-rule:nonzero;stroke:none" />
356
+ </g>
357
+ <use
358
+ x="0"
359
+ y="0"
360
+ xlink:href="#path4015-8-4-6-8"
361
+ id="use3962"
362
+ transform="matrix(-1,0,0,1,736,0)"
363
+ width="96"
364
+ height="32" />
365
+ <use
366
+ x="0"
367
+ y="0"
368
+ xlink:href="#g3914"
369
+ id="use3964"
370
+ transform="matrix(-1,0,0,1,736,0)"
371
+ width="96"
372
+ height="32" />
373
+ <use
374
+ x="0"
375
+ y="0"
376
+ xlink:href="#g3958"
377
+ id="use3966"
378
+ transform="matrix(-1,0,0,1,736,0)"
379
+ width="96"
380
+ height="32"
381
+ inkscape:export-filename="end.png"
382
+ inkscape:export-xdpi="90"
383
+ inkscape:export-ydpi="90" />
384
+ <use
385
+ x="0"
386
+ y="0"
387
+ xlink:href="#up3"
388
+ id="use3340"
389
+ transform="translate(16,3.5)"
390
+ width="112"
391
+ height="32" />
392
+ <use
393
+ x="0"
394
+ y="0"
395
+ xlink:href="#use2924"
396
+ id="use3342"
397
+ transform="translate(32,-3.499994)"
398
+ width="112"
399
+ height="32" />
400
+ <g
401
+ id="g4217"
402
+ transform="translate(-0.125,0)">
403
+ <path
404
+ sodipodi:nodetypes="ccccccccccccccccccccccccccc"
405
+ id="path2917-3"
406
+ d="M 240.125,-16 L 240.125,-4 L 240.125,-2 L 252.125,-2 L 252.125,-4 L 252.125,-16 L 240.125,-16 z M 242.125,-14 L 245.125,-14 L 245.125,-12 L 242.125,-12 L 242.125,-14 z M 247.125,-14 L 250.125,-14 L 250.125,-12 L 247.125,-12 L 247.125,-14 z M 242.125,-10 L 245.125,-10 L 245.125,-4 L 242.125,-4 L 242.125,-10 z M 247.125,-10 L 250.125,-10 L 250.125,-4 L 247.125,-4 L 247.125,-10 z"
407
+ style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:url(#radialGradient4221);fill-opacity:1;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Arial;-inkscape-font-specification:Arial" />
408
+ <path
409
+ sodipodi:nodetypes="cccc"
410
+ id="path3433"
411
+ d="M 252.125,0 L 256.125,-4 L 248.125,-4 L 252.125,0 z"
412
+ style="fill:#000000;fill-opacity:0.66666667;stroke:none" />
413
+ </g>
414
+ </g>
415
+ </svg>