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