parlement 0.14 → 0.17
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 +41 -1
- data/MEMORY +66 -5
- data/README +10 -5
- data/Rakefile +15 -23
- data/app/controllers/account_controller.rb +48 -43
- data/app/controllers/{application.rb → application_controller.rb} +15 -12
- data/app/controllers/elt_controller.rb +77 -32
- data/app/controllers/subscriber_controller.rb +11 -10
- data/app/helpers/application_helper.rb +14 -1
- data/app/helpers/elt_helper.rb +9 -7
- data/app/models/elt.rb +25 -24
- data/app/models/mail.rb +44 -47
- data/app/models/person_notify.rb +2 -2
- data/app/models/user.rb +128 -2
- data/app/models/user_notify.rb +15 -15
- data/app/views/account/_login.rhtml +39 -39
- data/app/views/account/_show.rhtml +22 -30
- data/app/views/account/signup.rhtml +2 -2
- data/app/views/elt/_choice.rhtml +6 -6
- data/app/views/elt/_elt.rhtml +27 -32
- data/app/views/elt/choices.rhtml +16 -18
- data/app/views/elt/list/_byDate.rhtml +14 -14
- data/app/views/elt/list/_byVote.rhtml +15 -15
- data/app/views/elt/list/_children.rhtml +48 -40
- data/app/views/elt/list/_subscribers.rhtml +1 -1
- data/app/views/elt/new.rhtml +22 -21
- data/app/views/elt/rss.rxml +4 -11
- data/app/views/elt/show.rhtml +65 -61
- data/app/views/elt/vote_rss.rxml +4 -11
- data/app/views/layouts/top.rhtml +39 -50
- data/app/views/person/_listElts.rhtml +1 -1
- data/app/views/person/show.rhtml +1 -1
- data/{vendor/plugins/login_engine/app → app}/views/user_notify/change_password.rhtml +0 -0
- data/{vendor/plugins/login_engine/app → app}/views/user_notify/delete.rhtml +0 -0
- data/{vendor/plugins/login_engine/app → app}/views/user_notify/forgot_password.rhtml +0 -0
- data/{vendor/plugins/login_engine/app → app}/views/user_notify/pending_delete.rhtml +0 -0
- data/{vendor/plugins/login_engine/app → app}/views/user_notify/signup.rhtml +0 -0
- data/config/boot.rb +97 -32
- data/config/environment.rb +37 -35
- data/config/environments/development.rb +2 -3
- data/config/environments/production.rb +3 -0
- data/config/initializers/string_ruby_1.8.rb +10 -0
- data/config/routes.rb +17 -22
- data/db/schema.rb +102 -74
- data/lib/tasks/rspec.rake +167 -0
- data/public/404.html +25 -7
- data/public/500.html +26 -7
- data/public/dispatch.cgi +0 -0
- data/public/dispatch.fcgi +0 -0
- data/public/dispatch.rb +0 -0
- data/public/images/live_tree_branch_collapsed_icon.gif +0 -0
- data/public/images/live_tree_branch_expanded_icon.gif +0 -0
- data/public/images/live_tree_leaf_icon.gif +0 -0
- data/public/javascripts/application.js +258 -0
- data/public/javascripts/controls.js +544 -414
- data/public/javascripts/dragdrop.js +229 -198
- data/public/javascripts/effects.js +499 -459
- data/public/javascripts/prototype.js +2926 -1121
- data/public/javascripts/shadedborder.js +68 -50
- data/public/stylesheets/default.css +34 -34
- data/public/stylesheets/live_tree.css +0 -0
- data/public/stylesheets/scaffold.css +6 -6
- data/script/about +0 -0
- data/script/autospec +6 -0
- data/script/benchmarker +0 -0
- data/script/breakpointer +0 -0
- data/script/console +0 -0
- data/script/dbconsole +3 -0
- data/script/destroy +0 -0
- data/script/generate +0 -0
- data/script/plugin +0 -0
- data/script/profiler +0 -0
- data/script/runner +0 -0
- data/script/server +0 -0
- data/script/spec +10 -0
- data/script/spec_server +9 -0
- data/test/unit/attachment_test.rb +4 -4
- data/test/unit/choice_test.rb +1 -1
- data/test/unit/elt_test.rb +9 -9
- data/test/unit/mail_notify_test.rb +2 -2
- data/test/unit/mail_test.rb +18 -11
- data/test/unit/person_notify_test.rb +1 -1
- data/test/unit/person_test.rb +1 -1
- data/test/unit/subscriber_test.rb +1 -1
- data/test/unit/user_test.rb +81 -0
- data/test/unit/visit_test.rb +6 -6
- data/vendor/plugins/activerecord_foreign_key_extensions/init.rb +2 -0
- data/vendor/plugins/activerecord_foreign_key_extensions/lib/active_record_extensions.rb +182 -0
- data/vendor/plugins/activerecord_text_id_extensions/init.rb +2 -0
- data/vendor/plugins/activerecord_text_id_extensions/lib/active_record_extensions.rb +24 -0
- data/vendor/plugins/acts_as_nested_set/README +15 -0
- data/vendor/plugins/acts_as_nested_set/init.rb +1 -0
- data/vendor/plugins/acts_as_nested_set/lib/active_record/acts/nested_set.rb +210 -0
- data/vendor/plugins/acts_as_nested_set/test/nested_set_test.rb +269 -0
- data/vendor/plugins/acts_as_tree/README +26 -0
- data/vendor/plugins/acts_as_tree/Rakefile +22 -0
- data/vendor/plugins/acts_as_tree/init.rb +1 -0
- data/vendor/plugins/acts_as_tree/lib/active_record/acts/tree.rb +96 -0
- data/vendor/plugins/{output_compression/CHANGELOG → acts_as_tree/test/abstract_unit.rb} +0 -0
- data/vendor/plugins/acts_as_tree/test/acts_as_tree_test.rb +219 -0
- data/vendor/plugins/acts_as_tree/test/database.yml +0 -0
- data/vendor/plugins/acts_as_tree/test/fixtures/mixin.rb +0 -0
- data/vendor/plugins/acts_as_tree/test/fixtures/mixins.yml +0 -0
- data/vendor/plugins/acts_as_tree/test/schema.rb +0 -0
- data/vendor/plugins/classic_pagination/CHANGELOG +152 -0
- data/vendor/plugins/classic_pagination/README +18 -0
- data/vendor/plugins/{output_compression/rakefile → classic_pagination/Rakefile} +22 -22
- data/vendor/plugins/classic_pagination/init.rb +33 -0
- data/vendor/plugins/classic_pagination/install.rb +1 -0
- data/vendor/plugins/classic_pagination/lib/pagination.rb +405 -0
- data/vendor/plugins/classic_pagination/lib/pagination_helper.rb +135 -0
- data/vendor/plugins/classic_pagination/test/fixtures/companies.yml +24 -0
- data/vendor/plugins/classic_pagination/test/fixtures/company.rb +9 -0
- data/vendor/plugins/classic_pagination/test/fixtures/developer.rb +7 -0
- data/vendor/plugins/classic_pagination/test/fixtures/developers.yml +21 -0
- data/vendor/plugins/classic_pagination/test/fixtures/developers_projects.yml +13 -0
- data/vendor/plugins/classic_pagination/test/fixtures/project.rb +3 -0
- data/vendor/plugins/classic_pagination/test/fixtures/projects.yml +7 -0
- data/vendor/plugins/classic_pagination/test/fixtures/replies.yml +13 -0
- data/vendor/plugins/classic_pagination/test/fixtures/reply.rb +5 -0
- data/vendor/plugins/classic_pagination/test/fixtures/schema.sql +42 -0
- data/vendor/plugins/classic_pagination/test/fixtures/topic.rb +3 -0
- data/vendor/plugins/classic_pagination/test/fixtures/topics.yml +22 -0
- data/vendor/plugins/classic_pagination/test/helper.rb +117 -0
- data/vendor/plugins/classic_pagination/test/pagination_helper_test.rb +38 -0
- data/vendor/plugins/classic_pagination/test/pagination_test.rb +177 -0
- data/vendor/plugins/file_column/lib/file_column.rb +1 -1
- data/vendor/plugins/file_column/test/file_column_test.rb +0 -0
- metadata +151 -197
- data/app/helpers/live_tree.rb +0 -238
- data/app/views/elt/_form.rhtml +0 -31
- data/app/views/elt/show_tree.rhtml +0 -8
- data/config/environments/user_environment.rb +0 -1
- data/db/ROOT/Titemagli.txt +0 -3
- data/db/ROOT/titemagli.txt +0 -9
- data/public/javascripts/behaviour.js +0 -254
- data/public/javascripts/ie7-load.htc +0 -1
- data/public/javascripts/ie7.js +0 -6
- data/public/javascripts/live_tree.js +0 -749
- data/public/javascripts/mybehaviour.js +0 -225
- data/public/javascripts/scriptaculous.js +0 -47
- data/public/javascripts/slider.js +0 -283
- data/public/stylesheets/blue.css +0 -471
- data/vendor/plugins/engines/CHANGELOG +0 -241
- data/vendor/plugins/engines/MIT-LICENSE +0 -21
- data/vendor/plugins/engines/README +0 -64
- data/vendor/plugins/engines/Rakefile +0 -32
- data/vendor/plugins/engines/UPGRADING +0 -93
- data/vendor/plugins/engines/about.yml +0 -7
- data/vendor/plugins/engines/generators/plugin_migration/USAGE +0 -45
- data/vendor/plugins/engines/generators/plugin_migration/plugin_migration_generator.rb +0 -79
- data/vendor/plugins/engines/generators/plugin_migration/templates/plugin_migration.erb +0 -13
- data/vendor/plugins/engines/init.rb +0 -40
- data/vendor/plugins/engines/install.rb +0 -32
- data/vendor/plugins/engines/lib/engines.rb +0 -323
- data/vendor/plugins/engines/lib/engines/deprecated_config_support.rb +0 -135
- data/vendor/plugins/engines/lib/engines/plugin.rb +0 -214
- data/vendor/plugins/engines/lib/engines/plugin_list.rb +0 -31
- data/vendor/plugins/engines/lib/engines/plugin_migrator.rb +0 -60
- data/vendor/plugins/engines/lib/engines/rails_extensions.rb +0 -6
- data/vendor/plugins/engines/lib/engines/rails_extensions/active_record.rb +0 -19
- data/vendor/plugins/engines/lib/engines/rails_extensions/dependencies.rb +0 -143
- data/vendor/plugins/engines/lib/engines/rails_extensions/migrations.rb +0 -155
- data/vendor/plugins/engines/lib/engines/rails_extensions/public_asset_helpers.rb +0 -116
- data/vendor/plugins/engines/lib/engines/rails_extensions/rails.rb +0 -20
- data/vendor/plugins/engines/lib/engines/rails_extensions/rails_initializer.rb +0 -86
- data/vendor/plugins/engines/lib/engines/rails_extensions/routing.rb +0 -77
- data/vendor/plugins/engines/lib/engines/rails_extensions/templates.rb +0 -140
- data/vendor/plugins/engines/lib/engines/testing.rb +0 -87
- data/vendor/plugins/engines/tasks/engines.rake +0 -149
- data/vendor/plugins/login_engine/CHANGELOG +0 -22
- data/vendor/plugins/login_engine/README +0 -344
- data/vendor/plugins/login_engine/app/controllers/user_controller.rb +0 -262
- data/vendor/plugins/login_engine/app/helpers/user_helper.rb +0 -88
- data/vendor/plugins/login_engine/app/models/user.rb +0 -7
- data/vendor/plugins/login_engine/app/models/user_notify.rb +0 -75
- data/vendor/plugins/login_engine/app/views/user/_edit.rhtml +0 -11
- data/vendor/plugins/login_engine/app/views/user/_password.rhtml +0 -9
- data/vendor/plugins/login_engine/app/views/user/change_password.rhtml +0 -17
- data/vendor/plugins/login_engine/app/views/user/edit.rhtml +0 -23
- data/vendor/plugins/login_engine/app/views/user/forgot_password.rhtml +0 -18
- data/vendor/plugins/login_engine/app/views/user/home.rhtml +0 -7
- data/vendor/plugins/login_engine/app/views/user/login.rhtml +0 -17
- data/vendor/plugins/login_engine/app/views/user/logout.rhtml +0 -8
- data/vendor/plugins/login_engine/app/views/user/signup.rhtml +0 -17
- data/vendor/plugins/login_engine/db/migrate/001_initial_schema.rb +0 -25
- data/vendor/plugins/login_engine/init_engine.rb +0 -11
- data/vendor/plugins/login_engine/install.rb +0 -4
- data/vendor/plugins/login_engine/lib/login_engine.rb +0 -62
- data/vendor/plugins/login_engine/lib/login_engine/authenticated_system.rb +0 -113
- data/vendor/plugins/login_engine/lib/login_engine/authenticated_user.rb +0 -155
- data/vendor/plugins/login_engine/public/stylesheets/login_engine.css +0 -81
- data/vendor/plugins/login_engine/test/fixtures/users.yml +0 -41
- data/vendor/plugins/login_engine/test/functional/user_controller_test.rb +0 -536
- data/vendor/plugins/login_engine/test/mocks/mail.rb +0 -14
- data/vendor/plugins/login_engine/test/mocks/time.rb +0 -19
- data/vendor/plugins/login_engine/test/test_helper.rb +0 -11
- data/vendor/plugins/login_engine/test/unit/user_test.rb +0 -114
- data/vendor/plugins/output_compression/MIT-LICENSE +0 -20
- data/vendor/plugins/output_compression/README +0 -4
- data/vendor/plugins/output_compression/init.rb +0 -1
- data/vendor/plugins/output_compression/lib/output_compression.rb +0 -84
- data/vendor/plugins/output_compression/test/output_test.rb +0 -11
- data/vendor/plugins/output_compression/test/test_controller.rb +0 -3
- data/vendor/plugins/output_compression/test/test_helper.rb +0 -14
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
require File.dirname(__FILE__) + '/helper'
|
|
2
|
+
require File.dirname(__FILE__) + '/../init'
|
|
3
|
+
|
|
4
|
+
class PaginationTest < ActiveRecordTestCase
|
|
5
|
+
fixtures :topics, :replies, :developers, :projects, :developers_projects
|
|
6
|
+
|
|
7
|
+
class PaginationController < ActionController::Base
|
|
8
|
+
if respond_to? :view_paths=
|
|
9
|
+
self.view_paths = [ "#{File.dirname(__FILE__)}/../fixtures/" ]
|
|
10
|
+
else
|
|
11
|
+
self.template_root = [ "#{File.dirname(__FILE__)}/../fixtures/" ]
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
def simple_paginate
|
|
15
|
+
@topic_pages, @topics = paginate(:topics)
|
|
16
|
+
render :nothing => true
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
def paginate_with_per_page
|
|
20
|
+
@topic_pages, @topics = paginate(:topics, :per_page => 1)
|
|
21
|
+
render :nothing => true
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
def paginate_with_order
|
|
25
|
+
@topic_pages, @topics = paginate(:topics, :order => 'created_at asc')
|
|
26
|
+
render :nothing => true
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
def paginate_with_order_by
|
|
30
|
+
@topic_pages, @topics = paginate(:topics, :order_by => 'created_at asc')
|
|
31
|
+
render :nothing => true
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
def paginate_with_include_and_order
|
|
35
|
+
@topic_pages, @topics = paginate(:topics, :include => :replies, :order => 'replies.created_at asc, topics.created_at asc')
|
|
36
|
+
render :nothing => true
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
def paginate_with_conditions
|
|
40
|
+
@topic_pages, @topics = paginate(:topics, :conditions => ["created_at > ?", 30.minutes.ago])
|
|
41
|
+
render :nothing => true
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
def paginate_with_class_name
|
|
45
|
+
@developer_pages, @developers = paginate(:developers, :class_name => "DeVeLoPeR")
|
|
46
|
+
render :nothing => true
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
def paginate_with_singular_name
|
|
50
|
+
@developer_pages, @developers = paginate()
|
|
51
|
+
render :nothing => true
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
def paginate_with_joins
|
|
55
|
+
@developer_pages, @developers = paginate(:developers,
|
|
56
|
+
:joins => 'LEFT JOIN developers_projects ON developers.id = developers_projects.developer_id',
|
|
57
|
+
:conditions => 'project_id=1')
|
|
58
|
+
render :nothing => true
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
def paginate_with_join
|
|
62
|
+
@developer_pages, @developers = paginate(:developers,
|
|
63
|
+
:join => 'LEFT JOIN developers_projects ON developers.id = developers_projects.developer_id',
|
|
64
|
+
:conditions => 'project_id=1')
|
|
65
|
+
render :nothing => true
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
def paginate_with_join_and_count
|
|
69
|
+
@developer_pages, @developers = paginate(:developers,
|
|
70
|
+
:join => 'd LEFT JOIN developers_projects ON d.id = developers_projects.developer_id',
|
|
71
|
+
:conditions => 'project_id=1',
|
|
72
|
+
:count => "d.id")
|
|
73
|
+
render :nothing => true
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
def paginate_with_join_and_group
|
|
77
|
+
@developer_pages, @developers = paginate(:developers,
|
|
78
|
+
:join => 'INNER JOIN developers_projects ON developers.id = developers_projects.developer_id',
|
|
79
|
+
:group => 'developers.id')
|
|
80
|
+
render :nothing => true
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
def rescue_errors(e) raise e end
|
|
84
|
+
|
|
85
|
+
def rescue_action(e) raise end
|
|
86
|
+
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
def setup
|
|
90
|
+
@controller = PaginationController.new
|
|
91
|
+
@request = ActionController::TestRequest.new
|
|
92
|
+
@response = ActionController::TestResponse.new
|
|
93
|
+
super
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
# Single Action Pagination Tests
|
|
97
|
+
|
|
98
|
+
def test_simple_paginate
|
|
99
|
+
get :simple_paginate
|
|
100
|
+
assert_equal 1, assigns(:topic_pages).page_count
|
|
101
|
+
assert_equal 3, assigns(:topics).size
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
def test_paginate_with_per_page
|
|
105
|
+
get :paginate_with_per_page
|
|
106
|
+
assert_equal 1, assigns(:topics).size
|
|
107
|
+
assert_equal 3, assigns(:topic_pages).page_count
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
def test_paginate_with_order
|
|
111
|
+
get :paginate_with_order
|
|
112
|
+
expected = [topics(:futurama),
|
|
113
|
+
topics(:harvey_birdman),
|
|
114
|
+
topics(:rails)]
|
|
115
|
+
assert_equal expected, assigns(:topics)
|
|
116
|
+
assert_equal 1, assigns(:topic_pages).page_count
|
|
117
|
+
end
|
|
118
|
+
|
|
119
|
+
def test_paginate_with_order_by
|
|
120
|
+
get :paginate_with_order
|
|
121
|
+
expected = assigns(:topics)
|
|
122
|
+
get :paginate_with_order_by
|
|
123
|
+
assert_equal expected, assigns(:topics)
|
|
124
|
+
assert_equal 1, assigns(:topic_pages).page_count
|
|
125
|
+
end
|
|
126
|
+
|
|
127
|
+
def test_paginate_with_conditions
|
|
128
|
+
get :paginate_with_conditions
|
|
129
|
+
expected = [topics(:rails)]
|
|
130
|
+
assert_equal expected, assigns(:topics)
|
|
131
|
+
assert_equal 1, assigns(:topic_pages).page_count
|
|
132
|
+
end
|
|
133
|
+
|
|
134
|
+
def test_paginate_with_class_name
|
|
135
|
+
get :paginate_with_class_name
|
|
136
|
+
|
|
137
|
+
assert assigns(:developers).size > 0
|
|
138
|
+
assert_equal DeVeLoPeR, assigns(:developers).first.class
|
|
139
|
+
end
|
|
140
|
+
|
|
141
|
+
def test_paginate_with_joins
|
|
142
|
+
get :paginate_with_joins
|
|
143
|
+
assert_equal 2, assigns(:developers).size
|
|
144
|
+
developer_names = assigns(:developers).map { |d| d.name }
|
|
145
|
+
assert developer_names.include?('David')
|
|
146
|
+
assert developer_names.include?('Jamis')
|
|
147
|
+
end
|
|
148
|
+
|
|
149
|
+
def test_paginate_with_join_and_conditions
|
|
150
|
+
get :paginate_with_joins
|
|
151
|
+
expected = assigns(:developers)
|
|
152
|
+
get :paginate_with_join
|
|
153
|
+
assert_equal expected, assigns(:developers)
|
|
154
|
+
end
|
|
155
|
+
|
|
156
|
+
def test_paginate_with_join_and_count
|
|
157
|
+
get :paginate_with_joins
|
|
158
|
+
expected = assigns(:developers)
|
|
159
|
+
get :paginate_with_join_and_count
|
|
160
|
+
assert_equal expected, assigns(:developers)
|
|
161
|
+
end
|
|
162
|
+
|
|
163
|
+
def test_paginate_with_include_and_order
|
|
164
|
+
get :paginate_with_include_and_order
|
|
165
|
+
expected = Topic.find(:all, :include => 'replies', :order => 'replies.created_at asc, topics.created_at asc', :limit => 10)
|
|
166
|
+
assert_equal expected, assigns(:topics)
|
|
167
|
+
end
|
|
168
|
+
|
|
169
|
+
def test_paginate_with_join_and_group
|
|
170
|
+
get :paginate_with_join_and_group
|
|
171
|
+
assert_equal 2, assigns(:developers).size
|
|
172
|
+
assert_equal 2, assigns(:developer_pages).item_count
|
|
173
|
+
developer_names = assigns(:developers).map { |d| d.name }
|
|
174
|
+
assert developer_names.include?('David')
|
|
175
|
+
assert developer_names.include?('Jamis')
|
|
176
|
+
end
|
|
177
|
+
end
|
|
@@ -615,7 +615,7 @@ module FileColumn # :nodoc:
|
|
|
615
615
|
options = DEFAULT_OPTIONS.merge(options) if options
|
|
616
616
|
|
|
617
617
|
my_options = FileColumn::init_options(options,
|
|
618
|
-
Inflector.underscore(self.name).to_s,
|
|
618
|
+
ActiveSupport::Inflector.underscore(self.name).to_s,
|
|
619
619
|
attr.to_s)
|
|
620
620
|
|
|
621
621
|
state_attr = "@#{attr}_state".to_sym
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,47 +1,88 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
|
-
rubygems_version: 0.9.4
|
|
3
|
-
specification_version: 1
|
|
4
2
|
name: parlement
|
|
5
3
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: "0.
|
|
7
|
-
date: 2007-10-07 00:00:00 +02:00
|
|
8
|
-
summary: Trusted Direct Democracy on a forum
|
|
9
|
-
require_paths:
|
|
10
|
-
- lib
|
|
11
|
-
email: emmanuel.charpentier@free.fr
|
|
12
|
-
homepage: http://leparlement.org
|
|
13
|
-
rubyforge_project: parlement
|
|
14
|
-
description: "This is a forum and mailing list project, which aims to be a complete Direct Democracy implementation where everybody can propose polls, vote on them, or delegate their voice to someone else. Trust through: - cluster - PGP signatures - electoral lists"
|
|
15
|
-
autorequire: rails redcloth term-ansicolor
|
|
16
|
-
default_executable:
|
|
17
|
-
bindir: bin
|
|
18
|
-
has_rdoc: false
|
|
19
|
-
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
|
20
|
-
requirements:
|
|
21
|
-
- - ">"
|
|
22
|
-
- !ruby/object:Gem::Version
|
|
23
|
-
version: 0.0.0
|
|
24
|
-
version:
|
|
4
|
+
version: "0.17"
|
|
25
5
|
platform: ruby
|
|
26
|
-
signing_key:
|
|
27
|
-
cert_chain:
|
|
28
|
-
post_install_message:
|
|
29
6
|
authors:
|
|
30
7
|
- Emmanuel Charpentier
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
|
|
12
|
+
date: 2009-05-13 00:00:00 +02:00
|
|
13
|
+
default_executable:
|
|
14
|
+
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: rails
|
|
17
|
+
type: :runtime
|
|
18
|
+
version_requirement:
|
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: "0"
|
|
24
|
+
version:
|
|
25
|
+
- !ruby/object:Gem::Dependency
|
|
26
|
+
name: gettext
|
|
27
|
+
type: :runtime
|
|
28
|
+
version_requirement:
|
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: "0"
|
|
34
|
+
version:
|
|
35
|
+
- !ruby/object:Gem::Dependency
|
|
36
|
+
name: RedCloth
|
|
37
|
+
type: :runtime
|
|
38
|
+
version_requirement:
|
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
40
|
+
requirements:
|
|
41
|
+
- - ">="
|
|
42
|
+
- !ruby/object:Gem::Version
|
|
43
|
+
version: "0"
|
|
44
|
+
version:
|
|
45
|
+
- !ruby/object:Gem::Dependency
|
|
46
|
+
name: ruby-debug
|
|
47
|
+
type: :runtime
|
|
48
|
+
version_requirement:
|
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
50
|
+
requirements:
|
|
51
|
+
- - ">="
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: "0"
|
|
54
|
+
version:
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: term-ansicolor
|
|
57
|
+
type: :runtime
|
|
58
|
+
version_requirement:
|
|
59
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
60
|
+
requirements:
|
|
61
|
+
- - ">="
|
|
62
|
+
- !ruby/object:Gem::Version
|
|
63
|
+
version: "0"
|
|
64
|
+
version:
|
|
65
|
+
description: " Forum and mailing list project aiming to be a complete Direct Democracy\n implementation where everybody can propose polls, vote on them, or delegate\n their voice to someone else.\n\n\
|
|
66
|
+
\t\tTrust through:\n\
|
|
67
|
+
\t\t- P2P cluster\n\
|
|
68
|
+
\t\t- PGP signatures\n\
|
|
69
|
+
\t\t- electoral lists\n"
|
|
70
|
+
email: emmanuel.charpentier@free.fr
|
|
71
|
+
executables: []
|
|
72
|
+
|
|
73
|
+
extensions: []
|
|
74
|
+
|
|
75
|
+
extra_rdoc_files: []
|
|
76
|
+
|
|
31
77
|
files:
|
|
32
78
|
- MEMORY
|
|
33
79
|
- CHANGES
|
|
34
80
|
- README
|
|
35
81
|
- Rakefile
|
|
36
82
|
- COPYING
|
|
37
|
-
- app/apis
|
|
38
|
-
- app/views
|
|
39
|
-
- app/views/layouts
|
|
40
83
|
- app/views/layouts/_title.rhtml
|
|
41
84
|
- app/views/layouts/scaffold.rhtml
|
|
42
85
|
- app/views/layouts/top.rhtml
|
|
43
|
-
- app/views/elt
|
|
44
|
-
- app/views/elt/list
|
|
45
86
|
- app/views/elt/list/_children.rhtml
|
|
46
87
|
- app/views/elt/list/_visitors.rhtml
|
|
47
88
|
- app/views/elt/list/_subscribers.rhtml
|
|
@@ -51,37 +92,32 @@ files:
|
|
|
51
92
|
- app/views/elt/new.rhtml
|
|
52
93
|
- app/views/elt/choices.rhtml
|
|
53
94
|
- app/views/elt/show.rhtml
|
|
54
|
-
- app/views/elt/show_tree.rhtml
|
|
55
95
|
- app/views/elt/_choice.rhtml
|
|
56
96
|
- app/views/elt/_elt.rhtml
|
|
57
97
|
- app/views/elt/vote_rss.rxml
|
|
58
98
|
- app/views/elt/rss.rxml
|
|
59
|
-
- app/views/elt/_form.rhtml
|
|
60
|
-
- app/views/mail_notify
|
|
61
99
|
- app/views/mail_notify/publish.text.plain.rhtml
|
|
62
100
|
- app/views/mail_notify/publish.text.html.rhtml
|
|
63
|
-
- app/views/person_notify
|
|
64
101
|
- app/views/person_notify/setEmail.rhtml
|
|
65
|
-
- app/views/
|
|
102
|
+
- app/views/user_notify/change_password.rhtml
|
|
103
|
+
- app/views/user_notify/forgot_password.rhtml
|
|
104
|
+
- app/views/user_notify/pending_delete.rhtml
|
|
105
|
+
- app/views/user_notify/delete.rhtml
|
|
106
|
+
- app/views/user_notify/signup.rhtml
|
|
66
107
|
- app/views/_help.rhtml
|
|
67
|
-
- app/views/account
|
|
68
108
|
- app/views/account/_login.rhtml
|
|
69
109
|
- app/views/account/logout.rhtml
|
|
70
110
|
- app/views/account/welcome.rhtml
|
|
71
111
|
- app/views/account/_show.rhtml
|
|
72
112
|
- app/views/account/signup.rhtml
|
|
73
|
-
- app/views/person
|
|
74
113
|
- app/views/person/_listElts.rhtml
|
|
75
114
|
- app/views/person/show.rhtml
|
|
76
|
-
- app/helpers
|
|
77
115
|
- app/helpers/subscriber_helper.rb
|
|
78
116
|
- app/helpers/account_helper.rb
|
|
79
117
|
- app/helpers/mailman.rb
|
|
80
118
|
- app/helpers/person_helper.rb
|
|
81
119
|
- app/helpers/application_helper.rb
|
|
82
|
-
- app/helpers/live_tree.rb
|
|
83
120
|
- app/helpers/elt_helper.rb
|
|
84
|
-
- app/models
|
|
85
121
|
- app/models/subscription.rb
|
|
86
122
|
- app/models/user_notify.rb
|
|
87
123
|
- app/models/mail_notify.rb
|
|
@@ -94,22 +130,19 @@ files:
|
|
|
94
130
|
- app/models/person_notify.rb
|
|
95
131
|
- app/models/old_visit.rb
|
|
96
132
|
- app/models/visit.rb
|
|
97
|
-
- app/controllers
|
|
98
|
-
- app/controllers/application.rb
|
|
99
133
|
- app/controllers/elt_controller.rb
|
|
100
134
|
- app/controllers/subscriber_controller.rb
|
|
101
135
|
- app/controllers/account_controller.rb
|
|
102
136
|
- app/controllers/person_controller.rb
|
|
103
|
-
-
|
|
137
|
+
- app/controllers/application_controller.rb
|
|
104
138
|
- config/environments/test.rb
|
|
105
139
|
- config/environments/development.rb
|
|
106
|
-
- config/environments/user_environment.rb
|
|
107
140
|
- config/environments/production.rb
|
|
108
141
|
- config/routes.rb
|
|
109
142
|
- config/boot.rb
|
|
110
143
|
- config/database.yml
|
|
111
144
|
- config/environment.rb
|
|
112
|
-
-
|
|
145
|
+
- config/initializers/string_ruby_1.8.rb
|
|
113
146
|
- db/migrate/009_add_person_last_login.rb
|
|
114
147
|
- db/migrate/007_create_visits.rb
|
|
115
148
|
- db/migrate/005_filter_mail.rb
|
|
@@ -121,13 +154,8 @@ files:
|
|
|
121
154
|
- db/migrate/002_nested_set.rb
|
|
122
155
|
- db/development_structure.sql
|
|
123
156
|
- db/schema.sql
|
|
124
|
-
- db/ROOT
|
|
125
157
|
- db/ROOT/parleR.txt
|
|
126
|
-
- db/ROOT/Titemagli.txt
|
|
127
|
-
- db/ROOT/parlement
|
|
128
|
-
- db/ROOT/parlement/Security
|
|
129
158
|
- db/ROOT/parlement/Security/anonymity.txt
|
|
130
|
-
- db/ROOT/parlement/News
|
|
131
159
|
- db/ROOT/parlement/News/Version_06.txt
|
|
132
160
|
- db/ROOT/parlement/News/Version_05.txt
|
|
133
161
|
- db/ROOT/parlement/News/Version_04.txt
|
|
@@ -145,16 +173,14 @@ files:
|
|
|
145
173
|
- db/ROOT/mail.txt
|
|
146
174
|
- db/ROOT/fr.txt
|
|
147
175
|
- db/ROOT/parlement.txt
|
|
148
|
-
- db/ROOT/titemagli.txt
|
|
149
176
|
- db/ROOT/perso.txt
|
|
150
|
-
- db/ROOT/perso
|
|
151
177
|
- db/schema.rb
|
|
152
178
|
- lib/user_system.rb
|
|
153
179
|
- lib/localization.rb
|
|
154
180
|
- lib/localizer.rb
|
|
155
181
|
- lib/data_import.rb
|
|
156
182
|
- lib/login_system.rb
|
|
157
|
-
- lib/tasks
|
|
183
|
+
- lib/tasks/rspec.rake
|
|
158
184
|
- public/oldindex.html
|
|
159
185
|
- public/dispatch.rb
|
|
160
186
|
- public/dispatch.fcgi
|
|
@@ -169,7 +195,6 @@ files:
|
|
|
169
195
|
- public/images/vote_plus_minus.svg
|
|
170
196
|
- public/images/live_tree_branch_expanded_icon.gif
|
|
171
197
|
- public/images/ParlementLogo.png
|
|
172
|
-
- public/images/image
|
|
173
198
|
- public/images/eltBackground.svg
|
|
174
199
|
- public/images/write.png
|
|
175
200
|
- public/images/write.svg
|
|
@@ -185,25 +210,15 @@ files:
|
|
|
185
210
|
- public/images/Sleep-Deprivation-5.JPG
|
|
186
211
|
- public/images/world.png
|
|
187
212
|
- public/engine_files/README
|
|
188
|
-
- public/engine_files/login_engine
|
|
189
|
-
- public/engine_files/login_engine/stylesheets
|
|
190
213
|
- public/engine_files/login_engine/stylesheets/login_engine.css
|
|
191
214
|
- public/javascripts/blank.gif
|
|
192
|
-
- public/javascripts/scriptaculous.js
|
|
193
|
-
- public/javascripts/ie7-load.htc
|
|
194
215
|
- public/javascripts/effects.js
|
|
195
|
-
- public/javascripts/ie7.js
|
|
196
|
-
- public/javascripts/behaviour.js
|
|
197
216
|
- public/javascripts/controls.js
|
|
198
|
-
- public/javascripts/live_tree.js
|
|
199
217
|
- public/javascripts/dragdrop.js
|
|
200
218
|
- public/javascripts/prototype.js
|
|
201
219
|
- public/javascripts/shadedborder.js
|
|
202
|
-
- public/javascripts/mybehaviour.js
|
|
203
220
|
- public/javascripts/application.js
|
|
204
|
-
- public/javascripts/slider.js
|
|
205
221
|
- public/stylesheets/scaffold.css
|
|
206
|
-
- public/stylesheets/blue.css
|
|
207
222
|
- public/stylesheets/live_tree.css
|
|
208
223
|
- public/stylesheets/default.css
|
|
209
224
|
- script/plugin
|
|
@@ -211,35 +226,35 @@ files:
|
|
|
211
226
|
- script/server
|
|
212
227
|
- script/destroy
|
|
213
228
|
- script/create_db
|
|
229
|
+
- script/spec_server
|
|
214
230
|
- script/console
|
|
231
|
+
- script/autospec
|
|
232
|
+
- script/spec
|
|
215
233
|
- script/profiler
|
|
216
234
|
- script/about
|
|
217
235
|
- script/benchmarker
|
|
218
236
|
- script/breakpointer
|
|
219
|
-
- script/performance
|
|
220
237
|
- script/generate
|
|
221
|
-
- script/
|
|
222
|
-
- vendor/plugins
|
|
223
|
-
- vendor/plugins/
|
|
224
|
-
- vendor/plugins/google_analytics/lib
|
|
225
|
-
- vendor/plugins/google_analytics/lib/rubaidh
|
|
238
|
+
- script/dbconsole
|
|
239
|
+
- vendor/plugins/activerecord_foreign_key_extensions/lib/active_record_extensions.rb
|
|
240
|
+
- vendor/plugins/activerecord_foreign_key_extensions/init.rb
|
|
226
241
|
- vendor/plugins/google_analytics/lib/rubaidh/google_analytics.rb
|
|
227
|
-
- vendor/plugins/google_analytics/test
|
|
228
242
|
- vendor/plugins/google_analytics/test/google_analytics_test.rb
|
|
229
243
|
- vendor/plugins/google_analytics/README
|
|
230
244
|
- vendor/plugins/google_analytics/init.rb
|
|
231
245
|
- vendor/plugins/google_analytics/Rakefile
|
|
232
|
-
- vendor/plugins/responds_to_parent
|
|
233
|
-
- vendor/plugins/responds_to_parent/lib
|
|
234
246
|
- vendor/plugins/responds_to_parent/lib/responds_to_parent.rb
|
|
235
|
-
- vendor/plugins/responds_to_parent/test
|
|
236
247
|
- vendor/plugins/responds_to_parent/test/responds_to_parent_test.rb
|
|
237
248
|
- vendor/plugins/responds_to_parent/README
|
|
238
249
|
- vendor/plugins/responds_to_parent/init.rb
|
|
239
250
|
- vendor/plugins/responds_to_parent/MIT-LICENSE
|
|
240
251
|
- vendor/plugins/responds_to_parent/Rakefile
|
|
241
|
-
- vendor/plugins/
|
|
242
|
-
- vendor/plugins/
|
|
252
|
+
- vendor/plugins/activerecord_text_id_extensions/lib/active_record_extensions.rb
|
|
253
|
+
- vendor/plugins/activerecord_text_id_extensions/init.rb
|
|
254
|
+
- vendor/plugins/acts_as_nested_set/lib/active_record/acts/nested_set.rb
|
|
255
|
+
- vendor/plugins/acts_as_nested_set/test/nested_set_test.rb
|
|
256
|
+
- vendor/plugins/acts_as_nested_set/README
|
|
257
|
+
- vendor/plugins/acts_as_nested_set/init.rb
|
|
243
258
|
- vendor/plugins/file_column/lib/validations.rb
|
|
244
259
|
- vendor/plugins/file_column/lib/file_column_helper.rb
|
|
245
260
|
- vendor/plugins/file_column/lib/rails_file_column.rb
|
|
@@ -247,9 +262,7 @@ files:
|
|
|
247
262
|
- vendor/plugins/file_column/lib/magick_file_column.rb
|
|
248
263
|
- vendor/plugins/file_column/lib/file_compat.rb
|
|
249
264
|
- vendor/plugins/file_column/CHANGELOG
|
|
250
|
-
- vendor/plugins/file_column/test
|
|
251
265
|
- vendor/plugins/file_column/test/abstract_unit.rb
|
|
252
|
-
- vendor/plugins/file_column/test/fixtures
|
|
253
266
|
- vendor/plugins/file_column/test/fixtures/kerb.jpg
|
|
254
267
|
- vendor/plugins/file_column/test/fixtures/mysql.sql
|
|
255
268
|
- vendor/plugins/file_column/test/fixtures/skanthak.png
|
|
@@ -257,7 +270,6 @@ files:
|
|
|
257
270
|
- vendor/plugins/file_column/test/fixtures/schema.rb
|
|
258
271
|
- vendor/plugins/file_column/test/fixtures/entry.rb
|
|
259
272
|
- vendor/plugins/file_column/test/file_column_test.rb
|
|
260
|
-
- vendor/plugins/file_column/test/public
|
|
261
273
|
- vendor/plugins/file_column/test/file_column_helper_test.rb
|
|
262
274
|
- vendor/plugins/file_column/test/magick_view_only_test.rb
|
|
263
275
|
- vendor/plugins/file_column/test/connection.rb
|
|
@@ -266,105 +278,66 @@ files:
|
|
|
266
278
|
- vendor/plugins/file_column/TODO
|
|
267
279
|
- vendor/plugins/file_column/init.rb
|
|
268
280
|
- vendor/plugins/file_column/Rakefile
|
|
269
|
-
- vendor/plugins/
|
|
270
|
-
- vendor/plugins/
|
|
271
|
-
- vendor/plugins/
|
|
272
|
-
- vendor/plugins/
|
|
273
|
-
- vendor/plugins/
|
|
274
|
-
- vendor/plugins/
|
|
275
|
-
- vendor/plugins/
|
|
276
|
-
- vendor/plugins/
|
|
277
|
-
- vendor/plugins/
|
|
278
|
-
- vendor/plugins/
|
|
279
|
-
- vendor/plugins/
|
|
280
|
-
- vendor/plugins/
|
|
281
|
-
- vendor/plugins/
|
|
282
|
-
- vendor/plugins/
|
|
283
|
-
- vendor/plugins/
|
|
284
|
-
- vendor/plugins/
|
|
285
|
-
- vendor/plugins/
|
|
286
|
-
- vendor/plugins/
|
|
287
|
-
- vendor/plugins/
|
|
288
|
-
- vendor/plugins/
|
|
289
|
-
- vendor/plugins/
|
|
290
|
-
- vendor/plugins/
|
|
291
|
-
- vendor/plugins/
|
|
292
|
-
- vendor/plugins/
|
|
293
|
-
- vendor/plugins/
|
|
294
|
-
- vendor/plugins/
|
|
295
|
-
- vendor/plugins/
|
|
296
|
-
- vendor/plugins/
|
|
297
|
-
- vendor/plugins/
|
|
298
|
-
- vendor/plugins/
|
|
299
|
-
- vendor/plugins/
|
|
300
|
-
- vendor/plugins/
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
-
|
|
313
|
-
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
-
|
|
319
|
-
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
- vendor/plugins/login_engine/CHANGELOG
|
|
330
|
-
- vendor/plugins/login_engine/test
|
|
331
|
-
- vendor/plugins/login_engine/test/fixtures
|
|
332
|
-
- vendor/plugins/login_engine/test/fixtures/users.yml
|
|
333
|
-
- vendor/plugins/login_engine/test/functional
|
|
334
|
-
- vendor/plugins/login_engine/test/functional/user_controller_test.rb
|
|
335
|
-
- vendor/plugins/login_engine/test/test_helper.rb
|
|
336
|
-
- vendor/plugins/login_engine/test/mocks
|
|
337
|
-
- vendor/plugins/login_engine/test/mocks/mail.rb
|
|
338
|
-
- vendor/plugins/login_engine/test/mocks/time.rb
|
|
339
|
-
- vendor/plugins/login_engine/test/unit
|
|
340
|
-
- vendor/plugins/login_engine/test/unit/user_test.rb
|
|
341
|
-
- vendor/plugins/login_engine/README
|
|
342
|
-
- vendor/plugins/login_engine/install.rb
|
|
343
|
-
- vendor/plugins/login_engine/app
|
|
344
|
-
- vendor/plugins/login_engine/app/views
|
|
345
|
-
- vendor/plugins/login_engine/app/views/user
|
|
346
|
-
- vendor/plugins/login_engine/app/views/user/change_password.rhtml
|
|
347
|
-
- vendor/plugins/login_engine/app/views/user/forgot_password.rhtml
|
|
348
|
-
- vendor/plugins/login_engine/app/views/user/home.rhtml
|
|
349
|
-
- vendor/plugins/login_engine/app/views/user/_edit.rhtml
|
|
350
|
-
- vendor/plugins/login_engine/app/views/user/login.rhtml
|
|
351
|
-
- vendor/plugins/login_engine/app/views/user/edit.rhtml
|
|
352
|
-
- vendor/plugins/login_engine/app/views/user/logout.rhtml
|
|
353
|
-
- vendor/plugins/login_engine/app/views/user/_password.rhtml
|
|
354
|
-
- vendor/plugins/login_engine/app/views/user/signup.rhtml
|
|
355
|
-
- vendor/plugins/login_engine/app/views/user_notify
|
|
356
|
-
- vendor/plugins/login_engine/app/views/user_notify/change_password.rhtml
|
|
357
|
-
- vendor/plugins/login_engine/app/views/user_notify/forgot_password.rhtml
|
|
358
|
-
- vendor/plugins/login_engine/app/views/user_notify/pending_delete.rhtml
|
|
359
|
-
- vendor/plugins/login_engine/app/views/user_notify/delete.rhtml
|
|
360
|
-
- vendor/plugins/login_engine/app/views/user_notify/signup.rhtml
|
|
361
|
-
- vendor/plugins/login_engine/app/helpers
|
|
362
|
-
- vendor/plugins/login_engine/app/helpers/user_helper.rb
|
|
363
|
-
- vendor/plugins/login_engine/app/models
|
|
364
|
-
- vendor/plugins/login_engine/app/models/user_notify.rb
|
|
365
|
-
- vendor/plugins/login_engine/app/models/user.rb
|
|
366
|
-
- vendor/plugins/login_engine/app/controllers
|
|
367
|
-
- vendor/plugins/login_engine/app/controllers/user_controller.rb
|
|
281
|
+
- vendor/plugins/acts_as_tree/lib/active_record/acts/tree.rb
|
|
282
|
+
- vendor/plugins/acts_as_tree/test/abstract_unit.rb
|
|
283
|
+
- vendor/plugins/acts_as_tree/test/fixtures/mixin.rb
|
|
284
|
+
- vendor/plugins/acts_as_tree/test/fixtures/mixins.yml
|
|
285
|
+
- vendor/plugins/acts_as_tree/test/acts_as_tree_test.rb
|
|
286
|
+
- vendor/plugins/acts_as_tree/test/database.yml
|
|
287
|
+
- vendor/plugins/acts_as_tree/test/schema.rb
|
|
288
|
+
- vendor/plugins/acts_as_tree/README
|
|
289
|
+
- vendor/plugins/acts_as_tree/init.rb
|
|
290
|
+
- vendor/plugins/acts_as_tree/Rakefile
|
|
291
|
+
- vendor/plugins/classic_pagination/lib/pagination.rb
|
|
292
|
+
- vendor/plugins/classic_pagination/lib/pagination_helper.rb
|
|
293
|
+
- vendor/plugins/classic_pagination/CHANGELOG
|
|
294
|
+
- vendor/plugins/classic_pagination/test/fixtures/topic.rb
|
|
295
|
+
- vendor/plugins/classic_pagination/test/fixtures/companies.yml
|
|
296
|
+
- vendor/plugins/classic_pagination/test/fixtures/developer.rb
|
|
297
|
+
- vendor/plugins/classic_pagination/test/fixtures/company.rb
|
|
298
|
+
- vendor/plugins/classic_pagination/test/fixtures/reply.rb
|
|
299
|
+
- vendor/plugins/classic_pagination/test/fixtures/developers.yml
|
|
300
|
+
- vendor/plugins/classic_pagination/test/fixtures/topics.yml
|
|
301
|
+
- vendor/plugins/classic_pagination/test/fixtures/schema.sql
|
|
302
|
+
- vendor/plugins/classic_pagination/test/fixtures/projects.yml
|
|
303
|
+
- vendor/plugins/classic_pagination/test/fixtures/replies.yml
|
|
304
|
+
- vendor/plugins/classic_pagination/test/fixtures/developers_projects.yml
|
|
305
|
+
- vendor/plugins/classic_pagination/test/fixtures/project.rb
|
|
306
|
+
- vendor/plugins/classic_pagination/test/helper.rb
|
|
307
|
+
- vendor/plugins/classic_pagination/test/pagination_test.rb
|
|
308
|
+
- vendor/plugins/classic_pagination/test/pagination_helper_test.rb
|
|
309
|
+
- vendor/plugins/classic_pagination/README
|
|
310
|
+
- vendor/plugins/classic_pagination/install.rb
|
|
311
|
+
- vendor/plugins/classic_pagination/init.rb
|
|
312
|
+
- vendor/plugins/classic_pagination/Rakefile
|
|
313
|
+
has_rdoc: false
|
|
314
|
+
homepage: http://leparlement.org
|
|
315
|
+
licenses: []
|
|
316
|
+
|
|
317
|
+
post_install_message:
|
|
318
|
+
rdoc_options: []
|
|
319
|
+
|
|
320
|
+
require_paths:
|
|
321
|
+
- lib
|
|
322
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
323
|
+
requirements:
|
|
324
|
+
- - ">="
|
|
325
|
+
- !ruby/object:Gem::Version
|
|
326
|
+
version: "0"
|
|
327
|
+
version:
|
|
328
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
329
|
+
requirements:
|
|
330
|
+
- - ">="
|
|
331
|
+
- !ruby/object:Gem::Version
|
|
332
|
+
version: "0"
|
|
333
|
+
version:
|
|
334
|
+
requirements:
|
|
335
|
+
- none
|
|
336
|
+
rubyforge_project: parlement
|
|
337
|
+
rubygems_version: 1.3.2
|
|
338
|
+
signing_key:
|
|
339
|
+
specification_version: 3
|
|
340
|
+
summary: Trusted Direct Democracy on a forum
|
|
368
341
|
test_files:
|
|
369
342
|
- test/unit/visit_test.rb
|
|
370
343
|
- test/unit/person_test.rb
|
|
@@ -373,25 +346,6 @@ test_files:
|
|
|
373
346
|
- test/unit/attachment_test.rb
|
|
374
347
|
- test/unit/subscriber_test.rb
|
|
375
348
|
- test/unit/mail_test.rb
|
|
349
|
+
- test/unit/user_test.rb
|
|
376
350
|
- test/unit/mail_notify_test.rb
|
|
377
351
|
- test/unit/person_notify_test.rb
|
|
378
|
-
rdoc_options: []
|
|
379
|
-
|
|
380
|
-
extra_rdoc_files: []
|
|
381
|
-
|
|
382
|
-
executables: []
|
|
383
|
-
|
|
384
|
-
extensions: []
|
|
385
|
-
|
|
386
|
-
requirements:
|
|
387
|
-
- none
|
|
388
|
-
dependencies:
|
|
389
|
-
- !ruby/object:Gem::Dependency
|
|
390
|
-
name: rails redcloth term-ansicolor
|
|
391
|
-
version_requirement:
|
|
392
|
-
version_requirements: !ruby/object:Gem::Version::Requirement
|
|
393
|
-
requirements:
|
|
394
|
-
- - ">"
|
|
395
|
-
- !ruby/object:Gem::Version
|
|
396
|
-
version: 0.0.0
|
|
397
|
-
version:
|