active-list 5.0.1 → 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 (40) hide show
  1. data/README.rdoc +2 -40
  2. metadata +19 -130
  3. checksums.yaml +0 -7
  4. data/VERSION +0 -1
  5. data/app/assets/images/active-list.png +0 -0
  6. data/app/assets/images/active-list.svg +0 -415
  7. data/app/assets/javascripts/active_list.jquery.js +0 -136
  8. data/app/assets/stylesheets/active_list.css.scss +0 -7
  9. data/app/assets/stylesheets/active_list/background.scss +0 -39
  10. data/app/assets/stylesheets/active_list/minimal.scss +0 -87
  11. data/app/assets/stylesheets/active_list/theme.scss +0 -189
  12. data/lib/active-list.rb +0 -1
  13. data/lib/active_list.rb +0 -43
  14. data/lib/active_list/action_pack.rb +0 -46
  15. data/lib/active_list/definition.rb +0 -17
  16. data/lib/active_list/definition/abstract_column.rb +0 -54
  17. data/lib/active_list/definition/action_column.rb +0 -76
  18. data/lib/active_list/definition/association_column.rb +0 -80
  19. data/lib/active_list/definition/attribute_column.rb +0 -58
  20. data/lib/active_list/definition/check_box_column.rb +0 -17
  21. data/lib/active_list/definition/data_column.rb +0 -88
  22. data/lib/active_list/definition/empty_column.rb +0 -10
  23. data/lib/active_list/definition/field_column.rb +0 -20
  24. data/lib/active_list/definition/status_column.rb +0 -10
  25. data/lib/active_list/definition/table.rb +0 -159
  26. data/lib/active_list/definition/text_field_column.rb +0 -10
  27. data/lib/active_list/exporters.rb +0 -28
  28. data/lib/active_list/exporters/abstract_exporter.rb +0 -55
  29. data/lib/active_list/exporters/csv_exporter.rb +0 -32
  30. data/lib/active_list/exporters/excel_csv_exporter.rb +0 -38
  31. data/lib/active_list/exporters/open_document_spreadsheet_exporter.rb +0 -82
  32. data/lib/active_list/generator.rb +0 -122
  33. data/lib/active_list/generator/finder.rb +0 -150
  34. data/lib/active_list/helpers.rb +0 -33
  35. data/lib/active_list/rails/engine.rb +0 -13
  36. data/lib/active_list/renderers.rb +0 -25
  37. data/lib/active_list/renderers/abstract_renderer.rb +0 -29
  38. data/lib/active_list/renderers/simple_renderer.rb +0 -356
  39. data/locales/eng.yml +0 -25
  40. data/locales/fra.yml +0 -25
@@ -1,43 +1,5 @@
1
1
  = ActiveList
2
2
 
3
- ActiveList is a simple list widget. It permits to create a controller
4
- method and view helper to displays lists.
3
+ ActiveList (as "active-list") is not used anymore. It's a transitional gem to use gem active_list ≥ 6.
5
4
 
