parlement 0.12 → 0.13
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.
- data/CHANGES +16 -0
- data/MEMORY +4 -0
- data/README +1 -0
- data/app/controllers/account_controller.rb +3 -0
- data/app/controllers/application.rb +15 -0
- data/app/controllers/elt_controller.rb +64 -2
- data/app/controllers/subscriber_controller.rb +0 -6
- data/app/helpers/elt_helper.rb +28 -18
- data/app/models/elt.rb +8 -3
- data/app/models/old_visit.rb +4 -0
- data/app/models/person.rb +4 -0
- data/app/models/visit.rb +4 -0
- data/app/views/account/_show.rhtml +11 -3
- data/app/views/elt/_listByDate.rhtml +74 -58
- data/app/views/elt/_listByVote.rhtml +70 -65
- data/app/views/elt/_listVisitors.rhtml +20 -0
- data/app/views/elt/new.rhtml +36 -23
- data/app/views/elt/show.rhtml +30 -15
- data/app/views/subscriber/_list.rhtml +24 -15
- data/config/database.yml +3 -3
- data/config/environment.rb +1 -1
- data/db/ROOT/Titemagli.txt +3 -0
- data/db/ROOT/titemagli.txt +9 -0
- data/db/development_structure.sql +343 -53
- data/db/migrate/007_create_visits.rb +19 -0
- data/db/migrate/008_create_old_visits.rb +18 -0
- data/db/migrate/009_add_person_last_login.rb +9 -0
- data/db/schema.rb +22 -1
- data/public/images/feed-icon-14x14.png +0 -0
- data/public/images/feed-icon-28x28.png +0 -0
- data/public/javascripts/mybehaviour.js +13 -4
- data/public/stylesheets/default.css +46 -42
- data/test/unit/visit_test.rb +10 -0
- metadata +226 -216
- data/public/images/webfeed.gif +0 -0
metadata
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
|
-
rubygems_version: 0.9.
|
2
|
+
rubygems_version: 0.9.4
|
3
3
|
specification_version: 1
|
4
4
|
name: parlement
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: "0.
|
7
|
-
date: 2007-
|
6
|
+
version: "0.13"
|
7
|
+
date: 2007-06-17 00:00:00 +02:00
|
8
8
|
summary: Trusted Direct Democracy on a forum
|
9
9
|
require_paths:
|
10
10
|
- lib
|
@@ -29,336 +29,346 @@ post_install_message:
|
|
29
29
|
authors:
|
30
30
|
- Emmanuel Charpentier
|
31
31
|
files:
|
32
|
-
- COPYING
|
33
|
-
- Rakefile
|
34
|
-
- README
|
35
|
-
- CHANGES
|
36
32
|
- MEMORY
|
37
|
-
-
|
38
|
-
-
|
39
|
-
-
|
40
|
-
-
|
41
|
-
- app/models/subscription.rb
|
42
|
-
- app/models/choice.rb
|
43
|
-
- app/models/mail.rb
|
44
|
-
- app/models/elt.rb
|
45
|
-
- app/models/person_mail.rb
|
46
|
-
- app/models/person_notify.rb
|
47
|
-
- app/models/user.rb
|
48
|
-
- app/controllers
|
49
|
-
- app/controllers/account_controller.rb
|
50
|
-
- app/controllers/application.rb
|
51
|
-
- app/controllers/subscriber_controller.rb
|
52
|
-
- app/controllers/person_controller.rb
|
53
|
-
- app/controllers/elt_controller.rb
|
33
|
+
- CHANGES
|
34
|
+
- README
|
35
|
+
- Rakefile
|
36
|
+
- COPYING
|
54
37
|
- app/apis
|
55
38
|
- app/views
|
56
|
-
- app/views/_help.rhtml
|
57
|
-
- app/views/person
|
58
|
-
- app/views/person/_listElts.rhtml
|
59
|
-
- app/views/person/show.rhtml
|
60
|
-
- app/views/account
|
61
|
-
- app/views/account/welcome.rhtml
|
62
|
-
- app/views/account/logout.rhtml
|
63
|
-
- app/views/account/_show.rhtml
|
64
|
-
- app/views/account/_login.rhtml
|
65
|
-
- app/views/account/signup.rhtml
|
66
|
-
- app/views/mail_notify
|
67
|
-
- app/views/mail_notify/publish.text.html.rhtml
|
68
|
-
- app/views/mail_notify/publish.text.plain.rhtml
|
69
39
|
- app/views/layouts
|
70
40
|
- app/views/layouts/scaffold.rhtml
|
71
41
|
- app/views/layouts/top.rhtml
|
72
42
|
- app/views/elt
|
73
|
-
- app/views/elt/
|
43
|
+
- app/views/elt/new.rhtml
|
44
|
+
- app/views/elt/choices.rhtml
|
45
|
+
- app/views/elt/_listVisitors.rhtml
|
46
|
+
- app/views/elt/show.rhtml
|
74
47
|
- app/views/elt/show_tree.rhtml
|
48
|
+
- app/views/elt/_choice.rhtml
|
75
49
|
- app/views/elt/_listByVote.rhtml
|
76
|
-
- app/views/elt/_list.rhtml
|
77
|
-
- app/views/elt/choices.rhtml
|
78
|
-
- app/views/elt/new.rhtml
|
79
|
-
- app/views/elt/rss.rxml
|
80
50
|
- app/views/elt/_elt.rhtml
|
81
|
-
- app/views/elt/
|
82
|
-
- app/views/elt/
|
83
|
-
- app/views/elt/_listByDate.rhtml
|
51
|
+
- app/views/elt/vote_rss.rxml
|
52
|
+
- app/views/elt/rss.rxml
|
84
53
|
- app/views/elt/_form.rhtml
|
85
|
-
- app/views/
|
86
|
-
- app/views/
|
54
|
+
- app/views/elt/_listByDate.rhtml
|
55
|
+
- app/views/elt/_list.rhtml
|
56
|
+
- app/views/mail_notify
|
57
|
+
- app/views/mail_notify/publish.text.plain.rhtml
|
58
|
+
- app/views/mail_notify/publish.text.html.rhtml
|
87
59
|
- app/views/person_notify
|
88
60
|
- app/views/person_notify/setEmail.rhtml
|
61
|
+
- app/views/subscriber
|
62
|
+
- app/views/subscriber/_list.rhtml
|
63
|
+
- app/views/_help.rhtml
|
64
|
+
- app/views/account
|
65
|
+
- app/views/account/_login.rhtml
|
66
|
+
- app/views/account/logout.rhtml
|
67
|
+
- app/views/account/welcome.rhtml
|
68
|
+
- app/views/account/_show.rhtml
|
69
|
+
- app/views/account/signup.rhtml
|
70
|
+
- app/views/person
|
71
|
+
- app/views/person/_listElts.rhtml
|
72
|
+
- app/views/person/show.rhtml
|
89
73
|
- app/helpers
|
90
|
-
- app/helpers/mailman.rb
|
91
|
-
- app/helpers/elt_helper.rb
|
92
74
|
- app/helpers/subscriber_helper.rb
|
93
|
-
- app/helpers/application_helper.rb
|
94
75
|
- app/helpers/account_helper.rb
|
95
|
-
- app/helpers/
|
76
|
+
- app/helpers/mailman.rb
|
96
77
|
- app/helpers/person_helper.rb
|
78
|
+
- app/helpers/application_helper.rb
|
79
|
+
- app/helpers/live_tree.rb
|
80
|
+
- app/helpers/elt_helper.rb
|
81
|
+
- app/models
|
82
|
+
- app/models/subscription.rb
|
83
|
+
- app/models/user_notify.rb
|
84
|
+
- app/models/mail_notify.rb
|
85
|
+
- app/models/elt.rb
|
86
|
+
- app/models/person.rb
|
87
|
+
- app/models/mail.rb
|
88
|
+
- app/models/user.rb
|
89
|
+
- app/models/choice.rb
|
90
|
+
- app/models/person_mail.rb
|
91
|
+
- app/models/person_notify.rb
|
92
|
+
- app/models/old_visit.rb
|
93
|
+
- app/models/visit.rb
|
94
|
+
- app/controllers
|
95
|
+
- app/controllers/application.rb
|
96
|
+
- app/controllers/elt_controller.rb
|
97
|
+
- app/controllers/subscriber_controller.rb
|
98
|
+
- app/controllers/account_controller.rb
|
99
|
+
- app/controllers/person_controller.rb
|
97
100
|
- config/environments
|
98
|
-
- config/environments/development.rb
|
99
|
-
- config/environments/production.rb
|
100
101
|
- config/environments/test.rb
|
102
|
+
- config/environments/development.rb
|
101
103
|
- config/environments/user_environment.rb
|
102
|
-
- config/
|
104
|
+
- config/environments/production.rb
|
103
105
|
- config/routes.rb
|
104
106
|
- config/boot.rb
|
107
|
+
- config/database.yml
|
105
108
|
- config/environment.rb
|
106
|
-
- db/schema.sql
|
107
109
|
- db/migrate
|
110
|
+
- db/migrate/009_add_person_last_login.rb
|
111
|
+
- db/migrate/007_create_visits.rb
|
108
112
|
- db/migrate/005_filter_mail.rb
|
109
113
|
- db/migrate/001_create_choices.rb
|
110
|
-
- db/migrate/002_nested_set.rb
|
111
|
-
- db/migrate/003_elt_children_count.rb
|
112
114
|
- db/migrate/004_people_image.rb
|
115
|
+
- db/migrate/003_elt_children_count.rb
|
113
116
|
- db/migrate/006_last_activity.rb
|
117
|
+
- db/migrate/008_create_old_visits.rb
|
118
|
+
- db/migrate/002_nested_set.rb
|
119
|
+
- db/development_structure.sql
|
120
|
+
- db/schema.sql
|
114
121
|
- db/ROOT
|
115
|
-
- db/ROOT/
|
116
|
-
- db/ROOT/
|
122
|
+
- db/ROOT/parleR.txt
|
123
|
+
- db/ROOT/Titemagli.txt
|
117
124
|
- db/ROOT/parlement
|
118
|
-
- db/ROOT/parlement/ddRing.txt
|
119
|
-
- db/ROOT/parlement/our-constitution.txt
|
120
|
-
- db/ROOT/parlement/test.txt
|
121
125
|
- db/ROOT/parlement/Security
|
122
126
|
- db/ROOT/parlement/Security/anonymity.txt
|
123
|
-
- db/ROOT/parlement/top-politics.txt
|
124
|
-
- db/ROOT/parlement/security.txt
|
125
|
-
- db/ROOT/parlement/news.txt
|
126
127
|
- db/ROOT/parlement/News
|
127
|
-
- db/ROOT/parlement/News/Version_01.txt
|
128
|
-
- db/ROOT/parlement/News/Version_02.txt
|
129
|
-
- db/ROOT/parlement/News/Version_07.txt
|
130
|
-
- db/ROOT/parlement/News/Version_04.txt
|
131
|
-
- db/ROOT/parlement/News/Version_08.txt
|
132
128
|
- db/ROOT/parlement/News/Version_06.txt
|
133
129
|
- db/ROOT/parlement/News/Version_05.txt
|
130
|
+
- db/ROOT/parlement/News/Version_04.txt
|
131
|
+
- db/ROOT/parlement/News/Version_01.txt
|
132
|
+
- db/ROOT/parlement/News/Version_07.txt
|
134
133
|
- db/ROOT/parlement/News/Version_03.txt
|
135
|
-
- db/ROOT/
|
136
|
-
- db/ROOT/
|
134
|
+
- db/ROOT/parlement/News/Version_02.txt
|
135
|
+
- db/ROOT/parlement/News/Version_08.txt
|
136
|
+
- db/ROOT/parlement/ddRing.txt
|
137
|
+
- db/ROOT/parlement/news.txt
|
138
|
+
- db/ROOT/parlement/top-politics.txt
|
139
|
+
- db/ROOT/parlement/test.txt
|
140
|
+
- db/ROOT/parlement/security.txt
|
141
|
+
- db/ROOT/parlement/our-constitution.txt
|
137
142
|
- db/ROOT/mail.txt
|
138
|
-
- db/
|
143
|
+
- db/ROOT/fr.txt
|
144
|
+
- db/ROOT/parlement.txt
|
145
|
+
- db/ROOT/titemagli.txt
|
146
|
+
- db/ROOT/perso
|
139
147
|
- db/schema.rb
|
140
148
|
- lib/user_system.rb
|
141
|
-
- lib/data_import.rb
|
142
|
-
- lib/localizer.rb
|
143
149
|
- lib/localization.rb
|
150
|
+
- lib/localizer.rb
|
151
|
+
- lib/data_import.rb
|
144
152
|
- lib/login_system.rb
|
145
153
|
- lib/tasks
|
146
154
|
- public/oldindex.html
|
147
|
-
- public/404.html
|
148
|
-
- public/favicon.png
|
149
155
|
- public/dispatch.rb
|
150
156
|
- public/dispatch.fcgi
|
151
|
-
- public/
|
157
|
+
- public/404.html
|
152
158
|
- public/robots.txt
|
153
|
-
- public/dispatch.cgi
|
154
159
|
- public/favicon.ico
|
155
|
-
- public/
|
156
|
-
- public/
|
157
|
-
- public/
|
158
|
-
- public/images/
|
159
|
-
- public/images/vote_plus_minus.svg
|
160
|
-
- public/images/world.png
|
160
|
+
- public/500.html
|
161
|
+
- public/favicon.png
|
162
|
+
- public/dispatch.cgi
|
163
|
+
- public/images/ParlementLogo_fr.png
|
161
164
|
- public/images/live_tree_leaf_icon.gif
|
162
|
-
- public/images/
|
163
|
-
- public/images/eltBackground.svg
|
165
|
+
- public/images/vote_plus_minus.svg
|
164
166
|
- public/images/live_tree_branch_expanded_icon.gif
|
165
|
-
- public/images/
|
166
|
-
- public/images/
|
167
|
-
- public/images/
|
167
|
+
- public/images/ParlementLogo.png
|
168
|
+
- public/images/image
|
169
|
+
- public/images/eltBackground.svg
|
168
170
|
- public/images/write.png
|
169
|
-
- public/images/
|
171
|
+
- public/images/write.svg
|
172
|
+
- public/images/world.svg
|
170
173
|
- public/images/live_tree_loading_spinner.gif
|
171
|
-
- public/images/
|
172
|
-
- public/images/ParlementLogo_fr.png
|
174
|
+
- public/images/rails.png
|
173
175
|
- public/images/live_tree_branch_collapsed_icon.gif
|
176
|
+
- public/images/vote_plus.png
|
177
|
+
- public/images/feed-icon-28x28.png
|
178
|
+
- public/images/eltBackground.jng
|
179
|
+
- public/images/vote_minus.png
|
180
|
+
- public/images/feed-icon-14x14.png
|
181
|
+
- public/images/Sleep-Deprivation-5.JPG
|
182
|
+
- public/images/world.png
|
174
183
|
- public/engine_files/README
|
175
184
|
- public/engine_files/login_engine
|
176
185
|
- public/engine_files/login_engine/stylesheets
|
177
186
|
- public/engine_files/login_engine/stylesheets/login_engine.css
|
178
|
-
- public/javascripts/dragdrop.js
|
179
187
|
- public/javascripts/blank.gif
|
180
|
-
- public/javascripts/
|
181
|
-
- public/javascripts/behaviour.js
|
188
|
+
- public/javascripts/scriptaculous.js
|
182
189
|
- public/javascripts/ie7-load.htc
|
190
|
+
- public/javascripts/effects.js
|
183
191
|
- public/javascripts/ie7.js
|
184
|
-
- public/javascripts/
|
192
|
+
- public/javascripts/behaviour.js
|
193
|
+
- public/javascripts/controls.js
|
194
|
+
- public/javascripts/live_tree.js
|
195
|
+
- public/javascripts/dragdrop.js
|
185
196
|
- public/javascripts/prototype.js
|
186
197
|
- public/javascripts/mybehaviour.js
|
187
|
-
- public/javascripts/
|
188
|
-
- public/javascripts/live_tree.js
|
189
|
-
- public/javascripts/scriptaculous.js
|
198
|
+
- public/javascripts/application.js
|
190
199
|
- public/javascripts/slider.js
|
191
|
-
- public/stylesheets/default.css
|
192
200
|
- public/stylesheets/scaffold.css
|
193
201
|
- public/stylesheets/live_tree.css
|
194
|
-
-
|
202
|
+
- public/stylesheets/default.css
|
203
|
+
- script/plugin
|
195
204
|
- script/runner
|
196
|
-
- script/breakpointer
|
197
205
|
- script/server
|
206
|
+
- script/destroy
|
198
207
|
- script/create_db
|
199
|
-
- script/
|
208
|
+
- script/console
|
209
|
+
- script/profiler
|
200
210
|
- script/about
|
201
|
-
- script/process
|
202
|
-
- script/performance
|
203
211
|
- script/benchmarker
|
204
|
-
- script/
|
205
|
-
- script/
|
206
|
-
- script/
|
212
|
+
- script/breakpointer
|
213
|
+
- script/performance
|
214
|
+
- script/generate
|
215
|
+
- script/process
|
207
216
|
- vendor/plugins
|
217
|
+
- vendor/plugins/google_analytics
|
218
|
+
- vendor/plugins/google_analytics/lib
|
219
|
+
- vendor/plugins/google_analytics/lib/rubaidh
|
220
|
+
- vendor/plugins/google_analytics/lib/rubaidh/google_analytics.rb
|
221
|
+
- vendor/plugins/google_analytics/test
|
222
|
+
- vendor/plugins/google_analytics/test/google_analytics_test.rb
|
223
|
+
- vendor/plugins/google_analytics/README
|
224
|
+
- vendor/plugins/google_analytics/init.rb
|
225
|
+
- vendor/plugins/google_analytics/Rakefile
|
226
|
+
- vendor/plugins/responds_to_parent
|
227
|
+
- vendor/plugins/responds_to_parent/lib
|
228
|
+
- vendor/plugins/responds_to_parent/lib/responds_to_parent.rb
|
229
|
+
- vendor/plugins/responds_to_parent/test
|
230
|
+
- vendor/plugins/responds_to_parent/test/responds_to_parent_test.rb
|
231
|
+
- vendor/plugins/responds_to_parent/README
|
232
|
+
- vendor/plugins/responds_to_parent/init.rb
|
233
|
+
- vendor/plugins/responds_to_parent/MIT-LICENSE
|
234
|
+
- vendor/plugins/responds_to_parent/Rakefile
|
235
|
+
- vendor/plugins/file_column
|
236
|
+
- vendor/plugins/file_column/lib
|
237
|
+
- vendor/plugins/file_column/lib/validations.rb
|
238
|
+
- vendor/plugins/file_column/lib/file_column_helper.rb
|
239
|
+
- vendor/plugins/file_column/lib/rails_file_column.rb
|
240
|
+
- vendor/plugins/file_column/lib/file_column.rb
|
241
|
+
- vendor/plugins/file_column/lib/magick_file_column.rb
|
242
|
+
- vendor/plugins/file_column/lib/file_compat.rb
|
243
|
+
- vendor/plugins/file_column/CHANGELOG
|
244
|
+
- vendor/plugins/file_column/test
|
245
|
+
- vendor/plugins/file_column/test/abstract_unit.rb
|
246
|
+
- vendor/plugins/file_column/test/fixtures
|
247
|
+
- vendor/plugins/file_column/test/fixtures/kerb.jpg
|
248
|
+
- vendor/plugins/file_column/test/fixtures/mysql.sql
|
249
|
+
- vendor/plugins/file_column/test/fixtures/skanthak.png
|
250
|
+
- vendor/plugins/file_column/test/fixtures/invalid-image.jpg
|
251
|
+
- vendor/plugins/file_column/test/fixtures/schema.rb
|
252
|
+
- vendor/plugins/file_column/test/fixtures/entry.rb
|
253
|
+
- vendor/plugins/file_column/test/file_column_test.rb
|
254
|
+
- vendor/plugins/file_column/test/public
|
255
|
+
- vendor/plugins/file_column/test/file_column_helper_test.rb
|
256
|
+
- vendor/plugins/file_column/test/magick_view_only_test.rb
|
257
|
+
- vendor/plugins/file_column/test/connection.rb
|
258
|
+
- vendor/plugins/file_column/test/magick_test.rb
|
259
|
+
- vendor/plugins/file_column/README
|
260
|
+
- vendor/plugins/file_column/TODO
|
261
|
+
- vendor/plugins/file_column/init.rb
|
262
|
+
- vendor/plugins/file_column/Rakefile
|
208
263
|
- vendor/plugins/engines
|
209
|
-
- vendor/plugins/engines/Rakefile
|
210
264
|
- vendor/plugins/engines/lib
|
265
|
+
- vendor/plugins/engines/lib/engines.rb
|
211
266
|
- vendor/plugins/engines/lib/engines
|
212
|
-
- vendor/plugins/engines/lib/engines/
|
267
|
+
- vendor/plugins/engines/lib/engines/rails_extensions.rb
|
268
|
+
- vendor/plugins/engines/lib/engines/plugin_list.rb
|
269
|
+
- vendor/plugins/engines/lib/engines/testing.rb
|
213
270
|
- vendor/plugins/engines/lib/engines/rails_extensions
|
271
|
+
- vendor/plugins/engines/lib/engines/rails_extensions/migrations.rb
|
214
272
|
- vendor/plugins/engines/lib/engines/rails_extensions/routing.rb
|
215
|
-
- vendor/plugins/engines/lib/engines/rails_extensions/rails_initializer.rb
|
216
273
|
- vendor/plugins/engines/lib/engines/rails_extensions/templates.rb
|
274
|
+
- vendor/plugins/engines/lib/engines/rails_extensions/rails_initializer.rb
|
275
|
+
- vendor/plugins/engines/lib/engines/rails_extensions/active_record.rb
|
276
|
+
- vendor/plugins/engines/lib/engines/rails_extensions/dependencies.rb
|
217
277
|
- vendor/plugins/engines/lib/engines/rails_extensions/rails.rb
|
218
278
|
- vendor/plugins/engines/lib/engines/rails_extensions/public_asset_helpers.rb
|
219
|
-
- vendor/plugins/engines/lib/engines/rails_extensions/migrations.rb
|
220
|
-
- vendor/plugins/engines/lib/engines/rails_extensions/dependencies.rb
|
221
|
-
- vendor/plugins/engines/lib/engines/rails_extensions/active_record.rb
|
222
|
-
- vendor/plugins/engines/lib/engines/testing.rb
|
223
279
|
- vendor/plugins/engines/lib/engines/plugin_migrator.rb
|
224
280
|
- vendor/plugins/engines/lib/engines/deprecated_config_support.rb
|
225
|
-
- vendor/plugins/engines/lib/engines/
|
226
|
-
- vendor/plugins/engines/lib/engines/plugin_list.rb
|
227
|
-
- vendor/plugins/engines/lib/engines.rb
|
228
|
-
- vendor/plugins/engines/about.yml
|
229
|
-
- vendor/plugins/engines/UPGRADING
|
281
|
+
- vendor/plugins/engines/lib/engines/plugin.rb
|
230
282
|
- vendor/plugins/engines/CHANGELOG
|
283
|
+
- vendor/plugins/engines/about.yml
|
231
284
|
- vendor/plugins/engines/README
|
232
|
-
- vendor/plugins/engines/init.rb
|
233
285
|
- vendor/plugins/engines/install.rb
|
286
|
+
- vendor/plugins/engines/init.rb
|
287
|
+
- vendor/plugins/engines/MIT-LICENSE
|
288
|
+
- vendor/plugins/engines/UPGRADING
|
289
|
+
- vendor/plugins/engines/Rakefile
|
234
290
|
- vendor/plugins/engines/tasks
|
235
291
|
- vendor/plugins/engines/tasks/engines.rake
|
236
292
|
- vendor/plugins/engines/generators
|
237
293
|
- vendor/plugins/engines/generators/plugin_migration
|
238
|
-
- vendor/plugins/engines/generators/plugin_migration/plugin_migration_generator.rb
|
239
|
-
- vendor/plugins/engines/generators/plugin_migration/USAGE
|
240
294
|
- vendor/plugins/engines/generators/plugin_migration/templates
|
241
295
|
- vendor/plugins/engines/generators/plugin_migration/templates/plugin_migration.erb
|
242
|
-
- vendor/plugins/engines/
|
243
|
-
- vendor/plugins/
|
244
|
-
- vendor/plugins/file_column/Rakefile
|
245
|
-
- vendor/plugins/file_column/test
|
246
|
-
- vendor/plugins/file_column/test/magick_test.rb
|
247
|
-
- vendor/plugins/file_column/test/fixtures
|
248
|
-
- vendor/plugins/file_column/test/fixtures/invalid-image.jpg
|
249
|
-
- vendor/plugins/file_column/test/fixtures/mysql.sql
|
250
|
-
- vendor/plugins/file_column/test/fixtures/entry.rb
|
251
|
-
- vendor/plugins/file_column/test/fixtures/kerb.jpg
|
252
|
-
- vendor/plugins/file_column/test/fixtures/skanthak.png
|
253
|
-
- vendor/plugins/file_column/test/fixtures/schema.rb
|
254
|
-
- vendor/plugins/file_column/test/magick_view_only_test.rb
|
255
|
-
- vendor/plugins/file_column/test/file_column_helper_test.rb
|
256
|
-
- vendor/plugins/file_column/test/public
|
257
|
-
- vendor/plugins/file_column/test/abstract_unit.rb
|
258
|
-
- vendor/plugins/file_column/test/connection.rb
|
259
|
-
- vendor/plugins/file_column/test/file_column_test.rb
|
260
|
-
- vendor/plugins/file_column/lib
|
261
|
-
- vendor/plugins/file_column/lib/file_column.rb
|
262
|
-
- vendor/plugins/file_column/lib/file_column_helper.rb
|
263
|
-
- vendor/plugins/file_column/lib/validations.rb
|
264
|
-
- vendor/plugins/file_column/lib/rails_file_column.rb
|
265
|
-
- vendor/plugins/file_column/lib/magick_file_column.rb
|
266
|
-
- vendor/plugins/file_column/lib/file_compat.rb
|
267
|
-
- vendor/plugins/file_column/CHANGELOG
|
268
|
-
- vendor/plugins/file_column/README
|
269
|
-
- vendor/plugins/file_column/init.rb
|
270
|
-
- vendor/plugins/file_column/TODO
|
271
|
-
- vendor/plugins/google_analytics
|
272
|
-
- vendor/plugins/google_analytics/Rakefile
|
273
|
-
- vendor/plugins/google_analytics/test
|
274
|
-
- vendor/plugins/google_analytics/test/google_analytics_test.rb
|
275
|
-
- vendor/plugins/google_analytics/lib
|
276
|
-
- vendor/plugins/google_analytics/lib/rubaidh
|
277
|
-
- vendor/plugins/google_analytics/lib/rubaidh/google_analytics.rb
|
278
|
-
- vendor/plugins/google_analytics/README
|
279
|
-
- vendor/plugins/google_analytics/init.rb
|
280
|
-
- vendor/plugins/responds_to_parent
|
281
|
-
- vendor/plugins/responds_to_parent/Rakefile
|
282
|
-
- vendor/plugins/responds_to_parent/test
|
283
|
-
- vendor/plugins/responds_to_parent/test/responds_to_parent_test.rb
|
284
|
-
- vendor/plugins/responds_to_parent/lib
|
285
|
-
- vendor/plugins/responds_to_parent/lib/responds_to_parent.rb
|
286
|
-
- vendor/plugins/responds_to_parent/README
|
287
|
-
- vendor/plugins/responds_to_parent/init.rb
|
288
|
-
- vendor/plugins/responds_to_parent/MIT-LICENSE
|
296
|
+
- vendor/plugins/engines/generators/plugin_migration/plugin_migration_generator.rb
|
297
|
+
- vendor/plugins/engines/generators/plugin_migration/USAGE
|
289
298
|
- vendor/plugins/output_compression
|
290
|
-
- vendor/plugins/output_compression/test
|
291
|
-
- vendor/plugins/output_compression/test/test_helper.rb
|
292
|
-
- vendor/plugins/output_compression/test/test_controller.rb
|
293
|
-
- vendor/plugins/output_compression/test/output_test.rb
|
294
299
|
- vendor/plugins/output_compression/lib
|
295
300
|
- vendor/plugins/output_compression/lib/output_compression.rb
|
296
|
-
- vendor/plugins/output_compression/rakefile
|
297
301
|
- vendor/plugins/output_compression/CHANGELOG
|
302
|
+
- vendor/plugins/output_compression/test
|
303
|
+
- vendor/plugins/output_compression/test/output_test.rb
|
304
|
+
- vendor/plugins/output_compression/test/test_helper.rb
|
305
|
+
- vendor/plugins/output_compression/test/test_controller.rb
|
298
306
|
- vendor/plugins/output_compression/README
|
307
|
+
- vendor/plugins/output_compression/rakefile
|
299
308
|
- vendor/plugins/output_compression/init.rb
|
300
309
|
- vendor/plugins/output_compression/MIT-LICENSE
|
301
310
|
- vendor/plugins/login_engine
|
311
|
+
- vendor/plugins/login_engine/init_engine.rb
|
312
|
+
- vendor/plugins/login_engine/db
|
313
|
+
- vendor/plugins/login_engine/db/migrate
|
314
|
+
- vendor/plugins/login_engine/db/migrate/001_initial_schema.rb
|
315
|
+
- vendor/plugins/login_engine/public
|
316
|
+
- vendor/plugins/login_engine/public/stylesheets
|
317
|
+
- vendor/plugins/login_engine/public/stylesheets/login_engine.css
|
318
|
+
- vendor/plugins/login_engine/lib
|
319
|
+
- vendor/plugins/login_engine/lib/login_engine
|
320
|
+
- vendor/plugins/login_engine/lib/login_engine/authenticated_system.rb
|
321
|
+
- vendor/plugins/login_engine/lib/login_engine/authenticated_user.rb
|
322
|
+
- vendor/plugins/login_engine/lib/login_engine.rb
|
323
|
+
- vendor/plugins/login_engine/CHANGELOG
|
302
324
|
- vendor/plugins/login_engine/test
|
303
325
|
- vendor/plugins/login_engine/test/fixtures
|
304
326
|
- vendor/plugins/login_engine/test/fixtures/users.yml
|
327
|
+
- vendor/plugins/login_engine/test/functional
|
328
|
+
- vendor/plugins/login_engine/test/functional/user_controller_test.rb
|
305
329
|
- vendor/plugins/login_engine/test/test_helper.rb
|
306
|
-
- vendor/plugins/login_engine/test/unit
|
307
|
-
- vendor/plugins/login_engine/test/unit/user_test.rb
|
308
330
|
- vendor/plugins/login_engine/test/mocks
|
309
|
-
- vendor/plugins/login_engine/test/mocks/time.rb
|
310
331
|
- vendor/plugins/login_engine/test/mocks/mail.rb
|
311
|
-
- vendor/plugins/login_engine/test/
|
312
|
-
- vendor/plugins/login_engine/test/
|
313
|
-
- vendor/plugins/login_engine/
|
314
|
-
- vendor/plugins/login_engine/lib/login_engine.rb
|
315
|
-
- vendor/plugins/login_engine/lib/login_engine
|
316
|
-
- vendor/plugins/login_engine/lib/login_engine/authenticated_system.rb
|
317
|
-
- vendor/plugins/login_engine/lib/login_engine/authenticated_user.rb
|
318
|
-
- vendor/plugins/login_engine/CHANGELOG
|
332
|
+
- vendor/plugins/login_engine/test/mocks/time.rb
|
333
|
+
- vendor/plugins/login_engine/test/unit
|
334
|
+
- vendor/plugins/login_engine/test/unit/user_test.rb
|
319
335
|
- vendor/plugins/login_engine/README
|
336
|
+
- vendor/plugins/login_engine/install.rb
|
320
337
|
- vendor/plugins/login_engine/app
|
321
|
-
- vendor/plugins/login_engine/app/models
|
322
|
-
- vendor/plugins/login_engine/app/models/user_notify.rb
|
323
|
-
- vendor/plugins/login_engine/app/models/user.rb
|
324
|
-
- vendor/plugins/login_engine/app/controllers
|
325
|
-
- vendor/plugins/login_engine/app/controllers/user_controller.rb
|
326
338
|
- vendor/plugins/login_engine/app/views
|
327
|
-
- vendor/plugins/login_engine/app/views/user_notify
|
328
|
-
- vendor/plugins/login_engine/app/views/user_notify/pending_delete.rhtml
|
329
|
-
- vendor/plugins/login_engine/app/views/user_notify/delete.rhtml
|
330
|
-
- vendor/plugins/login_engine/app/views/user_notify/change_password.rhtml
|
331
|
-
- vendor/plugins/login_engine/app/views/user_notify/forgot_password.rhtml
|
332
|
-
- vendor/plugins/login_engine/app/views/user_notify/signup.rhtml
|
333
339
|
- vendor/plugins/login_engine/app/views/user
|
334
|
-
- vendor/plugins/login_engine/app/views/user/login.rhtml
|
335
|
-
- vendor/plugins/login_engine/app/views/user/home.rhtml
|
336
|
-
- vendor/plugins/login_engine/app/views/user/edit.rhtml
|
337
|
-
- vendor/plugins/login_engine/app/views/user/logout.rhtml
|
338
340
|
- vendor/plugins/login_engine/app/views/user/change_password.rhtml
|
339
341
|
- vendor/plugins/login_engine/app/views/user/forgot_password.rhtml
|
342
|
+
- vendor/plugins/login_engine/app/views/user/home.rhtml
|
340
343
|
- vendor/plugins/login_engine/app/views/user/_edit.rhtml
|
341
|
-
- vendor/plugins/login_engine/app/views/user/
|
344
|
+
- vendor/plugins/login_engine/app/views/user/login.rhtml
|
345
|
+
- vendor/plugins/login_engine/app/views/user/edit.rhtml
|
346
|
+
- vendor/plugins/login_engine/app/views/user/logout.rhtml
|
342
347
|
- vendor/plugins/login_engine/app/views/user/_password.rhtml
|
348
|
+
- vendor/plugins/login_engine/app/views/user/signup.rhtml
|
349
|
+
- vendor/plugins/login_engine/app/views/user_notify
|
350
|
+
- vendor/plugins/login_engine/app/views/user_notify/change_password.rhtml
|
351
|
+
- vendor/plugins/login_engine/app/views/user_notify/forgot_password.rhtml
|
352
|
+
- vendor/plugins/login_engine/app/views/user_notify/pending_delete.rhtml
|
353
|
+
- vendor/plugins/login_engine/app/views/user_notify/delete.rhtml
|
354
|
+
- vendor/plugins/login_engine/app/views/user_notify/signup.rhtml
|
343
355
|
- vendor/plugins/login_engine/app/helpers
|
344
356
|
- vendor/plugins/login_engine/app/helpers/user_helper.rb
|
345
|
-
- vendor/plugins/login_engine/
|
346
|
-
- vendor/plugins/login_engine/
|
347
|
-
- vendor/plugins/login_engine/
|
348
|
-
- vendor/plugins/login_engine/
|
349
|
-
- vendor/plugins/login_engine/
|
350
|
-
- vendor/plugins/login_engine/public/stylesheets
|
351
|
-
- vendor/plugins/login_engine/public/stylesheets/login_engine.css
|
352
|
-
- vendor/plugins/login_engine/init_engine.rb
|
357
|
+
- vendor/plugins/login_engine/app/models
|
358
|
+
- vendor/plugins/login_engine/app/models/user_notify.rb
|
359
|
+
- vendor/plugins/login_engine/app/models/user.rb
|
360
|
+
- vendor/plugins/login_engine/app/controllers
|
361
|
+
- vendor/plugins/login_engine/app/controllers/user_controller.rb
|
353
362
|
test_files:
|
354
|
-
- test/unit/
|
355
|
-
- test/unit/
|
356
|
-
- test/unit/mail_test.rb
|
363
|
+
- test/unit/visit_test.rb
|
364
|
+
- test/unit/person_test.rb
|
357
365
|
- test/unit/choice_test.rb
|
366
|
+
- test/unit/elt_test.rb
|
367
|
+
- test/unit/attachment_test.rb
|
358
368
|
- test/unit/subscriber_test.rb
|
359
|
-
- test/unit/
|
369
|
+
- test/unit/mail_test.rb
|
370
|
+
- test/unit/mail_notify_test.rb
|
360
371
|
- test/unit/person_notify_test.rb
|
361
|
-
- test/unit/elt_test.rb
|
362
372
|
rdoc_options: []
|
363
373
|
|
364
374
|
extra_rdoc_files: []
|
data/public/images/webfeed.gif
DELETED
Binary file
|