adva-core 0.0.9 → 0.0.13

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. data/app/models/section.rb +0 -6
  2. data/app/views/admin/sites/index.html.rb +2 -2
  3. data/config/redirects.rb +2 -1
  4. data/lib/adva.rb +41 -0
  5. data/lib/adva/controller/internal_redirect.rb +2 -1
  6. data/lib/adva/core.rb +8 -0
  7. data/lib/adva/engine.rb +1 -0
  8. data/lib/adva/generators/app.rb +7 -8
  9. data/lib/adva/generators/templates/app/Gemfile +4 -4
  10. data/lib/adva/generators/templates/app/Thorfile +9 -0
  11. data/lib/adva/generators/templates/app/app_template.rb +4 -2
  12. data/lib/adva/generators/templates/engine/Gemfile.erb +15 -0
  13. data/lib/adva/testing.rb +9 -2
  14. data/lib/adva/testing/engine.rb +1 -0
  15. data/lib/adva/view/form.rb +4 -1
  16. data/lib/adva_core/version.rb +1 -1
  17. data/lib/bundler/repository.rb +117 -0
  18. data/lib/patches/inherited_resources.rb +4 -3
  19. data/lib/patches/rails/integretion_runner_respond_to.rb +1 -1
  20. data/lib/patches/rails/polymorphic_url_for.rb +3 -1
  21. data/lib/patches/rails/recognize_path_env.rb +33 -29
  22. data/lib/patches/rails/route_set_to_param.rb +19 -17
  23. data/lib/patches/rails/route_set_trailing_segment.rb +1 -1
  24. data/lib/patches/rails/sti_associations.rb +10 -4
  25. data/lib/patches/rails/translation_helper.rb +2 -1
  26. data/lib/patches/responders/flash_responder.rb +1 -0
  27. data/lib/patches/simple_form.rb +2 -2
  28. data/lib/testing/env.rb +19 -13
  29. data/lib/testing/factories.rb +5 -1
  30. data/lib/testing/paths.rb +4 -4
  31. data/lib/testing/selectors.rb +72 -0
  32. data/lib/testing/step_definitions/capybara_steps.rb +211 -0
  33. data/lib/testing/step_definitions/common_steps.rb +87 -98
  34. data/lib/testing/step_definitions/debug_steps.rb +11 -4
  35. data/lib/testing/step_definitions/email_steps.rb +195 -0
  36. data/lib/testing/step_definitions/menu_steps.rb +7 -2
  37. data/lib/testing/step_definitions/more_web_steps.rb +4 -0
  38. data/lib/testing/step_definitions/pickle_steps.rb +104 -0
  39. data/lib/testing/step_definitions/transforms.rb +10 -1
  40. data/lib/testing/support/pickle.rb +24 -0
  41. data/public/javascripts/adva-core/jquery/jquery.table_tree.js +5 -1
  42. metadata +340 -305
  43. data/lib/patches/rails/asset_expansion_multiple_registrations.rb +0 -21
  44. data/lib/patches/rails/template_resolver_caching.rb +0 -9
  45. data/lib/patches/webrat/links-data-method.rb +0 -15
  46. data/lib/patches/webrat/logger.rb +0 -14
  47. data/lib/patches/webrat/upload_file.rb +0 -23
  48. data/lib/patches/webrat/within_xpath.rb +0 -13
  49. data/lib/testing/step_definitions/webrat_steps.rb +0 -284
  50. data/lib/testing/step_definitions/within_steps.rb +0 -16
@@ -1,11 +1,16 @@
1
1
  Then /^the menu should contain the following items:$/ do |menu|
2
2
  menu.hashes.each do |item|
3
3
  if item['url'].empty?
4
- assert_select("#{item[:menu]} li h4", item['text'])
4
+ assert page.has_css?("#{item[:menu]} li h4", :text => item['text'])
5
5
  else
6
6
  active = item[:active] == 'yes' ? '.active' : ':not(.active)'
7
7
  url = item['url'].gsub('?', '\?').gsub('[', '\[').gsub(']', '\]').gsub(/\d+/, '[\d]*')
