motiro 0.6.5 → 0.6.6
Sign up to get free protection for your applications and to get access to all the features.
- data/README +1 -1
- data/app/controllers/report_controller.rb +10 -6
- data/app/controllers/wiki_controller.rb +12 -2
- data/app/core/version.rb +1 -1
- data/app/core/wiki_reporter.rb +2 -2
- data/app/helpers/application_helper.rb +7 -0
- data/app/models/feed_observer.rb +27 -0
- data/app/models/page.rb +4 -0
- data/app/models/{page_sweeper.rb → wiki_sweeper.rb} +4 -2
- data/app/reporters/darcs_reporter.rb +1 -1
- data/app/views/report/list.rhtml +2 -4
- data/app/views/wiki/page_feed.rxml +25 -0
- data/config/environment.rb +1 -1
- data/config/routes.rb +8 -14
- data/public/stylesheets/motiro.css +5 -0
- data/test/acceptance/account_test.rb +3 -3
- data/test/acceptance/events_test.rb +1 -1
- data/test/acceptance/main_page_test.rb +2 -2
- data/test/acceptance/subversion_test.rb +16 -16
- data/test/fixtures/pages.yml +6 -0
- data/test/fixtures/revisions.yml +36 -1
- data/test/functional/report_controller_test.rb +4 -4
- data/test/functional/report_features_test.rb +1 -1
- data/test/functional/report_subversion_test.rb +4 -4
- data/test/functional/root_controller_test.rb +1 -1
- data/test/functional/wiki_controller_test.rb +29 -5
- data/test/unit/darcs_reporter_test.rb +2 -2
- data/test/unit/wiki_reporter_test.rb +13 -0
- data/vendor/plugins/global_routing/init.rb +53 -0
- metadata +345 -341
metadata
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
|
-
rubygems_version: 0.9.
|
2
|
+
rubygems_version: 0.9.3
|
3
3
|
specification_version: 1
|
4
4
|
name: motiro
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.6.
|
7
|
-
date: 2007-
|
6
|
+
version: 0.6.6
|
7
|
+
date: 2007-06-14 00:00:00 -03:00
|
8
8
|
summary: Simple project tracking tool
|
9
9
|
require_paths:
|
10
10
|
- .
|
@@ -29,394 +29,398 @@ post_install_message:
|
|
29
29
|
authors:
|
30
30
|
- Thiago Arrais
|
31
31
|
files:
|
32
|
-
-
|
33
|
-
- test/unit
|
34
|
-
- test/unit/darcs_reporter_test.rb
|
35
|
-
- test/unit/user_test.rb
|
36
|
-
- test/unit/chdir_runner_test.rb
|
37
|
-
- test/unit/chief_editor_test.rb
|
38
|
-
- test/unit/diff_table_builder_test.rb
|
39
|
-
- test/unit/change_test.rb
|
40
|
-
- test/unit/cache_reporter_test.rb
|
41
|
-
- test/unit/cache_reporter_fetcher_test.rb
|
42
|
-
- test/unit/string_extensions_test.rb
|
43
|
-
- test/unit/svn_connection_test.rb
|
44
|
-
- test/unit/wiki_reporter_test.rb
|
45
|
-
- test/unit/svn_settings_test.rb
|
46
|
-
- test/unit/svn_reporter_interaction_test.rb
|
47
|
-
- test/unit/svn_reporter_test.rb
|
48
|
-
- test/unit/relative_time_test.rb
|
49
|
-
- test/unit/translator_test.rb
|
50
|
-
- test/unit/wiki_renderer_test.rb
|
51
|
-
- test/unit/default_page_provider_test.rb
|
52
|
-
- test/unit/wiki_url_generator_test.rb
|
53
|
-
- test/unit/caching_test.rb
|
54
|
-
- test/unit/revision_test.rb
|
55
|
-
- test/unit/settings_test.rb
|
56
|
-
- test/unit/reporter_fetcher_test.rb
|
57
|
-
- test/unit/reporter_test.rb
|
58
|
-
- test/unit/darcs_temp_repo_test.rb
|
59
|
-
- test/unit/headline_test.rb
|
60
|
-
- test/unit/runner_test.rb
|
61
|
-
- test/unit/darcs_connection_test.rb
|
62
|
-
- test/unit/page_test.rb
|
63
|
-
- test/unit/darcs_settings_test.rb
|
64
|
-
- test/unit/reporter_driver_test.rb
|
65
|
-
- test/stubs
|
66
|
-
- test/stubs/svn_settings.rb
|
67
|
-
- test/stubs/url_generator.rb
|
68
|
-
- test/functional
|
69
|
-
- test/functional/report_controller_test.rb
|
70
|
-
- test/functional/account_controller_test.rb
|
71
|
-
- test/functional/root_controller_test.rb
|
72
|
-
- test/functional/wiki_controller_test.rb
|
73
|
-
- test/functional/report_features_test.rb
|
74
|
-
- test/functional/report_subversion_test.rb
|
75
|
-
- test/acceptance
|
76
|
-
- test/acceptance/subversion_test.rb
|
77
|
-
- test/acceptance/main_page_test.rb
|
78
|
-
- test/acceptance/wiki_test.rb
|
79
|
-
- test/acceptance/events_test.rb
|
80
|
-
- test/acceptance/ts_all_suites.rb
|
81
|
-
- test/acceptance/account_test.rb
|
82
|
-
- test/acceptance/darcs_test.rb
|
83
|
-
- test/lib
|
84
|
-
- test/lib/acceptance_test_case.rb
|
85
|
-
- test/lib/local_svn.rb
|
86
|
-
- test/lib/selenium_extensions.rb
|
87
|
-
- test/lib/darcs_repo.rb
|
88
|
-
- test/lib/live_mode_test.rb
|
89
|
-
- test/lib/svn_excerpts.rb
|
90
|
-
- test/lib/webserver.rb
|
91
|
-
- test/lib/stubio.rb
|
92
|
-
- test/lib/repoutils.rb
|
93
|
-
- test/lib/test_configuration.rb
|
94
|
-
- test/lib/configuration.rb
|
95
|
-
- test/lib/netutils.rb
|
96
|
-
- test/lib/darcs_excerpts.rb
|
97
|
-
- test/lib/platform_thread.rb
|
98
|
-
- test/meta
|
99
|
-
- test/meta/local_svn_test.rb
|
100
|
-
- test/meta/darcs_repo_test.rb
|
101
|
-
- test/meta/stubio_test.rb
|
102
|
-
- test/meta/configuration_test.rb
|
103
|
-
- test/meta/platform_thread_test.rb
|
104
|
-
- test/fixtures
|
105
|
-
- test/fixtures/pages.yml
|
106
|
-
- test/fixtures/revisions.yml
|
107
|
-
- test/fixtures/users.yml
|
108
|
-
- test/fixtures/changes.yml
|
109
|
-
- test/fixtures/headlines.yml
|
110
|
-
- test/mocks
|
111
|
-
- test/mocks/test
|
112
|
-
- test/mocks/development
|
113
|
-
- test/mocks/svn_reporter.rb
|
114
|
-
- test/mocks/headline.rb
|
115
|
-
- test/contract
|
116
|
-
- test/contract/svn_test.rb
|
117
|
-
- test/contract/remote_darcs_test.rb
|
118
|
-
- test/contract/darcs_test.rb
|
119
|
-
- test/test_helper.rb
|
32
|
+
- db
|
120
33
|
- app
|
34
|
+
- bin
|
35
|
+
- script
|
36
|
+
- lib
|
37
|
+
- components
|
38
|
+
- doc
|
39
|
+
- public
|
40
|
+
- README.pt-br
|
41
|
+
- Rakefile
|
42
|
+
- vendor
|
43
|
+
- README
|
44
|
+
- config
|
45
|
+
- README.en
|
46
|
+
- test
|
47
|
+
- LICENSE
|
48
|
+
- installer
|
49
|
+
- db/schema_version
|
50
|
+
- db/motirodb.sqlite.initial
|
51
|
+
- db/migrate
|
52
|
+
- db/translation
|
53
|
+
- db/migrate/1_initial_structure.rb
|
54
|
+
- db/migrate/007_stretch_rid.rb
|
55
|
+
- db/migrate/022_provide_revision_position.rb
|
56
|
+
- db/migrate/014_events_are_wiki_pages.rb
|
57
|
+
- db/migrate/016_create_revisions.rb
|
58
|
+
- db/migrate/020_fix_modification_dates_for_old_pages.rb
|
59
|
+
- db/migrate/009_add_page_original_author.rb
|
60
|
+
- db/migrate/005_globalize_migration.rb
|
61
|
+
- db/migrate/017_revision_mimics_page.rb
|
62
|
+
- db/migrate/023_increment_revision_positions.rb
|
63
|
+
- db/migrate/013_nullify_initial_page_attributes.rb
|
64
|
+
- db/migrate/021_drop_type_column_from_pages_table.rb
|
65
|
+
- db/migrate/012_page_modification_info.rb
|
66
|
+
- db/migrate/010_remove_empty_string_defaults_from_pages.rb
|
67
|
+
- db/migrate/2_add_authentication.rb
|
68
|
+
- db/migrate/018_drop_redundant_page_columns.rb
|
69
|
+
- db/migrate/3_drop_articles.rb
|
70
|
+
- db/migrate/4_add_page_editing.rb
|
71
|
+
- db/migrate/011_add_title_and_kind_to_pages.rb
|
72
|
+
- db/migrate/015_migrate_previous_event_data.rb
|
73
|
+
- db/migrate/019_move_event_date_to_revision.rb
|
74
|
+
- db/migrate/008_add_page_editors.rb
|
75
|
+
- db/migrate/006_remove_headline_title.rb
|
76
|
+
- db/translation/pt-BR.rb
|
121
77
|
- app/helpers
|
122
|
-
- app/
|
123
|
-
- app/
|
124
|
-
- app/
|
125
|
-
- app/
|
78
|
+
- app/controllers
|
79
|
+
- app/views
|
80
|
+
- app/models
|
81
|
+
- app/ports
|
82
|
+
- app/core
|
83
|
+
- app/reporters
|
126
84
|
- app/helpers/report_helper.rb
|
127
85
|
- app/helpers/account_helper.rb
|
128
|
-
- app/
|
129
|
-
- app/
|
86
|
+
- app/helpers/wiki_helper.rb
|
87
|
+
- app/helpers/root_helper.rb
|
88
|
+
- app/helpers/application_helper.rb
|
89
|
+
- app/helpers/default_page_provider.rb
|
90
|
+
- app/controllers/wiki_controller.rb
|
91
|
+
- app/controllers/application.rb
|
92
|
+
- app/controllers/report_controller.rb
|
93
|
+
- app/controllers/root_controller.rb
|
94
|
+
- app/controllers/javascript_controller.rb
|
95
|
+
- app/controllers/account_controller.rb
|
96
|
+
- app/views/layouts
|
97
|
+
- app/views/report
|
98
|
+
- app/views/account
|
99
|
+
- app/views/javascript
|
100
|
+
- app/views/wiki
|
101
|
+
- app/views/root
|
102
|
+
- app/views/layouts/_top.rhtml
|
103
|
+
- app/views/layouts/wiki_edit.rhtml
|
104
|
+
- app/views/layouts/_bottom.rhtml
|
105
|
+
- app/views/layouts/scaffold.rhtml
|
106
|
+
- app/views/layouts/application.rhtml
|
107
|
+
- app/views/layouts/_header.rhtml
|
108
|
+
- app/views/report/rss.rxml
|
109
|
+
- app/views/report/list.rhtml
|
110
|
+
- app/views/report/older.rhtml
|
111
|
+
- app/views/report/show.rhtml
|
112
|
+
- app/views/account/login.rhtml
|
113
|
+
- app/views/account/availability.rhtml
|
114
|
+
- app/views/account/logout.rhtml
|
115
|
+
- app/views/account/_availability.rhtml
|
116
|
+
- app/views/account/_authorization.rhtml
|
117
|
+
- app/views/javascript/motiro.rjs
|
118
|
+
- app/views/javascript/niftycube.rjs
|
119
|
+
- app/views/wiki/properties_edit.rhtml
|
120
|
+
- app/views/wiki/_editbar.rhtml
|
121
|
+
- app/views/wiki/_properties_edit.rhtml
|
122
|
+
- app/views/wiki/page_feed.rxml
|
123
|
+
- app/views/wiki/edit.rhtml
|
124
|
+
- app/views/wiki/_properties_show.rhtml
|
125
|
+
- app/views/wiki/history.rhtml
|
126
|
+
- app/views/wiki/show.rhtml
|
127
|
+
- app/views/root/index.rhtml
|
128
|
+
- app/models/wiki_sweeper.rb
|
130
129
|
- app/models/user.rb
|
131
130
|
- app/models/page.rb
|
132
131
|
- app/models/change.rb
|
133
|
-
- app/models/diff_table_builder.rb
|
134
|
-
- app/models/page_sweeper.rb
|
135
132
|
- app/models/headline.rb
|
136
|
-
- app/
|
137
|
-
- app/
|
138
|
-
- app/
|
139
|
-
- app/reporters/subversion_reporter.rb
|
140
|
-
- app/reporters/svn_connection.rb
|
141
|
-
- app/reporters/darcs_temp_repo.rb
|
142
|
-
- app/reporters/events_reporter.rb
|
143
|
-
- app/reporters/svn_settings.rb
|
144
|
-
- app/reporters/darcs_connection.rb
|
145
|
-
- app/reporters/darcs_settings.rb
|
146
|
-
- app/controllers
|
147
|
-
- app/controllers/report_controller.rb
|
148
|
-
- app/controllers/account_controller.rb
|
149
|
-
- app/controllers/application.rb
|
150
|
-
- app/controllers/root_controller.rb
|
151
|
-
- app/controllers/wiki_controller.rb
|
152
|
-
- app/controllers/javascript_controller.rb
|
153
|
-
- app/ports
|
133
|
+
- app/models/feed_observer.rb
|
134
|
+
- app/models/diff_table_builder.rb
|
135
|
+
- app/models/revision.rb
|
154
136
|
- app/ports/chdir_runner.rb
|
155
137
|
- app/ports/reporter_loader.rb
|
156
138
|
- app/ports/runner.rb
|
157
|
-
- app/core
|
158
139
|
- app/core/reporter_driver.rb
|
140
|
+
- app/core/cache_reporter_fetcher.rb
|
141
|
+
- app/core/wiki_page_not_found.rb
|
159
142
|
- app/core/settings.rb
|
160
|
-
- app/core/reporter.rb
|
161
143
|
- app/core/reporter_fetcher.rb
|
162
144
|
- app/core/chief_editor.rb
|
163
|
-
- app/core/cache_reporter.rb
|
164
|
-
- app/core/cache_reporter_fetcher.rb
|
165
145
|
- app/core/version.rb
|
146
|
+
- app/core/reporter.rb
|
147
|
+
- app/core/cache_reporter.rb
|
166
148
|
- app/core/wiki_reporter.rb
|
167
|
-
- app/
|
168
|
-
- app/
|
169
|
-
- app/
|
170
|
-
- app/
|
171
|
-
- app/
|
172
|
-
- app/
|
173
|
-
- app/
|
174
|
-
- app/
|
175
|
-
- app/
|
176
|
-
-
|
177
|
-
-
|
178
|
-
-
|
179
|
-
-
|
180
|
-
-
|
181
|
-
-
|
182
|
-
-
|
183
|
-
-
|
184
|
-
-
|
185
|
-
- app/views/wiki/_editbar.rhtml
|
186
|
-
- app/views/javascript
|
187
|
-
- app/views/javascript/niftycube.rjs
|
188
|
-
- app/views/javascript/motiro.rjs
|
189
|
-
- app/views/report
|
190
|
-
- app/views/report/list.rhtml
|
191
|
-
- app/views/report/show.rhtml
|
192
|
-
- app/views/report/rss.rxml
|
193
|
-
- app/views/report/older.rhtml
|
194
|
-
- app/views/account
|
195
|
-
- app/views/account/availability.rhtml
|
196
|
-
- app/views/account/_authorization.rhtml
|
197
|
-
- app/views/account/login.rhtml
|
198
|
-
- app/views/account/_availability.rhtml
|
199
|
-
- app/views/account/logout.rhtml
|
200
|
-
- db
|
201
|
-
- db/migrate
|
202
|
-
- db/migrate/019_move_event_date_to_revision.rb
|
203
|
-
- db/migrate/013_nullify_initial_page_attributes.rb
|
204
|
-
- db/migrate/014_events_are_wiki_pages.rb
|
205
|
-
- db/migrate/017_revision_mimics_page.rb
|
206
|
-
- db/migrate/011_add_title_and_kind_to_pages.rb
|
207
|
-
- db/migrate/009_add_page_original_author.rb
|
208
|
-
- db/migrate/1_initial_structure.rb
|
209
|
-
- db/migrate/016_create_revisions.rb
|
210
|
-
- db/migrate/018_drop_redundant_page_columns.rb
|
211
|
-
- db/migrate/012_page_modification_info.rb
|
212
|
-
- db/migrate/007_stretch_rid.rb
|
213
|
-
- db/migrate/015_migrate_previous_event_data.rb
|
214
|
-
- db/migrate/008_add_page_editors.rb
|
215
|
-
- db/migrate/005_globalize_migration.rb
|
216
|
-
- db/migrate/2_add_authentication.rb
|
217
|
-
- db/migrate/010_remove_empty_string_defaults_from_pages.rb
|
218
|
-
- db/migrate/4_add_page_editing.rb
|
219
|
-
- db/migrate/006_remove_headline_title.rb
|
220
|
-
- db/migrate/3_drop_articles.rb
|
221
|
-
- db/migrate/020_fix_modification_dates_for_old_pages.rb
|
222
|
-
- db/migrate/021_drop_type_column_from_pages_table.rb
|
223
|
-
- db/migrate/022_provide_revision_position.rb
|
224
|
-
- db/migrate/023_increment_revision_positions.rb
|
225
|
-
- db/translation
|
226
|
-
- db/translation/pt-BR.rb
|
227
|
-
- db/schema_version
|
228
|
-
- db/motirodb.sqlite.initial
|
229
|
-
- components
|
230
|
-
- installer
|
231
|
-
- installer/rails_installer_defaults.yml
|
232
|
-
- vendor
|
233
|
-
- script
|
149
|
+
- app/reporters/svn_connection.rb
|
150
|
+
- app/reporters/darcs_temp_repo.rb
|
151
|
+
- app/reporters/darcs_connection.rb
|
152
|
+
- app/reporters/darcs_reporter.rb
|
153
|
+
- app/reporters/darcs_settings.rb
|
154
|
+
- app/reporters/events_reporter.rb
|
155
|
+
- app/reporters/svn_settings.rb
|
156
|
+
- app/reporters/subversion_reporter.rb
|
157
|
+
- app/reporters/features_reporter.rb
|
158
|
+
- bin/motiro
|
159
|
+
- script/generate
|
160
|
+
- script/destroy
|
161
|
+
- script/breakpointer
|
162
|
+
- script/ticker
|
163
|
+
- script/server
|
164
|
+
- script/console
|
165
|
+
- script/about
|
166
|
+
- script/runner
|
234
167
|
- script/performance
|
168
|
+
- script/plugin
|
169
|
+
- script/process
|
235
170
|
- script/performance/benchmarker
|
236
171
|
- script/performance/profiler
|
237
|
-
- script/process
|
238
|
-
- script/process/spawner
|
239
172
|
- script/process/reaper
|
240
173
|
- script/process/spinner
|
241
|
-
- script/
|
242
|
-
-
|
243
|
-
-
|
244
|
-
- script/server
|
245
|
-
- script/destroy
|
246
|
-
- script/runner
|
247
|
-
- script/about
|
248
|
-
- script/generate
|
249
|
-
- script/plugin
|
250
|
-
- doc
|
251
|
-
- doc/README_FOR_APP
|
252
|
-
- config
|
253
|
-
- config/environments
|
254
|
-
- config/environments/test.rb
|
255
|
-
- config/environments/development.rb
|
256
|
-
- config/environments/production.rb
|
257
|
-
- config/routes.rb
|
258
|
-
- config/database.yml
|
259
|
-
- config/boot.rb
|
260
|
-
- config/environment.rb
|
261
|
-
- config/motiro.yml
|
262
|
-
- lib
|
263
|
-
- lib/tasks
|
264
|
-
- lib/tasks/packaging.rake
|
265
|
-
- lib/tasks/testing.rake
|
174
|
+
- script/process/spawner
|
175
|
+
- lib/wiki_renderer.rb
|
176
|
+
- lib/wiki_url_generator.rb
|
266
177
|
- lib/tick_daemon.rb
|
267
178
|
- lib/stub_hash.rb
|
179
|
+
- lib/login_system.rb
|
180
|
+
- lib/import_translations.rb
|
181
|
+
- lib/tasks
|
268
182
|
- lib/string_extensions.rb
|
269
|
-
- lib/relative_time.rb
|
270
183
|
- lib/translator.rb
|
271
|
-
- lib/
|
272
|
-
- lib/
|
273
|
-
- lib/
|
274
|
-
-
|
275
|
-
-
|
276
|
-
-
|
277
|
-
- public
|
278
|
-
- public/images
|
279
|
-
- public/images/rss.png
|
280
|
-
- public/images/calendar.png
|
184
|
+
- lib/relative_time.rb
|
185
|
+
- lib/tasks/packaging.rake
|
186
|
+
- lib/tasks/testing.rake
|
187
|
+
- doc/README_FOR_APP
|
188
|
+
- public/dispatch.cgi
|
189
|
+
- public/404.html
|
281
190
|
- public/javascripts
|
282
|
-
- public/
|
283
|
-
- public/javascripts/effects.js
|
284
|
-
- public/javascripts/dragdrop.js
|
285
|
-
- public/javascripts/controls.js
|
191
|
+
- public/dispatch.fcgi
|
286
192
|
- public/stylesheets
|
287
|
-
- public/
|
288
|
-
- public/stylesheets/scaffold.css
|
289
|
-
- public/stylesheets/niftyCorners.css
|
290
|
-
- public/dispatch.cgi
|
193
|
+
- public/images
|
291
194
|
- public/dispatch.rb
|
292
|
-
- public/dispatch.fcgi
|
293
|
-
- public/robots.txt
|
294
195
|
- public/500.html
|
295
|
-
- public/404.html
|
296
196
|
- public/favicon.ico
|
297
|
-
-
|
298
|
-
-
|
299
|
-
-
|
300
|
-
-
|
301
|
-
-
|
302
|
-
-
|
303
|
-
-
|
304
|
-
-
|
305
|
-
-
|
306
|
-
-
|
307
|
-
-
|
308
|
-
-
|
309
|
-
-
|
310
|
-
-
|
197
|
+
- public/robots.txt
|
198
|
+
- public/javascripts/controls.js
|
199
|
+
- public/javascripts/prototype.js
|
200
|
+
- public/javascripts/dragdrop.js
|
201
|
+
- public/javascripts/effects.js
|
202
|
+
- public/stylesheets/niftyCorners.css
|
203
|
+
- public/stylesheets/scaffold.css
|
204
|
+
- public/stylesheets/motiro.css
|
205
|
+
- public/images/rss.png
|
206
|
+
- public/images/calendar.png
|
207
|
+
- config/boot.rb
|
208
|
+
- config/motiro.yml
|
209
|
+
- config/environment.rb
|
210
|
+
- config/database.yml
|
211
|
+
- config/environments
|
212
|
+
- config/routes.rb
|
213
|
+
- config/environments/test.rb
|
214
|
+
- config/environments/development.rb
|
215
|
+
- config/environments/production.rb
|
216
|
+
- test/functional
|
217
|
+
- test/meta
|
218
|
+
- test/stubs
|
219
|
+
- test/contract
|
220
|
+
- test/fixtures
|
221
|
+
- test/lib
|
222
|
+
- test/acceptance
|
223
|
+
- test/test_helper.rb
|
224
|
+
- test/mocks
|
225
|
+
- test/unit
|
226
|
+
- test/functional/wiki_controller_test.rb
|
227
|
+
- test/functional/report_controller_test.rb
|
228
|
+
- test/functional/report_subversion_test.rb
|
229
|
+
- test/functional/account_controller_test.rb
|
230
|
+
- test/functional/report_features_test.rb
|
231
|
+
- test/functional/root_controller_test.rb
|
232
|
+
- test/meta/darcs_repo_test.rb
|
233
|
+
- test/meta/platform_thread_test.rb
|
234
|
+
- test/meta/stubio_test.rb
|
235
|
+
- test/meta/configuration_test.rb
|
236
|
+
- test/meta/local_svn_test.rb
|
237
|
+
- test/stubs/url_generator.rb
|
238
|
+
- test/stubs/svn_settings.rb
|
239
|
+
- test/contract/remote_darcs_test.rb
|
240
|
+
- test/contract/svn_test.rb
|
241
|
+
- test/contract/darcs_test.rb
|
242
|
+
- test/fixtures/revisions.yml
|
243
|
+
- test/fixtures/changes.yml
|
244
|
+
- test/fixtures/users.yml
|
245
|
+
- test/fixtures/headlines.yml
|
246
|
+
- test/fixtures/pages.yml
|
247
|
+
- test/lib/configuration.rb
|
248
|
+
- test/lib/selenium_extensions.rb
|
249
|
+
- test/lib/local_svn.rb
|
250
|
+
- test/lib/repoutils.rb
|
251
|
+
- test/lib/svn_excerpts.rb
|
252
|
+
- test/lib/netutils.rb
|
253
|
+
- test/lib/test_configuration.rb
|
254
|
+
- test/lib/acceptance_test_case.rb
|
255
|
+
- test/lib/webserver.rb
|
256
|
+
- test/lib/darcs_excerpts.rb
|
257
|
+
- test/lib/darcs_repo.rb
|
258
|
+
- test/lib/platform_thread.rb
|
259
|
+
- test/lib/live_mode_test.rb
|
260
|
+
- test/lib/stubio.rb
|
261
|
+
- test/acceptance/events_test.rb
|
262
|
+
- test/acceptance/account_test.rb
|
263
|
+
- test/acceptance/main_page_test.rb
|
264
|
+
- test/acceptance/subversion_test.rb
|
265
|
+
- test/acceptance/wiki_test.rb
|
266
|
+
- test/acceptance/ts_all_suites.rb
|
267
|
+
- test/acceptance/darcs_test.rb
|
268
|
+
- test/mocks/development
|
269
|
+
- test/mocks/headline.rb
|
270
|
+
- test/mocks/svn_reporter.rb
|
271
|
+
- test/mocks/test
|
272
|
+
- test/unit/settings_test.rb
|
273
|
+
- test/unit/cache_reporter_fetcher_test.rb
|
274
|
+
- test/unit/cache_reporter_test.rb
|
275
|
+
- test/unit/string_extensions_test.rb
|
276
|
+
- test/unit/reporter_fetcher_test.rb
|
277
|
+
- test/unit/page_test.rb
|
278
|
+
- test/unit/runner_test.rb
|
279
|
+
- test/unit/translator_test.rb
|
280
|
+
- test/unit/user_test.rb
|
281
|
+
- test/unit/darcs_reporter_test.rb
|
282
|
+
- test/unit/reporter_driver_test.rb
|
283
|
+
- test/unit/svn_connection_test.rb
|
284
|
+
- test/unit/chdir_runner_test.rb
|
285
|
+
- test/unit/revision_test.rb
|
286
|
+
- test/unit/diff_table_builder_test.rb
|
287
|
+
- test/unit/change_test.rb
|
288
|
+
- test/unit/relative_time_test.rb
|
289
|
+
- test/unit/headline_test.rb
|
290
|
+
- test/unit/wiki_reporter_test.rb
|
291
|
+
- test/unit/svn_reporter_test.rb
|
292
|
+
- test/unit/darcs_connection_test.rb
|
293
|
+
- test/unit/wiki_renderer_test.rb
|
294
|
+
- test/unit/caching_test.rb
|
295
|
+
- test/unit/svn_reporter_interaction_test.rb
|
296
|
+
- test/unit/chief_editor_test.rb
|
297
|
+
- test/unit/svn_settings_test.rb
|
298
|
+
- test/unit/default_page_provider_test.rb
|
299
|
+
- test/unit/darcs_settings_test.rb
|
300
|
+
- test/unit/darcs_temp_repo_test.rb
|
301
|
+
- test/unit/wiki_url_generator_test.rb
|
302
|
+
- test/unit/reporter_test.rb
|
303
|
+
- installer/rails_installer_defaults.yml
|
304
|
+
- vendor/plugins/global_routing
|
311
305
|
- vendor/plugins/globalize
|
306
|
+
- vendor/plugins/test_xml
|
307
|
+
- vendor/plugins/global_routing/init.rb
|
308
|
+
- vendor/plugins/globalize/init.rb
|
309
|
+
- vendor/plugins/globalize/populators
|
310
|
+
- vendor/plugins/globalize/lib
|
311
|
+
- vendor/plugins/globalize/README
|
312
|
+
- vendor/plugins/globalize/data
|
312
313
|
- vendor/plugins/globalize/test
|
313
|
-
- vendor/plugins/globalize/
|
314
|
-
- vendor/plugins/globalize/
|
314
|
+
- vendor/plugins/globalize/tasks
|
315
|
+
- vendor/plugins/globalize/LICENSE
|
316
|
+
- vendor/plugins/globalize/generators
|
317
|
+
- vendor/plugins/globalize/populators/pop_seps.rb
|
318
|
+
- vendor/plugins/globalize/populators/pop_dates.rb
|
319
|
+
- vendor/plugins/globalize/populators/pop_pluralization.rb
|
320
|
+
- vendor/plugins/globalize/populators/pop_migration.rb
|
321
|
+
- vendor/plugins/globalize/lib/globalize
|
322
|
+
- vendor/plugins/globalize/lib/globalize/localization
|
323
|
+
- vendor/plugins/globalize/lib/globalize/rails
|
324
|
+
- vendor/plugins/globalize/lib/globalize/models
|
325
|
+
- vendor/plugins/globalize/lib/globalize/localization/rfc_3066.rb
|
326
|
+
- vendor/plugins/globalize/lib/globalize/localization/locale.rb
|
327
|
+
- vendor/plugins/globalize/lib/globalize/localization/core_ext_hooks.rb
|
328
|
+
- vendor/plugins/globalize/lib/globalize/localization/db_view_translator.rb
|
329
|
+
- vendor/plugins/globalize/lib/globalize/localization/db_translate.rb
|
330
|
+
- vendor/plugins/globalize/lib/globalize/localization/core_ext.rb
|
331
|
+
- vendor/plugins/globalize/lib/globalize/rails/active_record.rb
|
332
|
+
- vendor/plugins/globalize/lib/globalize/rails/active_record_helper.rb
|
333
|
+
- vendor/plugins/globalize/lib/globalize/rails/action_view.rb
|
334
|
+
- vendor/plugins/globalize/lib/globalize/rails/action_mailer.rb
|
335
|
+
- vendor/plugins/globalize/lib/globalize/models/view_translation.rb
|
336
|
+
- vendor/plugins/globalize/lib/globalize/models/currency.rb
|
337
|
+
- vendor/plugins/globalize/lib/globalize/models/language.rb
|
338
|
+
- vendor/plugins/globalize/lib/globalize/models/model_translation.rb
|
339
|
+
- vendor/plugins/globalize/lib/globalize/models/translation.rb
|
340
|
+
- vendor/plugins/globalize/lib/globalize/models/country.rb
|
341
|
+
- vendor/plugins/globalize/data/country_data.csv
|
342
|
+
- vendor/plugins/globalize/data/translation_data.csv
|
343
|
+
- vendor/plugins/globalize/data/language_data.csv
|
344
|
+
- vendor/plugins/globalize/test/core_ext_test.rb
|
315
345
|
- vendor/plugins/globalize/test/db
|
316
|
-
- vendor/plugins/globalize/test/
|
317
|
-
- vendor/plugins/globalize/test/
|
346
|
+
- vendor/plugins/globalize/test/standard_data_test_helper.rb
|
347
|
+
- vendor/plugins/globalize/test/mime_responds_test.rb
|
348
|
+
- vendor/plugins/globalize/test/fixtures
|
349
|
+
- vendor/plugins/globalize/test/test_helper.rb
|
350
|
+
- vendor/plugins/globalize/test/db_translation_test.rb
|
351
|
+
- vendor/plugins/globalize/test/model_test.rb
|
352
|
+
- vendor/plugins/globalize/test/view_translation_test.rb
|
353
|
+
- vendor/plugins/globalize/test/config
|
318
354
|
- vendor/plugins/globalize/test/views
|
355
|
+
- vendor/plugins/globalize/test/date_helper_test.rb
|
356
|
+
- vendor/plugins/globalize/test/test_standard_data.rb
|
357
|
+
- vendor/plugins/globalize/test/action_mailer_test.rb
|
358
|
+
- vendor/plugins/globalize/test/log
|
359
|
+
- vendor/plugins/globalize/test/locale_test.rb
|
360
|
+
- vendor/plugins/globalize/test/view_picking_test.rb
|
361
|
+
- vendor/plugins/globalize/test/currency_test.rb
|
362
|
+
- vendor/plugins/globalize/test/validation_test.rb
|
363
|
+
- vendor/plugins/globalize/test/action_mailer_test
|
364
|
+
- vendor/plugins/globalize/test/unit
|
365
|
+
- vendor/plugins/globalize/test/db/schema.rb
|
366
|
+
- vendor/plugins/globalize/test/db/migrate
|
367
|
+
- vendor/plugins/globalize/test/fixtures/globalize_categories.yml
|
368
|
+
- vendor/plugins/globalize/test/fixtures/globalize_languages.yml
|
369
|
+
- vendor/plugins/globalize/test/fixtures/globalize_translations.yml
|
370
|
+
- vendor/plugins/globalize/test/fixtures/globalize_countries.yml
|
371
|
+
- vendor/plugins/globalize/test/fixtures/globalize_simples.yml
|
372
|
+
- vendor/plugins/globalize/test/fixtures/globalize_categories_products.yml
|
373
|
+
- vendor/plugins/globalize/test/fixtures/globalize_products.yml
|
374
|
+
- vendor/plugins/globalize/test/fixtures/globalize_manufacturers.yml
|
375
|
+
- vendor/plugins/globalize/test/config/database.yml.example
|
376
|
+
- vendor/plugins/globalize/test/config/database.yml.default
|
319
377
|
- vendor/plugins/globalize/test/views/layouts
|
320
|
-
- vendor/plugins/globalize/test/views/
|
378
|
+
- vendor/plugins/globalize/test/views/test.rhtml
|
379
|
+
- vendor/plugins/globalize/test/views/test2.he.rhtml
|
380
|
+
- vendor/plugins/globalize/test/views/test2.rhtml
|
321
381
|
- vendor/plugins/globalize/test/views/respond_to
|
382
|
+
- vendor/plugins/globalize/test/views/test.he-IL.rhtml
|
383
|
+
- vendor/plugins/globalize/test/views/layouts/standard.rhtml
|
384
|
+
- vendor/plugins/globalize/test/views/respond_to/using_defaults.en.rjs
|
385
|
+
- vendor/plugins/globalize/test/views/respond_to/using_defaults.en.rxml
|
322
386
|
- vendor/plugins/globalize/test/views/respond_to/using_defaults.fr.rjs
|
323
|
-
- vendor/plugins/globalize/test/views/respond_to/all_types_with_layout.rjs
|
324
|
-
- vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.rxml
|
325
|
-
- vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.en.rxml
|
326
|
-
- vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.rhtml
|
327
|
-
- vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.en.rhtml
|
328
387
|
- vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.fr.rxml
|
329
|
-
- vendor/plugins/globalize/test/views/respond_to/using_defaults.rxml
|
330
|
-
- vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.fr.rhtml
|
331
|
-
- vendor/plugins/globalize/test/views/respond_to/using_defaults.en.rxml
|
332
|
-
- vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.rjs
|
333
388
|
- vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.en.rjs
|
389
|
+
- vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.rjs
|
390
|
+
- vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.fr.rhtml
|
391
|
+
- vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.en.rxml
|
392
|
+
- vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.en.rhtml
|
334
393
|
- vendor/plugins/globalize/test/views/respond_to/using_defaults.rhtml
|
335
|
-
- vendor/plugins/globalize/test/views/respond_to/
|
336
|
-
- vendor/plugins/globalize/test/views/respond_to/
|
337
|
-
- vendor/plugins/globalize/test/views/respond_to/
|
394
|
+
- vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.rhtml
|
395
|
+
- vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.rxml
|
396
|
+
- vendor/plugins/globalize/test/views/respond_to/all_types_with_layout.rhtml
|
338
397
|
- vendor/plugins/globalize/test/views/respond_to/using_defaults.fr.rhtml
|
398
|
+
- vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.fr.rjs
|
399
|
+
- vendor/plugins/globalize/test/views/respond_to/using_defaults.fr.rxml
|
400
|
+
- vendor/plugins/globalize/test/views/respond_to/using_defaults.rxml
|
339
401
|
- vendor/plugins/globalize/test/views/respond_to/using_defaults.rjs
|
340
|
-
- vendor/plugins/globalize/test/views/respond_to/
|
341
|
-
- vendor/plugins/globalize/test/views/respond_to/
|
342
|
-
- vendor/plugins/globalize/test/views/test.he-IL.rhtml
|
343
|
-
- vendor/plugins/globalize/test/views/test2.he.rhtml
|
344
|
-
- vendor/plugins/globalize/test/views/test.rhtml
|
345
|
-
- vendor/plugins/globalize/test/views/test2.rhtml
|
346
|
-
- vendor/plugins/globalize/test/config
|
347
|
-
- vendor/plugins/globalize/test/config/database.yml.default
|
348
|
-
- vendor/plugins/globalize/test/config/database.yml.example
|
349
|
-
- vendor/plugins/globalize/test/action_mailer_test
|
402
|
+
- vendor/plugins/globalize/test/views/respond_to/using_defaults.en.rhtml
|
403
|
+
- vendor/plugins/globalize/test/views/respond_to/all_types_with_layout.rjs
|
350
404
|
- vendor/plugins/globalize/test/action_mailer_test/globalize_mailer
|
405
|
+
- vendor/plugins/globalize/test/action_mailer_test/globalize_mailer/test.en.plain.text.rhtml
|
406
|
+
- vendor/plugins/globalize/test/action_mailer_test/globalize_mailer/test.plain.text.rhtml
|
351
407
|
- vendor/plugins/globalize/test/action_mailer_test/globalize_mailer/test.en-US.plain.text.rhtml
|
352
408
|
- vendor/plugins/globalize/test/action_mailer_test/globalize_mailer/test.he.plain.text.rhtml
|
353
|
-
- vendor/plugins/globalize/test/action_mailer_test/globalize_mailer/test.plain.text.rhtml
|
354
|
-
- vendor/plugins/globalize/test/action_mailer_test/globalize_mailer/test.en.plain.text.rhtml
|
355
|
-
- vendor/plugins/globalize/test/fixtures
|
356
|
-
- vendor/plugins/globalize/test/fixtures/globalize_categories_products.yml
|
357
|
-
- vendor/plugins/globalize/test/fixtures/globalize_countries.yml
|
358
|
-
- vendor/plugins/globalize/test/fixtures/globalize_simples.yml
|
359
|
-
- vendor/plugins/globalize/test/fixtures/globalize_manufacturers.yml
|
360
|
-
- vendor/plugins/globalize/test/fixtures/globalize_translations.yml
|
361
|
-
- vendor/plugins/globalize/test/fixtures/globalize_products.yml
|
362
|
-
- vendor/plugins/globalize/test/fixtures/globalize_categories.yml
|
363
|
-
- vendor/plugins/globalize/test/fixtures/globalize_languages.yml
|
364
|
-
- vendor/plugins/globalize/test/view_picking_test.rb
|
365
|
-
- vendor/plugins/globalize/test/test_helper.rb
|
366
|
-
- vendor/plugins/globalize/test/standard_data_test_helper.rb
|
367
|
-
- vendor/plugins/globalize/test/view_translation_test.rb
|
368
|
-
- vendor/plugins/globalize/test/test_standard_data.rb
|
369
|
-
- vendor/plugins/globalize/test/currency_test.rb
|
370
|
-
- vendor/plugins/globalize/test/validation_test.rb
|
371
|
-
- vendor/plugins/globalize/test/locale_test.rb
|
372
|
-
- vendor/plugins/globalize/test/model_test.rb
|
373
|
-
- vendor/plugins/globalize/test/db_translation_test.rb
|
374
|
-
- vendor/plugins/globalize/test/mime_responds_test.rb
|
375
|
-
- vendor/plugins/globalize/test/action_mailer_test.rb
|
376
|
-
- vendor/plugins/globalize/test/core_ext_test.rb
|
377
|
-
- vendor/plugins/globalize/test/date_helper_test.rb
|
378
|
-
- vendor/plugins/globalize/tasks
|
379
409
|
- vendor/plugins/globalize/tasks/data.rake
|
380
|
-
- vendor/plugins/globalize/lib
|
381
|
-
- vendor/plugins/globalize/lib/globalize
|
382
|
-
- vendor/plugins/globalize/lib/globalize/models
|
383
|
-
- vendor/plugins/globalize/lib/globalize/models/model_translation.rb
|
384
|
-
- vendor/plugins/globalize/lib/globalize/models/translation.rb
|
385
|
-
- vendor/plugins/globalize/lib/globalize/models/country.rb
|
386
|
-
- vendor/plugins/globalize/lib/globalize/models/language.rb
|
387
|
-
- vendor/plugins/globalize/lib/globalize/models/view_translation.rb
|
388
|
-
- vendor/plugins/globalize/lib/globalize/models/currency.rb
|
389
|
-
- vendor/plugins/globalize/lib/globalize/localization
|
390
|
-
- vendor/plugins/globalize/lib/globalize/localization/locale.rb
|
391
|
-
- vendor/plugins/globalize/lib/globalize/localization/db_translate.rb
|
392
|
-
- vendor/plugins/globalize/lib/globalize/localization/core_ext.rb
|
393
|
-
- vendor/plugins/globalize/lib/globalize/localization/db_view_translator.rb
|
394
|
-
- vendor/plugins/globalize/lib/globalize/localization/rfc_3066.rb
|
395
|
-
- vendor/plugins/globalize/lib/globalize/localization/core_ext_hooks.rb
|
396
|
-
- vendor/plugins/globalize/lib/globalize/rails
|
397
|
-
- vendor/plugins/globalize/lib/globalize/rails/action_mailer.rb
|
398
|
-
- vendor/plugins/globalize/lib/globalize/rails/action_view.rb
|
399
|
-
- vendor/plugins/globalize/lib/globalize/rails/active_record_helper.rb
|
400
|
-
- vendor/plugins/globalize/lib/globalize/rails/active_record.rb
|
401
|
-
- vendor/plugins/globalize/populators
|
402
|
-
- vendor/plugins/globalize/populators/pop_dates.rb
|
403
|
-
- vendor/plugins/globalize/populators/pop_migration.rb
|
404
|
-
- vendor/plugins/globalize/populators/pop_seps.rb
|
405
|
-
- vendor/plugins/globalize/populators/pop_pluralization.rb
|
406
|
-
- vendor/plugins/globalize/data
|
407
|
-
- vendor/plugins/globalize/data/translation_data.csv
|
408
|
-
- vendor/plugins/globalize/data/country_data.csv
|
409
|
-
- vendor/plugins/globalize/data/language_data.csv
|
410
|
-
- vendor/plugins/globalize/generators
|
411
410
|
- vendor/plugins/globalize/generators/globalize
|
411
|
+
- vendor/plugins/globalize/generators/globalize/USAGE
|
412
|
+
- vendor/plugins/globalize/generators/globalize/globalize_generator.rb
|
412
413
|
- vendor/plugins/globalize/generators/globalize/templates
|
413
|
-
- vendor/plugins/globalize/generators/globalize/templates/migration.rb.gz
|
414
414
|
- vendor/plugins/globalize/generators/globalize/templates/tiny_migration.rb.gz
|
415
|
-
- vendor/plugins/globalize/generators/globalize/
|
416
|
-
- vendor/plugins/
|
417
|
-
- vendor/plugins/
|
418
|
-
- vendor/plugins/
|
419
|
-
- vendor/plugins/
|
415
|
+
- vendor/plugins/globalize/generators/globalize/templates/migration.rb.gz
|
416
|
+
- vendor/plugins/test_xml/init.rb
|
417
|
+
- vendor/plugins/test_xml/lib
|
418
|
+
- vendor/plugins/test_xml/MIT-LICENSE
|
419
|
+
- vendor/plugins/test_xml/Rakefile
|
420
|
+
- vendor/plugins/test_xml/README
|
421
|
+
- vendor/plugins/test_xml/test
|
422
|
+
- vendor/plugins/test_xml/lib/xml_assertions.rb
|
423
|
+
- vendor/plugins/test_xml/test/test_xml_test.rb
|
420
424
|
- log/.keepdir
|
421
425
|
- vendor/motiro-installer.rb
|
422
426
|
test_files: []
|