6
- The first need was to have a simple component to build easily HTML
7
- tables. No scaffolds, only listings.
8
-
9
- ActiveList works only with Rails ≥ 3.1.
10
-
11
- ActiveList works only with Ruby ≥ 1.9 since v4.2.0.
12
-
13
-
14
- == Quick start
15
-
16
- First, the JS code must be added to the pipeline in app/assets/javascripts/application.js:
17
-
18
- //= require active-list.jquery
19
-
20
- And get a better, you can add in app/assets/stylesheets/application.css:
21
-
22
- *= require active-list
23
-
24
- The simple way to use it is to write in our controller:
25
-
26
- class PeopleController < ApplicationController
27
- list
28
-
29
- def index
30
- end
31
- end
32
-
33
- And in the view app/views/people/index.html.erb:
34
-
35
- <%=list-%>
36
-
37
- == Build Status {<img src="https://secure.travis-ci.org/burisu/active-list.png"/>}[http://travis-ci.org/burisu/active-list]
38
-
39
- == License
40
-
41
- ActiveList is released under the MIT license:
42
-
43
- * http://www.opensource.org/licenses/MIT
5
+ The new repository is: http://github.com/burisu/active_list.
metadata CHANGED
@@ -1,174 +1,63 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active-list
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.1
4
+ version: 6.0.0
5
+ prerelease:
5
6
  platform: ruby
6
7
  authors:
7
8
  - Brice Texier
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2014-03-26 00:00:00.000000000 Z
12
+ date: 2014-05-04 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
- name: rails
15
+ name: active_list
15
16
  requirement: !ruby/object:Gem::Requirement
17
+ none: false
16
18
  requirements:
17
- - - '>='
19
+ - - ! '>='
18
20
  - !ruby/object:Gem::Version
19
- version: '3.2'
20
- - - <
21
- - !ruby/object:Gem::Version
22
- version: '4.1'
23
- type: :runtime
24
- prerelease: false
25
- version_requirements: !ruby/object:Gem::Requirement
26
- requirements:
27
- - - '>='
28
- - !ruby/object:Gem::Version
29
- version: '3.2'
30
- - - <
31
- - !ruby/object:Gem::Version
32
- version: '4.1'
33
- - !ruby/object:Gem::Dependency
34
- name: compass-rails
35
- requirement: !ruby/object:Gem::Requirement
36
- requirements:
37
- - - ~>
38
- - !ruby/object:Gem::Version
39
- version: 1.1.7
40
- type: :runtime
41
- prerelease: false
42
- version_requirements: !ruby/object:Gem::Requirement
43
- requirements:
44
- - - ~>
45
- - !ruby/object:Gem::Version
46
- version: 1.1.7
47
- - !ruby/object:Gem::Dependency
48
- name: rubyzip
49
- requirement: !ruby/object:Gem::Requirement
50
- requirements:
51
- - - '>='
52
- - !ruby/object:Gem::Version
53
- version: '1.0'
54
- type: :runtime
55
- prerelease: false
56
- version_requirements: !ruby/object:Gem::Requirement
57
- requirements:
58
- - - '>='
59
- - !ruby/object:Gem::Version
60
- version: '1.0'
61
- - !ruby/object:Gem::Dependency
62
- name: fastercsv
63
- requirement: !ruby/object:Gem::Requirement
64
- requirements:
65
- - - '>='
66
- - !ruby/object:Gem::Version
67
- version: '1.5'
68
- type: :runtime
69
- prerelease: false
70
- version_requirements: !ruby/object:Gem::Requirement
71
- requirements:
72
- - - '>='
73
- - !ruby/object:Gem::Version
74
- version: '1.5'
75
- - !ruby/object:Gem::Dependency
76
- name: i18n-complements
77
- requirement: !ruby/object:Gem::Requirement
78
- requirements:
79
- - - '>='
80
- - !ruby/object:Gem::Version
81
- version: '0'
21
+ version: 6.0.0
82
22
  type: :runtime
83
23
  prerelease: false
84
24
  version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
85
26
  requirements:
86
- - - '>='
87
- - !ruby/object:Gem::Version
88
- version: '0'
89
- - !ruby/object:Gem::Dependency
90
- name: sqlite3
91
- requirement: !ruby/object:Gem::Requirement
92
- requirements:
93
- - - '>='
94
- - !ruby/object:Gem::Version
95
- version: '0'
96
- type: :development
97
- prerelease: false
98
- version_requirements: !ruby/object:Gem::Requirement
99
- requirements:
100
- - - '>='
27
+ - - ! '>='
101
28
  - !ruby/object:Gem::Version
102
- version: '0'
103
- description: Generates action methods to provide clean tables.
29
+ version: 6.0.0
30
+ description:
104
31
  email: burisu@oneiros.fr
105
32
  executables: []
106
33
  extensions: []
107
- extra_rdoc_files:
108
- - LICENSE
109
- - README.rdoc
34
+ extra_rdoc_files: []
110
35
  files:
111
36
  - LICENSE
112
37
  - README.rdoc
113
- - VERSION
114
- - app/assets/images/active-list.png
115
- - app/assets/images/active-list.svg
116
- - app/assets/javascripts/active_list.jquery.js
117
- - app/assets/stylesheets/active_list.css.scss
118
- - app/assets/stylesheets/active_list/background.scss
119
- - app/assets/stylesheets/active_list/minimal.scss
120
- - app/assets/stylesheets/active_list/theme.scss
121
- - lib/active-list.rb
122
- - lib/active_list.rb
123
- - lib/active_list/action_pack.rb
124
- - lib/active_list/definition.rb
125
- - lib/active_list/definition/abstract_column.rb
126
- - lib/active_list/definition/action_column.rb
127
- - lib/active_list/definition/association_column.rb
128
- - lib/active_list/definition/attribute_column.rb
129
- - lib/active_list/definition/check_box_column.rb
130
- - lib/active_list/definition/data_column.rb
131
- - lib/active_list/definition/empty_column.rb
132
- - lib/active_list/definition/field_column.rb
133
- - lib/active_list/definition/status_column.rb
134
- - lib/active_list/definition/table.rb
135
- - lib/active_list/definition/text_field_column.rb
136
- - lib/active_list/exporters.rb
137
- - lib/active_list/exporters/abstract_exporter.rb
138
- - lib/active_list/exporters/csv_exporter.rb
139
- - lib/active_list/exporters/excel_csv_exporter.rb
140
- - lib/active_list/exporters/open_document_spreadsheet_exporter.rb
141
- - lib/active_list/generator.rb
142
- - lib/active_list/generator/finder.rb
143
- - lib/active_list/helpers.rb
144
- - lib/active_list/rails/engine.rb
145
- - lib/active_list/renderers.rb
146
- - lib/active_list/renderers/abstract_renderer.rb
147
- - lib/active_list/renderers/simple_renderer.rb
148
- - locales/eng.yml
149
- - locales/fra.yml
150
38
  homepage: http://github.com/burisu/active-list
151
39
  licenses:
152
40
  - MIT
153
- metadata: {}
154
41
  post_install_message:
155
42
  rdoc_options: []
156
43
  require_paths:
157
44
  - lib
158
45
  required_ruby_version: !ruby/object:Gem::Requirement
46
+ none: false
159
47
  requirements:
160
- - - '>='
48
+ - - ! '>='
161
49
  - !ruby/object:Gem::Version
162
50
  version: '0'
163
51
  required_rubygems_version: !ruby/object:Gem::Requirement
52
+ none: false
164
53
  requirements:
165
- - - '>='
54
+ - - ! '>='
166
55
  - !ruby/object:Gem::Version
167
56
  version: '0'
168
57
  requirements: []
169
58
  rubyforge_project:
170
- rubygems_version: 2.0.14
59
+ rubygems_version: 1.8.23.2
171
60
  signing_key:
172
- specification_version: 4
173
- summary: Easy tables in Rails app
61
+ specification_version: 3
62
+ summary: Dummy transitional package for active_list
174
63
  test_files: []
checksums.yaml DELETED
@@ -1,7 +0,0 @@
1
- ---
2
- SHA1:
3
- metadata.gz: 498cc54270aebd01f827b1ded109ad9595af2c16
4
- data.tar.gz: 49c6dc559537aabffb4e078f96eacf9640f8f3e6
5
- SHA512:
6
- metadata.gz: 20ef5e38603eeaafacbbb0ed4bf69d71e6fb30cf1f9d4ab6b53d963a8e28e44652c6c5d79fae12b9fa9e51e95d3952949f34d2d4f6254ab6d2b9f39a6fe0d786
7
- data.tar.gz: 0f8e1315f974167b4867f59bce56fde5f84636aae591e7b360e3ac93f5ebeaea2c6cff72d300d954005f5e4264df3428606cc2aae51bd074c4fc7a90682f7a1a
data/VERSION DELETED
@@ -1 +0,0 @@
1
- 5.0.1
@@ -1,415 +0,0 @@
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>