8
- assert_select("#{item[:menu]} li#{active} a[href=?]", %r(#{url}), item['text'])
8
+ url_matcher = %r(#{url})
9
+ menu = item[:menu] || 'body'
10
+ links = page.all(:css, "#{menu} li#{active} a", :text => item['text']).select do |a|
11
+ a['href'] =~ url_matcher
12
+ end
13
+ assert !links.empty?
9
14
  end
10
15
  end
11
16
  end
@@ -0,0 +1,4 @@
1
+ Then /^I should see flash message "([^"]*)"$/ do |message|
2
+ Then %Q{I should see "#{message}" within ".flash"}
3
+ end
4
+
@@ -0,0 +1,104 @@
1
+ # this file generated by script/generate pickle
2
+
3
+ # create a model
4
+ Given(/^#{capture_model} exists?(?: with #{capture_fields})?$/) do |name, fields|
5
+ create_model(name, fields)
6
+ end
7
+
8
+ # create n models
9
+ Given(/^(\d+) #{capture_plural_factory} exist(?: with #{capture_fields})?$/) do |count, plural_factory, fields|
10
+ count.to_i.times { create_model(plural_factory.singularize, fields) }
11
+ end
12
+
13
+ # create models from a table
14
+ Given(/^the following #{capture_plural_factory} exists?:?$/) do |plural_factory, table|
15
+ create_models_from_table(plural_factory, table)
16
+ end
17
+
18
+ # find a model
19
+ Then(/^#{capture_model} should exist(?: with #{capture_fields})?$/) do |name, fields|
20
+ find_model!(name, fields)
21
+ end
22
+
23
+ # not find a model
24
+ Then(/^#{capture_model} should not exist(?: with #{capture_fields})?$/) do |name, fields|
25
+ find_model(name, fields).should be_nil
26
+ end
27
+
28
+ # find models with a table
29
+ Then(/^the following #{capture_plural_factory} should exists?:?$/) do |plural_factory, table|
30
+ find_models_from_table(plural_factory, table).should_not be_any(&:nil?)
31
+ end
32
+
33
+ # find exactly n models
34
+ Then(/^(\d+) #{capture_plural_factory} should exist(?: with #{capture_fields})?$/) do |count, plural_factory, fields|
35
+ find_models(plural_factory.singularize, fields).size.should == count.to_i
36
+ end
37
+
38
+ # assert equality of models
39
+ Then(/^#{capture_model} should be #{capture_model}$/) do |a, b|
40
+ model!(a).should == model!(b)
41
+ end
42
+
43
+ # assert model is in another model's has_many assoc
44
+ Then(/^#{capture_model} should be (?:in|one of|amongst) #{capture_model}(?:'s)? (\w+)$/) do |target, owner, association|
45
+ model!(owner).send(association).should include(model!(target))
46
+ end
47
+
48
+ # assert model is not in another model's has_many assoc
49
+ Then(/^#{capture_model} should not be (?:in|one of|amongst) #{capture_model}(?:'s)? (\w+)$/) do |target, owner, association|
50
+ model!(owner).send(association).should_not include(model!(target))
51
+ end
52
+
53
+ # assert model is another model's has_one/belongs_to assoc
54
+ Then(/^#{capture_model} should be #{capture_model}(?:'s)? (\w+)$/) do |target, owner, association|
55
+ model!(owner).send(association).should == model!(target)
56
+ end
57
+
58
+ # assert model is not another model's has_one/belongs_to assoc
59
+ Then(/^#{capture_model} should not be #{capture_model}(?:'s)? (\w+)$/) do |target, owner, association|
60
+ model!(owner).send(association).should_not == model!(target)
61
+ end
62
+
63
+ # assert model.predicate?
64
+ #
65
+ # disabled because it causes the regexp to become too big, see
66
+ # http://stackoverflow.com/questions/2789220/regular-expression-too-big-error-for-cucumber-pickle
67
+ # http://groups.google.com/group/pickle-cucumber/browse_thread/thread/c6be23c6247fa0dd
68
+ #Then(/^#{capture_model} should (?:be|have) (?:an? )?#{capture_predicate}$/) do |name, predicate|
69
+ # if model!(name).respond_to?("has_#{predicate.gsub(' ', '_')}")
70
+ # model!(name).should send("have_#{predicate.gsub(' ', '_')}")
71
+ # else
72
+ # model!(name).should send("be_#{predicate.gsub(' ', '_')}")
73
+ # end
74
+ #end
75
+ #
76
+ ## assert not model.predicate?
77
+ #Then(/^#{capture_model} should not (?:be|have) (?:an? )?#{capture_predicate}$/) do |name, predicate|
78
+ # if model!(name).respond_to?("has_#{predicate.gsub(' ', '_')}")
79
+ # model!(name).should_not send("have_#{predicate.gsub(' ', '_')}")
80
+ # else
81
+ # model!(name).should_not send("be_#{predicate.gsub(' ', '_')}")
82
+ # end
83
+ #end
84
+
85
+ # model.attribute.should eql(value)
86
+ # model.attribute.should_not eql(value)
87
+ Then(/^#{capture_model}'s (\w+) (should(?: not)?) be #{capture_value}$/) do |name, attribute, expectation, expected|
88
+ actual_value = model(name).send(attribute)
89
+ expectation = expectation.gsub(' ', '_')
90
+
91
+ case expected
92
+ when 'nil', 'true', 'false'
93
+ actual_value.send(expectation, send("be_#{expected}"))
94
+ when /^[+-]?[0-9_]+(\.\d+)?$/
95
+ actual_value.send(expectation, eql(expected.to_f))
96
+ else
97
+ actual_value.to_s.send(expectation, eql(eval(expected)))
98
+ end
99
+ end
100
+
101
+ # assert size of association
102
+ Then /^#{capture_model} should have (\d+) (\w+)$/ do |name, size, association|
103
+ model!(name).send(association).size.should == size.to_i
104
+ end
@@ -3,7 +3,16 @@
3
3
  # works for both normal tables and row_hash tables):
4
4
  timezonify = lambda do |table|
5
5
  dates = table.headers.select { |header| header =~ /(_at|_on)$/ }
6
- dates.each { |date| table.map_column!(date) { |date| DateTime.parse(date).in_time_zone if date.present? && date != '-' } }
6
+ dates.each do |col|
7
+ table.map_column!(col) do |val|
8
+ if val =~ /^(\d+)\s+(second|minute|hour|day|month|year)s?\s+ago$/
9
+ quantity, unit = $1, $2
10
+ quantity.to_i.send(unit.to_sym).ago
11
+ else
12
+ DateTime.parse(val).in_time_zone if val.present? && val != '-'
13
+ end
14
+ end
15
+ end
7
16
  table.transpose
8
17
  end
9
18
 
@@ -0,0 +1,24 @@
1
+ # this file generated by script/generate pickle [paths] [email]
2
+ #
3
+ # Make sure that you are loading your factory of choice in your cucumber environment
4
+ #
5
+ # For machinist add: features/support/machinist.rb
6
+ #
7
+ # require 'machinist/active_record' # or your chosen adaptor
8
+ # require File.dirname(__FILE__) + '/../../spec/blueprints' # or wherever your blueprints are
9
+ # Before { Sham.reset } # to reset Sham's seed between scenarios so each run has same random sequences
10
+ #
11
+ # For FactoryGirl add: features/support/factory_girl.rb
12
+ #
13
+ # require 'factory_girl'
14
+ # require File.dirname(__FILE__) + '/../../spec/factories' # or wherever your factories are
15
+ #
16
+ # You may also need to add gem dependencies on your factory of choice in <tt>config/environments/cucumber.rb</tt>
17
+
18
+ require 'pickle/world'
19
+ # Example of configuring pickle:
20
+ #
21
+ # Pickle.configure do |config|
22
+ # config.adapters = [:machinist]
23
+ # config.map 'I', 'myself', 'me', 'my', :to => 'user: "me"'
24
+ # end
@@ -154,11 +154,15 @@ TableTree.Table.prototype = jQuery.extend(new TableTree.Base(), {
154
154
  _this = this;
155
155
 
156
156
  this.show_spinner(row);
157
+
158
+ var dataArray = jQuery.extend(this.serialize(row), { '_method': 'put' });
159
+ var csrfParam = $('meta[name=csrf-param]').attr('content');
160
+ dataArray[csrfParam] = $('meta[name=csrf-token]').attr('content');
157
161
  $.ajax({
158
162
  type: "POST",
159
163
  url: this.remote_url,
160
164
  dataType: 'json',
161
- data: jQuery.extend(this.serialize(row), { authenticity_token: window._auth_token, '_method': 'put' }),
165
+ data: dataArray,
162
166
  success: function(msg) { _this.hide_spinner(row); },
163
167
  error: function(msg) { _this.hide_spinner(row); }
164
168
  });
metadata CHANGED
@@ -1,23 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: adva-core
3
3
  version: !ruby/object:Gem::Version
4
- hash: 13
4
+ hash: 5
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 9
10
- version: 0.0.9
9
+ - 13
10
+ version: 0.0.13
11
11
  platform: ruby
12
12
  authors:
13
- - Ingo Weiss
14
13
  - Sven Fuchs
14
+ - Ingo Weiss
15
+ - Raphaela Wrede
16
+ - Matthias Viehweger
17
+ - Niklas Hofer
18
+ - Chris Floess
19
+ - Johannes Strampe
15
20
  autorequire:
16
21
  bindir: bin
17
22
  cert_chain: []
18
23
 
19
- date: 2011-02-28 00:00:00 +01:00
20
- default_executable:
24
+ date: 2011-07-29 00:00:00 Z
21
25
  dependencies:
22
26
  - !ruby/object:Gem::Dependency
23
27
  name: rails
@@ -27,18 +31,34 @@ dependencies:
27
31
  requirements:
28
32
  - - "="
29
33
  - !ruby/object:Gem::Version
30
- hash: 1
34
+ hash: 21
31
35
  segments:
32
36
  - 3
33
37
  - 0
34
- - 3
35
- version: 3.0.3
38
+ - 9
39
+ version: 3.0.9
36
40
  type: :runtime
37
41
  version_requirements: *id001
38
42
  - !ruby/object:Gem::Dependency
39
- name: i18n
43
+ name: rake
40
44
  prerelease: false
41
45
  requirement: &id002 !ruby/object:Gem::Requirement
46
+ none: false
47
+ requirements:
48
+ - - "="
49
+ - !ruby/object:Gem::Version
50
+ hash: 63
51
+ segments:
52
+ - 0
53
+ - 9
54
+ - 2
55
+ version: 0.9.2
56
+ type: :runtime
57
+ version_requirements: *id002
58
+ - !ruby/object:Gem::Dependency
59
+ name: i18n
60
+ prerelease: false
61
+ requirement: &id003 !ruby/object:Gem::Requirement
42
62
  none: false
43
63
  requirements:
44
64
  - - "="
@@ -50,11 +70,11 @@ dependencies:
50
70
  - 0
51
71
  version: 0.5.0
52
72
  type: :runtime
53
- version_requirements: *id002
73
+ version_requirements: *id003
54
74
  - !ruby/object:Gem::Dependency
55
75
  name: activesupport-slices
56
76
  prerelease: false
57
- requirement: &id003 !ruby/object:Gem::Requirement
77
+ requirement: &id004 !ruby/object:Gem::Requirement
58
78
  none: false
59
79
  requirements:
60
80
  - - "="
@@ -66,11 +86,11 @@ dependencies:
66
86
  - 2
67
87
  version: 0.0.2
68
88
  type: :runtime
69
- version_requirements: *id003
89
+ version_requirements: *id004
70
90
  - !ruby/object:Gem::Dependency
71
91
  name: gem-patching
72
92
  prerelease: false
73
- requirement: &id004 !ruby/object:Gem::Requirement
93
+ requirement: &id005 !ruby/object:Gem::Requirement
74
94
  none: false
75
95
  requirements:
76
96
  - - "="
@@ -82,11 +102,11 @@ dependencies:
82
102
  - 3
83
103
  version: 0.0.3
84
104
  type: :runtime
85
- version_requirements: *id004
105
+ version_requirements: *id005
86
106
  - !ruby/object:Gem::Dependency
87
107
  name: routing-filter
88
108
  prerelease: false
89
- requirement: &id005 !ruby/object:Gem::Requirement
109
+ requirement: &id006 !ruby/object:Gem::Requirement
90
110
  none: false
91
111
  requirements:
92
112
  - - "="
@@ -98,75 +118,75 @@ dependencies:
98
118
  - 0
99
119
  version: 0.2.0
100
120
  type: :runtime
101
- version_requirements: *id005
121
+ version_requirements: *id006
102
122
  - !ruby/object:Gem::Dependency
103
123
  name: inherited_resources
104
124
  prerelease: false
105
- requirement: &id006 !ruby/object:Gem::Requirement
125
+ requirement: &id007 !ruby/object:Gem::Requirement
106
126
  none: false
107
127
  requirements:
108
128
  - - "="
109
129
  - !ruby/object:Gem::Version
110
- hash: 23
130
+ hash: 27
111
131
  segments:
112
132
  - 1
113
- - 1
114
133
  - 2
115
- version: 1.1.2
134
+ - 2
135
+ version: 1.2.2
116
136
  type: :runtime
117
- version_requirements: *id006
137
+ version_requirements: *id007
118
138
  - !ruby/object:Gem::Dependency
119
139
  name: inherited_resources_helpers
120
140
  prerelease: false
121
- requirement: &id007 !ruby/object:Gem::Requirement
141
+ requirement: &id008 !ruby/object:Gem::Requirement
122
142
  none: false
123
143
  requirements:
124
144
  - - "="
125
145
  - !ruby/object:Gem::Version
126
- hash: 3
146
+ hash: 1
127
147
  segments:
128
148
  - 0
129
149
  - 0
130
- - 14
131
- version: 0.0.14
150
+ - 15
151
+ version: 0.0.15
132
152
  type: :runtime
133
- version_requirements: *id007
153
+ version_requirements: *id008
134
154
  - !ruby/object:Gem::Dependency
135
155
  name: minimal
136
156
  prerelease: false
137
- requirement: &id008 !ruby/object:Gem::Requirement
157
+ requirement: &id009 !ruby/object:Gem::Requirement
138
158
  none: false
139
159
  requirements:
140
160
  - - "="
141
161
  - !ruby/object:Gem::Version
142
- hash: 45
162
+ hash: 43
143
163
  segments:
144
164
  - 0
145
165
  - 0
146
- - 25
147
- version: 0.0.25
166
+ - 26
167
+ version: 0.0.26
148
168
  type: :runtime
149
- version_requirements: *id008
169
+ version_requirements: *id009
150
170
  - !ruby/object:Gem::Dependency
151
171
  name: simple_form
152
172
  prerelease: false
153
- requirement: &id009 !ruby/object:Gem::Requirement
173
+ requirement: &id010 !ruby/object:Gem::Requirement
154
174
  none: false
155
175
  requirements:
156
- - - "="
176
+ - - ~>
157
177
  - !ruby/object:Gem::Version
158
178
  hash: 27
159
179
  segments:
160
180
  - 1
161
- - 2
162
- - 2
163
- version: 1.2.2
181
+ - 3
182
+ - 0
183
+ version: 1.3.0
164
184
  type: :runtime
165
- version_requirements: *id009
185
+ version_requirements: *id010
166
186
  - !ruby/object:Gem::Dependency
167
187
  name: simple_slugs
168
188
  prerelease: false
169
- requirement: &id010 !ruby/object:Gem::Requirement
189
+ requirement: &id011 !ruby/object:Gem::Requirement
170
190
  none: false
171
191
  requirements:
172
192
  - - "="
@@ -178,43 +198,43 @@ dependencies:
178
198
  - 8
179
199
  version: 0.0.8
180
200
  type: :runtime
181
- version_requirements: *id010
201
+ version_requirements: *id011
182
202
  - !ruby/object:Gem::Dependency
183
203
  name: simple_table
184
204
  prerelease: false
185
- requirement: &id011 !ruby/object:Gem::Requirement
205
+ requirement: &id012 !ruby/object:Gem::Requirement
186
206
  none: false
187
207
  requirements:
188
208
  - - "="
189
209
  - !ruby/object:Gem::Version
190
- hash: 63
210
+ hash: 59
191
211
  segments:
192
212
  - 0
193
213
  - 0
194
- - 16
195
- version: 0.0.16
214
+ - 18
215
+ version: 0.0.18
196
216
  type: :runtime
197
- version_requirements: *id011
217
+ version_requirements: *id012
198
218
  - !ruby/object:Gem::Dependency
199
219
  name: simple_nested_set
200
220
  prerelease: false
201
- requirement: &id012 !ruby/object:Gem::Requirement
221
+ requirement: &id013 !ruby/object:Gem::Requirement
202
222
  none: false
203
223
  requirements:
204
- - - "="
224
+ - - ~>
205
225
  - !ruby/object:Gem::Version
206
- hash: 37
226
+ hash: 11
207
227
  segments:
208
228
  - 0
209
- - 0
210
- - 29
211
- version: 0.0.29
229
+ - 1
230
+ - 8
231
+ version: 0.1.8
212
232
  type: :runtime
213
- version_requirements: *id012
233
+ version_requirements: *id013
214
234
  - !ruby/object:Gem::Dependency
215
235
  name: kronn-has_many_polymorphs
216
236
  prerelease: false
217
- requirement: &id013 !ruby/object:Gem::Requirement
237
+ requirement: &id014 !ruby/object:Gem::Requirement
218
238
  none: false
219
239
  requirements:
220
240
  - - "="
@@ -226,11 +246,11 @@ dependencies:
226
246
  - 2
227
247
  version: 3.0.2
228
248
  type: :runtime
229
- version_requirements: *id013
249
+ version_requirements: *id014
230
250
  - !ruby/object:Gem::Dependency
231
251
  name: i18n-missing_translations
232
252
  prerelease: false
233
- requirement: &id014 !ruby/object:Gem::Requirement
253
+ requirement: &id015 !ruby/object:Gem::Requirement
234
254
  none: false
235
255
  requirements:
236
256
  - - "="
@@ -242,11 +262,11 @@ dependencies:
242
262
  - 1
243
263
  version: 0.0.1
244
264
  type: :runtime
245
- version_requirements: *id014
265
+ version_requirements: *id015
246
266
  - !ruby/object:Gem::Dependency
247
267
  name: silence_log_tailer
248
268
  prerelease: false
249
- requirement: &id015 !ruby/object:Gem::Requirement
269
+ requirement: &id016 !ruby/object:Gem::Requirement
250
270
  none: false
251
271
  requirements:
252
272
  - - "="
@@ -258,8 +278,24 @@ dependencies:
258
278
  - 1
259
279
  version: 0.0.1
260
280
  type: :runtime
261
- version_requirements: *id015
262
- description: Core engine for adva-cms2
281
+ version_requirements: *id016
282
+ - !ruby/object:Gem::Dependency
283
+ name: sqlite3
284
+ prerelease: false
285
+ requirement: &id017 !ruby/object:Gem::Requirement
286
+ none: false
287
+ requirements:
288
+ - - "="
289
+ - !ruby/object:Gem::Version
290
+ hash: 19
291
+ segments:
292
+ - 1
293
+ - 3
294
+ - 4
295
+ version: 1.3.4
296
+ type: :development
297
+ version_requirements: *id017
298
+ description: Core engine for adva-cms2.
263
299
  email: nobody@adva-cms.org
264
300
  executables: []
265
301
 
@@ -268,297 +304,296 @@ extensions: []
268
304
  extra_rdoc_files: []
269
305
 
270
306
  files:
271
- - app/controllers/articles_controller.rb
272
- - app/controllers/installations_controller.rb
273
- - app/controllers/pages_controller.rb
274
- - app/controllers/sections_controller.rb
307
+ - app/controllers/admin/base_controller.rb
275
308
  - app/controllers/admin/pages_controller.rb
276
309
  - app/controllers/admin/sections_controller.rb
277
310
  - app/controllers/admin/sites_controller.rb
278
- - app/controllers/admin/base_controller.rb
311
+ - app/controllers/articles_controller.rb
279
312
  - app/controllers/base_controller.rb
313
+ - app/controllers/installations_controller.rb
314
+ - app/controllers/pages_controller.rb
315
+ - app/controllers/sections_controller.rb
316
+ - app/helpers/form_helper.rb
280
317
  - app/helpers/sections_helper.rb
281
318
  - app/helpers/url_helper.rb
282
- - app/helpers/form_helper.rb
283
- - app/views/layouts/default.rb
284
- - app/views/layouts/admin.rb
285
- - app/views/layouts/default/_menu.rb
286
- - app/views/layouts/simple.rb
287
- - app/views/layouts/admin/_top.rb
288
- - app/views/layouts/admin/_tabs.html.rb
289
- - app/views/layouts/admin/_header.rb
290
- - app/views/layouts/base.rb
291
- - app/views/pages/show.html.rb
292
- - app/views/installations/show.html.rb
293
- - app/views/installations/new.html.rb
319
+ - app/models/account.rb
320
+ - app/models/article.rb
321
+ - app/models/content.rb
322
+ - app/models/page.rb
323
+ - app/models/section.rb
324
+ - app/models/site.rb
294
325
  - app/views/admin/contents/_menu.html.rb
295
- - app/views/admin/pages/show.html.rb
296
- - app/views/admin/pages/new.html.rb
297
326
  - app/views/admin/pages/_menu.html.rb
298
- - app/views/admin/sections/index.html.rb
299
- - app/views/admin/sections/_section.html.rb
327
+ - app/views/admin/pages/new.html.rb
328
+ - app/views/admin/pages/show.html.rb
300
329
  - app/views/admin/sections/_menu.html.rb
330
+ - app/views/admin/sections/_section.html.rb
301
331
  - app/views/admin/sections/_select_type.html.rb
302
- - app/views/admin/sites/index.html.rb
303
- - app/views/admin/sites/show.html.rb
332
+ - app/views/admin/sections/index.html.rb
333
+ - app/views/admin/sites/_menu.html.rb
304
334
  - app/views/admin/sites/edit.html.rb
335
+ - app/views/admin/sites/index.html.rb
305
336
  - app/views/admin/sites/new.html.rb
306
- - app/views/admin/sites/_menu.html.rb
307
- - app/models/page.rb
308
- - app/models/site.rb
309
- - app/models/content.rb
310
- - app/models/article.rb
311
- - app/models/section.rb
312
- - app/models/account.rb
337
+ - app/views/admin/sites/show.html.rb
338
+ - app/views/installations/new.html.rb
339
+ - app/views/installations/show.html.rb
340
+ - app/views/layouts/admin/_header.rb
341
+ - app/views/layouts/admin/_tabs.html.rb
342
+ - app/views/layouts/admin/_top.rb
343
+ - app/views/layouts/admin.rb
344
+ - app/views/layouts/base.rb
345
+ - app/views/layouts/default/_menu.rb
346
+ - app/views/layouts/default.rb
347
+ - app/views/layouts/simple.rb
348
+ - app/views/pages/show.html.rb
349
+ - config/initializers/simple_form.rb
350
+ - config/locales/en.yml
313
351
  - config/redirects.rb
314
352
  - config/routes.rb
315
- - config/locales/en.yml
316
- - config/initializers/simple_form.rb
317
- - lib/webrat/integrations/rails.rb
318
- - lib/core_ext/rails/action_view/has_many_through_collection_helpers.rb
319
- - lib/core_ext/rails/active_record/skip_callbacks.rb
320
- - lib/core_ext/ruby/kernel/silence_stream.rb
321
- - lib/core_ext/ruby/module/include_anonymous.rb
322
- - lib/core_ext/ruby/module/option_reader.rb
323
- - lib/core_ext/ruby/array/flatten_once.rb
324
- - lib/patches/webrat/logger.rb
325
- - lib/patches/webrat/upload_file.rb
326
- - lib/patches/webrat/within_xpath.rb
327
- - lib/patches/webrat/links-data-method.rb
328
- - lib/patches/rails/asset_expansion_multiple_registrations.rb
329
- - lib/patches/rails/recognize_path_env.rb
330
- - lib/patches/rails/template_resolver_caching.rb
331
- - lib/patches/rails/route_set_trailing_segment.rb
332
- - lib/patches/rails/route_set_to_param.rb
333
- - lib/patches/rails/translation_helper.rb
334
- - lib/patches/rails/integretion_runner_respond_to.rb
335
- - lib/patches/rails/sti_associations.rb
336
- - lib/patches/rails/polymorphic_url_for.rb
337
- - lib/patches/inherited_resources.rb
338
- - lib/patches/responders/flash_responder.rb
339
- - lib/patches/simple_form.rb
340
- - lib/patches/thor/group/symbolized_options.rb
341
- - lib/patches/thor/core_ext/hash.rb
342
- - lib/adva-core.rb
343
- - lib/adva/tasks/core.rake
344
- - lib/adva/tasks/core.rb
353
+ - lib/adva/active_record/has_one_default.rb
354
+ - lib/adva/active_record/has_options.rb
345
355
  - lib/adva/cli.rb
346
- - lib/adva/generators.rb
347
- - lib/adva/controller/references.rb
348
- - lib/adva/controller/internal_redirect.rb
349
356
  - lib/adva/controller/abstract_actions.rb
350
- - lib/adva/registry.rb
351
- - lib/adva/testing.rb
357
+ - lib/adva/controller/internal_redirect.rb
358
+ - lib/adva/controller/references.rb
359
+ - lib/adva/controller.rb
360
+ - lib/adva/core.rb
361
+ - lib/adva/engine.rb
352
362
  - lib/adva/generators/app.rb
353
- - lib/adva/generators/install.rb
363
+ - lib/adva/generators/engine.rb
354
364
  - lib/adva/generators/gemfile.rb
355
- - lib/adva/generators/templates/engine/migration.rb.erb
356
- - lib/adva/generators/templates/engine/feature.erb
357
- - lib/adva/generators/templates/engine/test_helper.rb.erb
358
- - lib/adva/generators/templates/engine/paths.rb.erb
359
- - lib/adva/generators/templates/engine/env.rb
360
- - lib/adva/generators/templates/engine/engine.rb.erb
361
- - lib/adva/generators/templates/engine/routes.rb.erb
365
+ - lib/adva/generators/install.rb
366
+ - lib/adva/generators/templates/app/app_template.rb
367
+ - lib/adva/generators/templates/app/Gemfile
368
+ - lib/adva/generators/templates/app/Thorfile
369
+ - lib/adva/generators/templates/engine/all.rb
362
370
  - lib/adva/generators/templates/engine/en.yml.erb
371
+ - lib/adva/generators/templates/engine/engine.rb.erb
372
+ - lib/adva/generators/templates/engine/env.rb
373
+ - lib/adva/generators/templates/engine/feature.erb
374
+ - lib/adva/generators/templates/engine/Gemfile.erb
363
375
  - lib/adva/generators/templates/engine/gemspec.erb
376
+ - lib/adva/generators/templates/engine/migration.rb.erb
377
+ - lib/adva/generators/templates/engine/paths.rb.erb
364
378
  - lib/adva/generators/templates/engine/redirects.rb.erb
365
- - lib/adva/generators/templates/engine/Gemfile.erb
366
- - lib/adva/generators/templates/engine/all.rb
367
- - lib/adva/generators/templates/app/Gemfile
368
- - lib/adva/generators/templates/app/app_template.rb
369
- - lib/adva/generators/engine.rb
370
- - lib/adva/responder/redirect.rb
371
- - lib/adva/core.rb
372
- - lib/adva/active_record/has_one_default.rb
373
- - lib/adva/active_record/has_options.rb
379
+ - lib/adva/generators/templates/engine/routes.rb.erb
380
+ - lib/adva/generators/templates/engine/test_helper.rb.erb
381
+ - lib/adva/generators.rb
374
382
  - lib/adva/rack/static.rb
375
383
  - lib/adva/rack.rb
376
- - lib/adva/view.rb
377
- - lib/adva/testing/engine.rb
384
+ - lib/adva/registry.rb
385
+ - lib/adva/responder/redirect.rb
378
386
  - lib/adva/responder.rb
379
- - lib/adva/routing_filters/section_root.rb
380
387
  - lib/adva/routing_filters/section_path.rb
381
- - lib/adva/view/tabs.rb
388
+ - lib/adva/routing_filters/section_root.rb
389
+ - lib/adva/tasks/core.rake
390
+ - lib/adva/tasks/core.rb
391
+ - lib/adva/testing/engine.rb
392
+ - lib/adva/testing.rb
393
+ - lib/adva/view/form/tabs.rb
394
+ - lib/adva/view/form.rb
395
+ - lib/adva/view/helper/i18n.rb
382
396
  - lib/adva/view/menu/admin.rb
383
397
  - lib/adva/view/menu/items.rb
384
- - lib/adva/view/form.rb
385
398
  - lib/adva/view/menu.rb
386
- - lib/adva/view/helper/i18n.rb
387
- - lib/adva/view/form/tabs.rb
388
- - lib/adva/controller.rb
389
- - lib/adva/engine.rb
399
+ - lib/adva/view/tabs.rb
400
+ - lib/adva/view.rb
401
+ - lib/adva-core.rb
390
402
  - lib/adva.rb
391
- - lib/testing/helpers/global_helpers.rb
392
- - lib/testing/env.rb
393
- - lib/testing/step_definitions/routes_steps.rb
394
- - lib/testing/step_definitions/common_steps.rb
395
- - lib/testing/step_definitions/debug_steps.rb
396
- - lib/testing/step_definitions/webrat_steps.rb
397
- - lib/testing/step_definitions/menu_steps.rb
398
- - lib/testing/step_definitions/transforms.rb
399
- - lib/testing/step_definitions/within_steps.rb
400
- - lib/testing/factories.rb
403
+ - lib/adva_core/version.rb
404
+ - lib/bundler/repository.rb
405
+ - lib/core_ext/rails/action_view/has_many_through_collection_helpers.rb
406
+ - lib/core_ext/rails/active_record/skip_callbacks.rb
407
+ - lib/core_ext/ruby/array/flatten_once.rb
408
+ - lib/core_ext/ruby/kernel/silence_stream.rb
409
+ - lib/core_ext/ruby/module/include_anonymous.rb
410
+ - lib/core_ext/ruby/module/option_reader.rb
411
+ - lib/patches/inherited_resources.rb
412
+ - lib/patches/rails/integretion_runner_respond_to.rb
413
+ - lib/patches/rails/polymorphic_url_for.rb
414
+ - lib/patches/rails/recognize_path_env.rb
415
+ - lib/patches/rails/route_set_to_param.rb
416
+ - lib/patches/rails/route_set_trailing_segment.rb
417
+ - lib/patches/rails/sti_associations.rb
418
+ - lib/patches/rails/translation_helper.rb
419
+ - lib/patches/responders/flash_responder.rb
420
+ - lib/patches/simple_form.rb
421
+ - lib/patches/thor/core_ext/hash.rb
422
+ - lib/patches/thor/group/symbolized_options.rb
401
423
  - lib/testing/assertions.rb
424
+ - lib/testing/env.rb
425
+ - lib/testing/factories.rb
426
+ - lib/testing/helpers/global_helpers.rb
402
427
  - lib/testing/paths.rb
403
- - lib/adva_core/version.rb
404
- - public/stylesheets/adva-core/common/styles.css
405
- - public/stylesheets/adva-core/common/layout.css
406
- - public/stylesheets/adva-core/common/reset.css
407
- - public/stylesheets/adva-core/common/forms.css
408
- - public/stylesheets/adva-core/simple/layout.css
409
- - public/stylesheets/adva-core/default/styles.css
410
- - public/stylesheets/adva-core/default/layout.css
411
- - public/stylesheets/adva-core/admin/navigation.css
412
- - public/stylesheets/adva-core/admin/styles.css
413
- - public/stylesheets/adva-core/admin/layout.css
414
- - public/stylesheets/adva-core/admin/lists.css
415
- - public/stylesheets/adva-core/admin/sidebar.css
416
- - public/stylesheets/adva-core/admin/forms.css
417
- - public/stylesheets/backup/alternate/header.css
418
- - public/stylesheets/backup/alternate/layout.css
419
- - public/stylesheets/backup/alternate/lists.css
420
- - public/stylesheets/backup/alternate/common.css
421
- - public/stylesheets/backup/alternate/top.css
422
- - public/stylesheets/backup/alternate/sidebar.css
423
- - public/stylesheets/backup/alternate/forms.css
424
- - public/stylesheets/backup/users.css
425
- - public/stylesheets/backup/layout.css
426
- - public/stylesheets/backup/projection.css
427
- - public/stylesheets/backup/jquery/alternate/jquery.tooltip.css
428
- - public/stylesheets/backup/jquery/jquery.tooltip.css
429
- - public/stylesheets/backup/jquery/jquery-ui.css
430
- - public/stylesheets/backup/jquery/images/ui-icons_888888_256x240.png
431
- - public/stylesheets/backup/jquery/images/ui-icons_cd0a0a_256x240.png
432
- - public/stylesheets/backup/jquery/images/ui-bg_glass_55_fbf9ee_1x400.png
433
- - public/stylesheets/backup/jquery/images/ui-icons_2e83ff_256x240.png
434
- - public/stylesheets/backup/jquery/images/ui-icons_454545_256x240.png
435
- - public/stylesheets/backup/jquery/images/ui-icons_222222_256x240.png
436
- - public/stylesheets/backup/jquery/images/ui-bg_flat_75_ffffff_40x100.png
437
- - public/stylesheets/backup/jquery/images/ui-bg_flat_0_aaaaaa_40x100.png
438
- - public/stylesheets/backup/jquery/images/ui-bg_glass_75_e6e6e6_1x400.png
439
- - public/stylesheets/backup/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png
440
- - public/stylesheets/backup/jquery/images/ui-bg_glass_95_fef1ec_1x400.png
441
- - public/stylesheets/backup/jquery/images/ui-bg_glass_65_ffffff_1x400.png
442
- - public/stylesheets/backup/jquery/images/ui-bg_glass_75_dadada_1x400.png
443
- - public/stylesheets/backup/lists.css
444
- - public/stylesheets/backup/themes.css
445
- - public/stylesheets/backup/helptip.css
446
- - public/stylesheets/backup/content.css
447
- - public/stylesheets/backup/screen/top.css
448
- - public/stylesheets/backup/menu.css
449
- - public/javascripts/adva-core/admin.js
450
- - public/javascripts/adva-core/jquery/jquery-1.4.2.min.js
451
- - public/javascripts/adva-core/jquery/jquery.table_tree.js
452
- - public/javascripts/adva-core/jquery/jquery.tablednd_0_5.js
453
- - public/javascripts/adva-core/rails.js
454
- - public/javascripts/backup/controls.js
455
- - public/javascripts/backup/cookie.js
456
- - public/javascripts/backup/flash.js
457
- - public/javascripts/backup/roles.js
458
- - public/javascripts/backup/lowpro.js
459
- - public/javascripts/backup/jquery/jquery-ui.js
460
- - public/javascripts/backup/jquery/jquery.qtip.min.js
461
- - public/javascripts/backup/jquery/jquery.js
462
- - public/javascripts/backup/jquery/jquery-lowpro.js
463
- - public/javascripts/backup/unittest.js
464
- - public/javascripts/backup/application.js
465
- - public/javascripts/backup/jquery.dates.js
466
- - public/javascripts/backup/jquery.roles.js
467
- - public/javascripts/backup/scriptaculous.js
468
- - public/javascripts/backup/dragdrop.js
469
- - public/javascripts/backup/sound.js
470
- - public/javascripts/backup/prototype.js
471
- - public/javascripts/backup/parseuri.js
472
- - public/javascripts/backup/application.prototype.js
473
- - public/javascripts/backup/admin/jquery.admin.js
474
- - public/javascripts/backup/admin/jquery.table_tree.backup.js
475
- - public/javascripts/backup/admin/jquery.article.js
476
- - public/javascripts/backup/admin/jquery.cached_pages.js
477
- - public/javascripts/backup/admin/jquery.table_tree.js
478
- - public/javascripts/backup/builder.js
479
- - public/javascripts/backup/jquery.flash.js
480
- - public/javascripts/backup/json.js
481
- - public/javascripts/backup/slider.js
482
- - public/javascripts/backup/effects.js
483
- - public/images/adva-core/icons/arrow_cross_3.png
484
- - public/images/adva-core/icons/page_go.png
485
- - public/images/adva-core/icons/bin_closed.png
486
- - public/images/adva-core/icons/comment.gif
487
- - public/images/adva-core/icons/page_white_delete.png
488
- - public/images/adva-core/icons/bullet_go.png
489
- - public/images/adva-core/icons/bullet_black.png
490
- - public/images/adva-core/icons/favorites.png
491
- - public/images/adva-core/icons/stop.png
492
- - public/images/adva-core/icons/magnifier.png
493
- - public/images/adva-core/icons/icon_padlock.gif
494
- - public/images/adva-core/icons/tag_green.png
495
- - public/images/adva-core/icons/page_white_link.png
496
- - public/images/adva-core/icons/comment_edit.png
497
- - public/images/adva-core/icons/page_white_magnify.png
498
- - public/images/adva-core/icons/pencil.png
428
+ - lib/testing/selectors.rb
429
+ - lib/testing/step_definitions/capybara_steps.rb
430
+ - lib/testing/step_definitions/common_steps.rb
431
+ - lib/testing/step_definitions/debug_steps.rb
432
+ - lib/testing/step_definitions/email_steps.rb
433
+ - lib/testing/step_definitions/menu_steps.rb
434
+ - lib/testing/step_definitions/more_web_steps.rb
435
+ - lib/testing/step_definitions/pickle_steps.rb
436
+ - lib/testing/step_definitions/routes_steps.rb
437
+ - lib/testing/step_definitions/transforms.rb
438
+ - lib/testing/support/pickle.rb
439
+ - lib/webrat/integrations/rails.rb
440
+ - public/images/adva-core/admin/closed.png
441
+ - public/images/adva-core/admin/header_bg.png
442
+ - public/images/adva-core/admin/menu_checkmark.png
443
+ - public/images/adva-core/admin/open.png
444
+ - public/images/adva-core/admin/section_menu_bg.png
445
+ - public/images/adva-core/admin/tab_action_active.png
446
+ - public/images/adva-core/admin/tab_main_active.png
447
+ - public/images/adva-core/admin/tab_sidebar_active.png
448
+ - public/images/adva-core/admin/tab_top_active.png
449
+ - public/images/adva-core/asset_selected.png
450
+ - public/images/adva-core/avatar.gif
451
+ - public/images/adva-core/feed.mini.png
452
+ - public/images/adva-core/filter-bg.png
453
+ - public/images/adva-core/grid.png
454
+ - public/images/adva-core/icons/accept.png
455
+ - public/images/adva-core/icons/add.png
499
456
  - public/images/adva-core/icons/arrow_cross.png
500
- - public/images/adva-core/icons/tick.png
501
- - public/images/adva-core/icons/page_delete.png
502
- - public/images/adva-core/icons/page_white_go.png
503
- - public/images/adva-core/icons/comment.png
504
457
  - public/images/adva-core/icons/arrow_cross_2.png
505
- - public/images/adva-core/icons/cross.png
458
+ - public/images/adva-core/icons/arrow_cross_3.png
459
+ - public/images/adva-core/icons/arrow_up_down.png
460
+ - public/images/adva-core/icons/assets/audio.png
461
+ - public/images/adva-core/icons/assets/doc.png
462
+ - public/images/adva-core/icons/assets/pdf.png
463
+ - public/images/adva-core/icons/assets/video.png
464
+ - public/images/adva-core/icons/attach.png
506
465
  - public/images/adva-core/icons/bin.png
507
- - public/images/adva-core/icons/page_white_add.png
508
- - public/images/adva-core/icons/minus.gif
509
- - public/images/adva-core/icons/page_red.png
466
+ - public/images/adva-core/icons/bin_closed.png
467
+ - public/images/adva-core/icons/bin_empty.png
468
+ - public/images/adva-core/icons/bullet_black.png
469
+ - public/images/adva-core/icons/bullet_delete.png
510
470
  - public/images/adva-core/icons/bullet_error.png
511
- - public/images/adva-core/icons/accept.png
512
- - public/images/adva-core/icons/hourglass.png
513
- - public/images/adva-core/icons/link.png
514
- - public/images/adva-core/icons/comment_blue.gif
515
- - public/images/adva-core/icons/page_edit.png
516
- - public/images/adva-core/icons/page_green.png
517
- - public/images/adva-core/icons/arrow_up_down.png
518
- - public/images/adva-core/icons/comment_add.png
519
- - public/images/adva-core/icons/icon_attachment.gif
520
- - public/images/adva-core/icons/delete.png
471
+ - public/images/adva-core/icons/bullet_go.png
521
472
  - public/images/adva-core/icons/bullet_red.png
473
+ - public/images/adva-core/icons/bullet_white.png
474
+ - public/images/adva-core/icons/bullet_yellow.png
522
475
  - public/images/adva-core/icons/cancel.png
523
- - public/images/adva-core/icons/attach.png
524
- - public/images/adva-core/icons/bin_empty.png
525
- - public/images/adva-core/icons/page_add.png
476
+ - public/images/adva-core/icons/comment.gif
477
+ - public/images/adva-core/icons/comment.png
478
+ - public/images/adva-core/icons/comment_add.png
479
+ - public/images/adva-core/icons/comment_blue.gif
526
480
  - public/images/adva-core/icons/comment_delete.png
527
- - public/images/adva-core/icons/bullet_delete.png
528
- - public/images/adva-core/icons/page_white_edit.png
529
- - public/images/adva-core/icons/page_favorites.png
481
+ - public/images/adva-core/icons/comment_edit.png
530
482
  - public/images/adva-core/icons/comment_yellow.gif
483
+ - public/images/adva-core/icons/cross.png
484
+ - public/images/adva-core/icons/delete.png
531
485
  - public/images/adva-core/icons/eye.png
532
- - public/images/adva-core/icons/star.png
533
- - public/images/adva-core/icons/add.png
534
- - public/images/adva-core/icons/assets/audio.png
535
- - public/images/adva-core/icons/assets/doc.png
536
- - public/images/adva-core/icons/assets/video.png
537
- - public/images/adva-core/icons/assets/pdf.png
486
+ - public/images/adva-core/icons/favorites.png
538
487
  - public/images/adva-core/icons/help.png
488
+ - public/images/adva-core/icons/hourglass.png
489
+ - public/images/adva-core/icons/icon_attachment.gif
490
+ - public/images/adva-core/icons/icon_padlock.gif
491
+ - public/images/adva-core/icons/link.png
539
492
  - public/images/adva-core/icons/lock.png
493
+ - public/images/adva-core/icons/magnifier.png
494
+ - public/images/adva-core/icons/minus.gif
495
+ - public/images/adva-core/icons/page_add.png
496
+ - public/images/adva-core/icons/page_delete.png
497
+ - public/images/adva-core/icons/page_edit.png
498
+ - public/images/adva-core/icons/page_favorites.png
499
+ - public/images/adva-core/icons/page_go.png
500
+ - public/images/adva-core/icons/page_green.png
501
+ - public/images/adva-core/icons/page_red.png
502
+ - public/images/adva-core/icons/page_white_add.png
503
+ - public/images/adva-core/icons/page_white_delete.png
504
+ - public/images/adva-core/icons/page_white_edit.png
505
+ - public/images/adva-core/icons/page_white_go.png
506
+ - public/images/adva-core/icons/page_white_link.png
507
+ - public/images/adva-core/icons/page_white_magnify.png
508
+ - public/images/adva-core/icons/pencil.png
509
+ - public/images/adva-core/icons/star.png
510
+ - public/images/adva-core/icons/stop.png
511
+ - public/images/adva-core/icons/tag_green.png
512
+ - public/images/adva-core/icons/tick.png
540
513
  - public/images/adva-core/icons/zoom.png
541
- - public/images/adva-core/icons/bullet_yellow.png
542
- - public/images/adva-core/icons/bullet_white.png
543
- - public/images/adva-core/asset_selected.png
544
- - public/images/adva-core/avatar.gif
545
- - public/images/adva-core/lines.png
546
- - public/images/adva-core/feed.mini.png
547
514
  - public/images/adva-core/indicator.gif
515
+ - public/images/adva-core/lines.png
548
516
  - public/images/adva-core/preview.png
549
- - public/images/adva-core/admin/section_menu_bg.png
550
- - public/images/adva-core/admin/tab_action_active.png
551
- - public/images/adva-core/admin/tab_sidebar_active.png
552
- - public/images/adva-core/admin/tab_main_active.png
553
- - public/images/adva-core/admin/open.png
554
- - public/images/adva-core/admin/header_bg.png
555
- - public/images/adva-core/admin/tab_top_active.png
556
- - public/images/adva-core/admin/menu_checkmark.png
557
- - public/images/adva-core/admin/closed.png
558
- - public/images/adva-core/filter-bg.png
559
- - public/images/adva-core/grid.png
560
517
  - public/images/adva-core/theme_selected.png
561
- has_rdoc: true
518
+ - public/javascripts/adva-core/admin.js
519
+ - public/javascripts/adva-core/jquery/jquery-1.4.2.min.js
520
+ - public/javascripts/adva-core/jquery/jquery.table_tree.js
521
+ - public/javascripts/adva-core/jquery/jquery.tablednd_0_5.js
522
+ - public/javascripts/adva-core/rails.js
523
+ - public/javascripts/backup/admin/jquery.admin.js
524
+ - public/javascripts/backup/admin/jquery.article.js
525
+ - public/javascripts/backup/admin/jquery.cached_pages.js
526
+ - public/javascripts/backup/admin/jquery.table_tree.backup.js
527
+ - public/javascripts/backup/admin/jquery.table_tree.js
528
+ - public/javascripts/backup/application.js
529
+ - public/javascripts/backup/application.prototype.js
530
+ - public/javascripts/backup/builder.js
531
+ - public/javascripts/backup/controls.js
532
+ - public/javascripts/backup/cookie.js
533
+ - public/javascripts/backup/dragdrop.js
534
+ - public/javascripts/backup/effects.js
535
+ - public/javascripts/backup/flash.js
536
+ - public/javascripts/backup/jquery/jquery-lowpro.js
537
+ - public/javascripts/backup/jquery/jquery-ui.js
538
+ - public/javascripts/backup/jquery/jquery.js
539
+ - public/javascripts/backup/jquery/jquery.qtip.min.js
540
+ - public/javascripts/backup/jquery.dates.js
541
+ - public/javascripts/backup/jquery.flash.js
542
+ - public/javascripts/backup/jquery.roles.js
543
+ - public/javascripts/backup/json.js
544
+ - public/javascripts/backup/lowpro.js
545
+ - public/javascripts/backup/parseuri.js
546
+ - public/javascripts/backup/prototype.js
547
+ - public/javascripts/backup/roles.js
548
+ - public/javascripts/backup/scriptaculous.js
549
+ - public/javascripts/backup/slider.js
550
+ - public/javascripts/backup/sound.js
551
+ - public/javascripts/backup/unittest.js
552
+ - public/stylesheets/adva-core/admin/forms.css
553
+ - public/stylesheets/adva-core/admin/layout.css
554
+ - public/stylesheets/adva-core/admin/lists.css
555
+ - public/stylesheets/adva-core/admin/navigation.css
556
+ - public/stylesheets/adva-core/admin/sidebar.css
557
+ - public/stylesheets/adva-core/admin/styles.css
558
+ - public/stylesheets/adva-core/common/forms.css
559
+ - public/stylesheets/adva-core/common/layout.css
560
+ - public/stylesheets/adva-core/common/reset.css
561
+ - public/stylesheets/adva-core/common/styles.css
562
+ - public/stylesheets/adva-core/default/layout.css
563
+ - public/stylesheets/adva-core/default/styles.css
564
+ - public/stylesheets/adva-core/simple/layout.css
565
+ - public/stylesheets/backup/alternate/common.css
566
+ - public/stylesheets/backup/alternate/forms.css
567
+ - public/stylesheets/backup/alternate/header.css
568
+ - public/stylesheets/backup/alternate/layout.css
569
+ - public/stylesheets/backup/alternate/lists.css
570
+ - public/stylesheets/backup/alternate/sidebar.css
571
+ - public/stylesheets/backup/alternate/top.css
572
+ - public/stylesheets/backup/content.css
573
+ - public/stylesheets/backup/helptip.css
574
+ - public/stylesheets/backup/jquery/alternate/jquery.tooltip.css
575
+ - public/stylesheets/backup/jquery/images/ui-bg_flat_0_aaaaaa_40x100.png
576
+ - public/stylesheets/backup/jquery/images/ui-bg_flat_75_ffffff_40x100.png
577
+ - public/stylesheets/backup/jquery/images/ui-bg_glass_55_fbf9ee_1x400.png
578
+ - public/stylesheets/backup/jquery/images/ui-bg_glass_65_ffffff_1x400.png
579
+ - public/stylesheets/backup/jquery/images/ui-bg_glass_75_dadada_1x400.png
580
+ - public/stylesheets/backup/jquery/images/ui-bg_glass_75_e6e6e6_1x400.png
581
+ - public/stylesheets/backup/jquery/images/ui-bg_glass_95_fef1ec_1x400.png
582
+ - public/stylesheets/backup/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png
583
+ - public/stylesheets/backup/jquery/images/ui-icons_222222_256x240.png
584
+ - public/stylesheets/backup/jquery/images/ui-icons_2e83ff_256x240.png
585
+ - public/stylesheets/backup/jquery/images/ui-icons_454545_256x240.png
586
+ - public/stylesheets/backup/jquery/images/ui-icons_888888_256x240.png
587
+ - public/stylesheets/backup/jquery/images/ui-icons_cd0a0a_256x240.png
588
+ - public/stylesheets/backup/jquery/jquery-ui.css
589
+ - public/stylesheets/backup/jquery/jquery.tooltip.css
590
+ - public/stylesheets/backup/layout.css
591
+ - public/stylesheets/backup/lists.css
592
+ - public/stylesheets/backup/menu.css
593
+ - public/stylesheets/backup/projection.css
594
+ - public/stylesheets/backup/screen/top.css
595
+ - public/stylesheets/backup/themes.css
596
+ - public/stylesheets/backup/users.css
562
597
  homepage: http://github.com/svenfuchs/adva-cms2
563
598
  licenses: []
564
599
 
@@ -588,7 +623,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
588
623
  requirements: []
589
624
 
590
625
  rubyforge_project: "[none]"
591
- rubygems_version: 1.4.2
626
+ rubygems_version: 1.8.6
592
627
  signing_key:
593
628
  specification_version: 3
594
629
  summary: Core engine for adva-cms2