liquid_cms 0.3.0.8 → 0.3.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. data/.gitignore +1 -0
  2. data/CHANGELOG.rdoc +7 -0
  3. data/TODO.rdoc +1 -1
  4. data/app/controllers/cms/main_controller.rb +3 -2
  5. data/app/helpers/cms/common_helper.rb +9 -2
  6. data/app/helpers/cms/components_helper.rb +10 -4
  7. data/app/liquid/filters/cms_filters.rb +1 -0
  8. data/app/models/cms/component.rb +4 -0
  9. data/app/views/cms/assets/_list.html.erb +4 -4
  10. data/app/views/cms/components/_list.html.erb +5 -1
  11. data/app/views/cms/components/edit.html.erb +1 -1
  12. data/app/views/cms/pages/_list.html.erb +4 -4
  13. data/app/views/cms/shared/_sidebar.html.erb +31 -8
  14. data/app/views/layouts/cms.html.erb +5 -2
  15. data/config/initializers/cms/simple_form_updates.rb +2 -2
  16. data/config/locales/cms/en.yml +3 -2
  17. data/lib/generators/liquid_cms/templates/public/cms/codemirror/LICENSE +0 -0
  18. data/lib/generators/liquid_cms/templates/public/cms/codemirror/css/csscolors.css +0 -0
  19. data/lib/generators/liquid_cms/templates/public/cms/codemirror/css/docs.css +17 -3
  20. data/lib/generators/liquid_cms/templates/public/cms/codemirror/css/font.js +15 -0
  21. data/lib/generators/liquid_cms/templates/public/cms/codemirror/css/jscolors.css +0 -0
  22. data/lib/generators/liquid_cms/templates/public/cms/codemirror/css/sparqlcolors.css +0 -0
  23. data/lib/generators/liquid_cms/templates/public/cms/codemirror/css/xmlcolors.css +0 -0
  24. data/lib/generators/liquid_cms/templates/public/cms/codemirror/js/codemirror.js +59 -26
  25. data/lib/generators/liquid_cms/templates/public/cms/codemirror/js/editor.js +149 -71
  26. data/lib/generators/liquid_cms/templates/public/cms/codemirror/js/highlight.js +2 -2
  27. data/lib/generators/liquid_cms/templates/public/cms/codemirror/js/mirrorframe.js +2 -2
  28. data/lib/generators/liquid_cms/templates/public/cms/codemirror/js/parsecss.js +5 -3
  29. data/lib/generators/liquid_cms/templates/public/cms/codemirror/js/parsedummy.js +0 -0
  30. data/lib/generators/liquid_cms/templates/public/cms/codemirror/js/parsehtmlmixed.js +28 -9
  31. data/lib/generators/liquid_cms/templates/public/cms/codemirror/js/parsejavascript.js +0 -0
  32. data/lib/generators/liquid_cms/templates/public/cms/codemirror/js/parsesparql.js +0 -0
  33. data/lib/generators/liquid_cms/templates/public/cms/codemirror/js/parsexml.js +6 -1
  34. data/lib/generators/liquid_cms/templates/public/cms/codemirror/js/select.js +48 -21
  35. data/lib/generators/liquid_cms/templates/public/cms/codemirror/js/stringstream.js +15 -1
  36. data/lib/generators/liquid_cms/templates/public/cms/codemirror/js/tokenize.js +0 -0
  37. data/lib/generators/liquid_cms/templates/public/cms/codemirror/js/tokenizejavascript.js +1 -1
  38. data/lib/generators/liquid_cms/templates/public/cms/codemirror/js/undo.js +17 -14
  39. data/lib/generators/liquid_cms/templates/public/cms/codemirror/js/unittests.js +44 -0
  40. data/lib/generators/liquid_cms/templates/public/cms/codemirror/js/util.js +6 -3
  41. data/lib/generators/liquid_cms/templates/public/cms/javascripts/cms.js +15 -1
  42. data/lib/generators/liquid_cms/templates/public/cms/javascripts/livepipe.js +181 -0
  43. data/lib/generators/liquid_cms/templates/public/cms/javascripts/tabs.js +149 -0
  44. data/lib/generators/liquid_cms/templates/public/cms/stylesheets/ie9.css +4 -0
  45. data/lib/generators/liquid_cms/templates/public/cms/stylesheets/sidebar.css +132 -0
  46. data/lib/generators/liquid_cms/templates/public/cms/stylesheets/styles.css +1 -74
  47. data/lib/generators/liquid_cms/templates/public/cms/stylesheets/themes/dark.css +2 -1
  48. data/lib/liquid_cms/context.rb +4 -0
  49. data/lib/liquid_cms/version.rb +1 -1
  50. data/liquid_cms.gemspec +1 -1
  51. data/test/rails_app/Gemfile +1 -2
  52. data/test/rails_app/Gemfile.lock +56 -62
  53. metadata +24 -16
  54. data/Gemfile.lock +0 -122
  55. data/lib/generators/liquid_cms/templates/public/cms/codemirror/bigtest.html +0 -1296
  56. data/lib/generators/liquid_cms/templates/public/cms/codemirror/css/people.jpg +0 -0
  57. data/lib/generators/liquid_cms/templates/public/cms/codemirror/csstest.html +0 -60
  58. data/lib/generators/liquid_cms/templates/public/cms/codemirror/highlight.html +0 -82
  59. data/lib/generators/liquid_cms/templates/public/cms/codemirror/htmltest.html +0 -52
  60. data/lib/generators/liquid_cms/templates/public/cms/codemirror/index.html +0 -245
  61. data/lib/generators/liquid_cms/templates/public/cms/codemirror/jstest.html +0 -56
  62. data/lib/generators/liquid_cms/templates/public/cms/codemirror/manual.html +0 -759
  63. data/lib/generators/liquid_cms/templates/public/cms/codemirror/mixedtest.html +0 -52
  64. data/lib/generators/liquid_cms/templates/public/cms/codemirror/sparqltest.html +0 -41
  65. data/lib/generators/liquid_cms/templates/public/cms/codemirror/story.html +0 -671
@@ -83,64 +83,6 @@ a img {
83
83
  font-style: italic;
84
84
  }
85
85
 
86
- #sidebar {
87
- background-color: #CFCFCF;
88
- float: left;
89
- padding: 0 1em;
90
- margin-left: 1em;
91
- width: 18em;
92
- }
93
- #sidebar h2 {
94
- font-size: 12pt;
95
- padding: 0.2em;
96
- margin-top: 0.5em;
97
- text-align: center;
98
- }
99
- #sidebar #pages {
100
- margin-bottom: 1.5em;
101
- }
102
- #sidebar ul {
103
- list-style-type: none;
104
- margin: 0;
105
- padding: 0;
106
- }
107
- #sidebar #assets li {
108
- border: 1px solid #AAA;
109
- padding: 0.3em 0.4em;
110
- margin-bottom: 0.3em;
111
- }
112
- #sidebar #assets li:hover {
113
- background-color: #BFD6FF !important;
114
- }
115
- #sidebar #assets li.light {
116
- background-color: #DDD;
117
- }
118
- #sidebar .preview {
119
- margin-bottom: 0.5em;
120
- }
121
- #sidebar .preview a {
122
- font-size: 8pt;
123
- }
124
- #sidebar .asset_details {
125
- margin-top: 0.5em;
126
- }
127
- #sidebar .asset_image {
128
- margin: 0 1.5em 0;
129
- }
130
- #sidebar .asset_image {
131
- float: left;
132
- }
133
- #sidebar .asset_size {
134
- font-size: 8pt;
135
- float: right;
136
- }
137
- #sidebar #components form {
138
- margin-bottom: 0.5em;
139
- }
140
- #sidebar #components ul ul {
141
- margin-left: 0.5em;
142
- }
143
-
144
86
  #content p .notice {
145
87
  background-color: yellow;
146
88
  font-size: 12pt;
@@ -152,21 +94,6 @@ h2 p.message {
152
94
  margin: 0;
153
95
  }
154
96
 
155
- #cms ul.tree { list-style-type: none; background: url(/cms/images/tree/vline.png) repeat-y; margin: 0; padding: 0; }
156
- #cms ul.tree ul { margin-left: 10px; }
157
- #cms ul.tree li { margin: 0; padding: 0 12px; line-height: 20px; background: url(/cms/images/tree/node.png) no-repeat; color: #369; font-weight: bold; }
158
- #cms ul.tree li:last-child { background: url(/cms/images/tree/lastnode.png) no-repeat; }
159
-
160
- #cms ul.tree, #sidebar #assets ul {
161
- margin-bottom: 1em;
162
- }
163
- #cms ul.tree ul {
164
- margin-left: 15px;
165
- }
166
- #cms ul.tree li img.folder:hover {
167
- cursor: pointer;
168
- }
169
-
170
97
  .left {
171
98
  float: left;
172
99
  }
@@ -186,5 +113,5 @@ h2 p.message {
186
113
  background: url("/cms/images/icons/page.png") no-repeat scroll right 50% transparent;
187
114
  }
188
115
  .cms_assets #content h2 {
189
- background: url("/cms/images/icons/photo.png") no-repeat scroll right 50% transparent;
116
+ background: url("/cms/images/icons/picture.png") no-repeat scroll right 50% transparent;
190
117
  }
@@ -2,12 +2,13 @@ body {
2
2
  background: url("/cms/images/trentacinque.gif") repeat scroll 0 0 transparent;
3
3
  }
4
4
  #header, #sidebar h2 {
5
- background: #111;
5
+ background: #222;
6
6
  background: -moz-linear-gradient(270deg, #555555 0%, #222 40%, #000 100%) repeat scroll 0 0 transparent;
7
7
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0,#555), color-stop(0.40,#222), color-stop(1.0,#000));
8
8
  }
9
9
  #content h2 {
10
10
  color: #AAA;
11
+ text-shadow: -1px -1px 2px #000000;
11
12
  }
12
13
  .cms_documentation #content {
13
14
  color: #EEE;
@@ -15,5 +15,9 @@ module Cms
15
15
  def assets
16
16
  @object ? @object.assets : Cms::Asset.scoped(nil)
17
17
  end
18
+
19
+ def components
20
+ Cms::Component.files(Cms::Component.full_path(self))
21
+ end
18
22
  end
19
23
  end
@@ -1,3 +1,3 @@
1
1
  module Cms
2
- VERSION = "0.3.0.8"
2
+ VERSION = "0.3.0.9"
3
3
  end
data/liquid_cms.gemspec CHANGED
@@ -11,7 +11,7 @@ Gem::Specification.new do |s|
11
11
  s.summary = "A context aware Rails CMS engine using the Liquid template library."
12
12
  s.description = <<-TXT
13
13
  A context aware Rails CMS engine using the Liquid template library.
14
- Use the 0.3.x series for Rails 3 compatibility and the 0.2.x version for Rails 2 compatibility.
14
+ Use the 0.3.x version for Rails 3 compatibility and the 0.2.x version for Rails 2 compatibility.
15
15
  TXT
16
16
 
17
17
  s.required_rubygems_version = ">= 1.3.6"
@@ -1,6 +1,6 @@
1
1
  source 'http://rubygems.org'
2
2
 
3
- gem 'rails', '3.0.1'
3
+ gem 'rails', '3.0.5'
4
4
 
5
5
  # Bundle edge Rails instead:
6
6
  # gem 'rails', :git => 'git://github.com/rails/rails.git'
@@ -31,4 +31,3 @@ gem 'sqlite3-ruby', :require => 'sqlite3'
31
31
 
32
32
  gem 'liquid_cms', :path => '../..'
33
33
  gem 'vestal_versions', '~> 1.2.1', :git => 'http://github.com/adamcooper/vestal_versions.git'
34
- gem 'mongrel'
@@ -1,14 +1,16 @@
1
1
  GIT
2
2
  remote: http://github.com/adamcooper/vestal_versions.git
3
- revision: ab3bb722278d7fd6332f6250372e0c99187c6531
3
+ revision: 6273df533f85014062e346cb1807b0531a809ee2
4
4
  specs:
5
- vestal_versions (1.2.1)
5
+ vestal_versions (1.2.2)
6
6
  activerecord (>= 3.0.0)
7
+ activesupport (>= 3.0.0)
7
8
 
8
9
  PATH
9
- remote: /home/akaspick/Development/apps/liquid_cms
10
+ remote: ../..
10
11
  specs:
11
- liquid_cms (0.3.0)
12
+ liquid_cms (0.3.0.8)
13
+ bundler (>= 1.0.0)
12
14
  formatize
13
15
  paperclip (~> 2.3.1)
14
16
  rails (~> 3.0.0)
@@ -19,89 +21,82 @@ PATH
19
21
  GEM
20
22
  remote: http://rubygems.org/
21
23
  specs:
22
- RedCloth (4.2.3)
24
+ RedCloth (4.2.7)
23
25
  abstract (1.0.0)
24
- actionmailer (3.0.1)
25
- actionpack (= 3.0.1)
26
- mail (~> 2.2.5)
27
- actionpack (3.0.1)
28
- activemodel (= 3.0.1)
29
- activesupport (= 3.0.1)
26
+ actionmailer (3.0.5)
27
+ actionpack (= 3.0.5)
28
+ mail (~> 2.2.15)
29
+ actionpack (3.0.5)
30
+ activemodel (= 3.0.5)
31
+ activesupport (= 3.0.5)
30
32
  builder (~> 2.1.2)
31
33
  erubis (~> 2.6.6)
32
- i18n (~> 0.4.1)
34
+ i18n (~> 0.4)
33
35
  rack (~> 1.2.1)
34
- rack-mount (~> 0.6.12)
35
- rack-test (~> 0.5.4)
36
+ rack-mount (~> 0.6.13)
37
+ rack-test (~> 0.5.7)
36
38
  tzinfo (~> 0.3.23)
37
- activemodel (3.0.1)
38
- activesupport (= 3.0.1)
39
+ activemodel (3.0.5)
40
+ activesupport (= 3.0.5)
39
41
  builder (~> 2.1.2)
40
- i18n (~> 0.4.1)
41
- activerecord (3.0.1)
42
- activemodel (= 3.0.1)
43
- activesupport (= 3.0.1)
44
- arel (~> 1.0.0)
42
+ i18n (~> 0.4)
43
+ activerecord (3.0.5)
44
+ activemodel (= 3.0.5)
45
+ activesupport (= 3.0.5)
46
+ arel (~> 2.0.2)
45
47
  tzinfo (~> 0.3.23)
46
- activeresource (3.0.1)
47
- activemodel (= 3.0.1)
48
- activesupport (= 3.0.1)
49
- activesupport (3.0.1)
50
- arel (1.0.1)
51
- activesupport (~> 3.0.0)
52
- bluecloth (2.0.9)
48
+ activeresource (3.0.5)
49
+ activemodel (= 3.0.5)
50
+ activesupport (= 3.0.5)
51
+ activesupport (3.0.5)
52
+ arel (2.0.9)
53
+ bluecloth (2.0.11)
53
54
  builder (2.1.2)
54
- cgi_multipart_eof_fix (2.5.0)
55
- daemons (1.1.0)
56
55
  erubis (2.6.6)
57
56
  abstract (>= 1.0.0)
58
- fastthread (1.0.7)
59
57
  formatize (1.0.1)
60
58
  RedCloth (~> 4.2)
61
59
  actionpack (~> 3.0)
62
60
  bluecloth (~> 2.0)
63
- gem_plugin (0.2.3)
64
- i18n (0.4.1)
65
- mail (2.2.7)
61
+ i18n (0.5.0)
62
+ mail (2.2.15)
66
63
  activesupport (>= 2.3.6)
67
- mime-types
68
- treetop (>= 1.4.5)
64
+ i18n (>= 0.4.0)
65
+ mime-types (~> 1.16)
66
+ treetop (~> 1.4.8)
69
67
  mime-types (1.16)
70
- mongrel (1.1.5)
71
- cgi_multipart_eof_fix (>= 2.4)
72
- daemons (>= 1.0.3)
73
- fastthread (>= 1.0.1)
74
- gem_plugin (>= 0.2.3)
75
- paperclip (2.3.4)
68
+ paperclip (2.3.8)
76
69
  activerecord
77
70
  activesupport
78
71
  polyglot (0.3.1)
79
72
  rack (1.2.1)
80
73
  rack-mount (0.6.13)
81
74
  rack (>= 1.0.0)
82
- rack-test (0.5.6)
75
+ rack-test (0.5.7)
83
76
  rack (>= 1.0)
84
- rails (3.0.1)
85
- actionmailer (= 3.0.1)
86
- actionpack (= 3.0.1)
87
- activerecord (= 3.0.1)
88
- activeresource (= 3.0.1)
89
- activesupport (= 3.0.1)
90
- bundler (~> 1.0.0)
91
- railties (= 3.0.1)
92
- railties (3.0.1)
93
- actionpack (= 3.0.1)
94
- activesupport (= 3.0.1)
95
- rake (>= 0.8.4)
96
- thor (~> 0.14.0)
77
+ rails (3.0.5)
78
+ actionmailer (= 3.0.5)
79
+ actionpack (= 3.0.5)
80
+ activerecord (= 3.0.5)
81
+ activeresource (= 3.0.5)
82
+ activesupport (= 3.0.5)
83
+ bundler (~> 1.0)
84
+ railties (= 3.0.5)
85
+ railties (3.0.5)
86
+ actionpack (= 3.0.5)
87
+ activesupport (= 3.0.5)
88
+ rake (>= 0.8.7)
89
+ thor (~> 0.14.4)
97
90
  rake (0.8.7)
98
91
  rubyzip (0.9.4)
99
92
  simple_form (1.2.2)
100
- sqlite3-ruby (1.3.1)
101
- thor (0.14.3)
102
- treetop (1.4.8)
93
+ sqlite3 (1.3.3)
94
+ sqlite3-ruby (1.3.3)
95
+ sqlite3 (>= 1.3.3)
96
+ thor (0.14.6)
97
+ treetop (1.4.9)
103
98
  polyglot (>= 0.3.1)
104
- tzinfo (0.3.23)
99
+ tzinfo (0.3.24)
105
100
  will_paginate (2.3.15)
106
101
 
107
102
  PLATFORMS
@@ -109,7 +104,6 @@ PLATFORMS
109
104
 
110
105
  DEPENDENCIES
111
106
  liquid_cms!
112
- mongrel
113
- rails (= 3.0.1)
107
+ rails (= 3.0.5)
114
108
  sqlite3-ruby
115
109
  vestal_versions (~> 1.2.1)!
metadata CHANGED
@@ -1,13 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: liquid_cms
3
3
  version: !ruby/object:Gem::Version
4
+ hash: 69
4
5
  prerelease: false
5
6
  segments:
6
7
  - 0
7
8
  - 3
8
9
  - 0
9
- - 8
10
- version: 0.3.0.8
10
+ - 9
11
+ version: 0.3.0.9
11
12
  platform: ruby
12
13
  authors:
13
14
  - Andrew Kaspick
@@ -16,7 +17,7 @@ autorequire:
16
17
  bindir: bin
17
18
  cert_chain: []
18
19
 
19
- date: 2011-02-25 00:00:00 -06:00
20
+ date: 2011-03-03 00:00:00 -06:00
20
21
  default_executable:
21
22
  dependencies:
22
23
  - !ruby/object:Gem::Dependency
@@ -27,6 +28,7 @@ dependencies:
27
28
  requirements:
28
29
  - - ">="
29
30
  - !ruby/object:Gem::Version
31
+ hash: 23
30
32
  segments:
31
33
  - 1
32
34
  - 0
@@ -42,6 +44,7 @@ dependencies:
42
44
  requirements:
43
45
  - - ~>
44
46
  - !ruby/object:Gem::Version
47
+ hash: 7
45
48
  segments:
46
49
  - 3
47
50
  - 0
@@ -57,6 +60,7 @@ dependencies:
57
60
  requirements:
58
61
  - - ~>
59
62
  - !ruby/object:Gem::Version
63
+ hash: 1
60
64
  segments:
61
65
  - 2
62
66
  - 3
@@ -72,6 +76,7 @@ dependencies:
72
76
  requirements:
73
77
  - - ~>
74
78
  - !ruby/object:Gem::Version
79
+ hash: 31
75
80
  segments:
76
81
  - 1
77
82
  - 2
@@ -87,6 +92,7 @@ dependencies:
87
92
  requirements:
88
93
  - - ~>
89
94
  - !ruby/object:Gem::Version
95
+ hash: 57
90
96
  segments:
91
97
  - 0
92
98
  - 9
@@ -102,6 +108,7 @@ dependencies:
102
108
  requirements:
103
109
  - - ~>
104
110
  - !ruby/object:Gem::Version
111
+ hash: 27
105
112
  segments:
106
113
  - 2
107
114
  - 3
@@ -117,6 +124,7 @@ dependencies:
117
124
  requirements:
118
125
  - - ">="
119
126
  - !ruby/object:Gem::Version
127
+ hash: 3
120
128
  segments:
121
129
  - 0
122
130
  version: "0"
@@ -130,6 +138,7 @@ dependencies:
130
138
  requirements:
131
139
  - - ">="
132
140
  - !ruby/object:Gem::Version
141
+ hash: 3
133
142
  segments:
134
143
  - 0
135
144
  version: "0"
@@ -143,6 +152,7 @@ dependencies:
143
152
  requirements:
144
153
  - - ~>
145
154
  - !ruby/object:Gem::Version
155
+ hash: 27
146
156
  segments:
147
157
  - 1
148
158
  - 3
@@ -158,6 +168,7 @@ dependencies:
158
168
  requirements:
159
169
  - - ~>
160
170
  - !ruby/object:Gem::Version
171
+ hash: 33
161
172
  segments:
162
173
  - 2
163
174
  - 10
@@ -173,12 +184,13 @@ dependencies:
173
184
  requirements:
174
185
  - - ">="
175
186
  - !ruby/object:Gem::Version
187
+ hash: 3
176
188
  segments:
177
189
  - 0
178
190
  version: "0"
179
191
  type: :development
180
192
  version_requirements: *id011
181
- description: " A context aware Rails CMS engine using the Liquid template library.\n Use the 0.3.x series for Rails 3 compatibility and the 0.2.x version for Rails 2 compatibility.\n"
193
+ description: " A context aware Rails CMS engine using the Liquid template library.\n Use the 0.3.x version for Rails 3 compatibility and the 0.2.x version for Rails 2 compatibility.\n"
182
194
  email:
183
195
  - andrew@redlinesoftware.com
184
196
  executables: []
@@ -191,7 +203,6 @@ files:
191
203
  - .gitignore
192
204
  - CHANGELOG.rdoc
193
205
  - Gemfile
194
- - Gemfile.lock
195
206
  - MIT-LICENSE
196
207
  - README.rdoc
197
208
  - Rakefile
@@ -259,17 +270,12 @@ files:
259
270
  - lib/generators/liquid_cms/install_generator.rb
260
271
  - lib/generators/liquid_cms/templates/migration.rb
261
272
  - lib/generators/liquid_cms/templates/public/cms/codemirror/LICENSE
262
- - lib/generators/liquid_cms/templates/public/cms/codemirror/bigtest.html
263
273
  - lib/generators/liquid_cms/templates/public/cms/codemirror/css/csscolors.css
264
274
  - lib/generators/liquid_cms/templates/public/cms/codemirror/css/docs.css
275
+ - lib/generators/liquid_cms/templates/public/cms/codemirror/css/font.js
265
276
  - lib/generators/liquid_cms/templates/public/cms/codemirror/css/jscolors.css
266
- - lib/generators/liquid_cms/templates/public/cms/codemirror/css/people.jpg
267
277
  - lib/generators/liquid_cms/templates/public/cms/codemirror/css/sparqlcolors.css
268
278
  - lib/generators/liquid_cms/templates/public/cms/codemirror/css/xmlcolors.css
269
- - lib/generators/liquid_cms/templates/public/cms/codemirror/csstest.html
270
- - lib/generators/liquid_cms/templates/public/cms/codemirror/highlight.html
271
- - lib/generators/liquid_cms/templates/public/cms/codemirror/htmltest.html
272
- - lib/generators/liquid_cms/templates/public/cms/codemirror/index.html
273
279
  - lib/generators/liquid_cms/templates/public/cms/codemirror/js/codemirror.js
274
280
  - lib/generators/liquid_cms/templates/public/cms/codemirror/js/editor.js
275
281
  - lib/generators/liquid_cms/templates/public/cms/codemirror/js/highlight.js
@@ -285,12 +291,8 @@ files:
285
291
  - lib/generators/liquid_cms/templates/public/cms/codemirror/js/tokenize.js
286
292
  - lib/generators/liquid_cms/templates/public/cms/codemirror/js/tokenizejavascript.js
287
293
  - lib/generators/liquid_cms/templates/public/cms/codemirror/js/undo.js
294
+ - lib/generators/liquid_cms/templates/public/cms/codemirror/js/unittests.js
288
295
  - lib/generators/liquid_cms/templates/public/cms/codemirror/js/util.js
289
- - lib/generators/liquid_cms/templates/public/cms/codemirror/jstest.html
290
- - lib/generators/liquid_cms/templates/public/cms/codemirror/manual.html
291
- - lib/generators/liquid_cms/templates/public/cms/codemirror/mixedtest.html
292
- - lib/generators/liquid_cms/templates/public/cms/codemirror/sparqltest.html
293
- - lib/generators/liquid_cms/templates/public/cms/codemirror/story.html
294
296
  - lib/generators/liquid_cms/templates/public/cms/images/icons/accept.png
295
297
  - lib/generators/liquid_cms/templates/public/cms/images/icons/add.png
296
298
  - lib/generators/liquid_cms/templates/public/cms/images/icons/anchor.png
@@ -1318,13 +1320,17 @@ files:
1318
1320
  - lib/generators/liquid_cms/templates/public/cms/javascripts/cms.js
1319
1321
  - lib/generators/liquid_cms/templates/public/cms/javascripts/cookiejar.js
1320
1322
  - lib/generators/liquid_cms/templates/public/cms/javascripts/humanmsg.js
1323
+ - lib/generators/liquid_cms/templates/public/cms/javascripts/livepipe.js
1321
1324
  - lib/generators/liquid_cms/templates/public/cms/javascripts/parseliquid.js
1322
1325
  - lib/generators/liquid_cms/templates/public/cms/javascripts/remote_helpers.js
1326
+ - lib/generators/liquid_cms/templates/public/cms/javascripts/tabs.js
1323
1327
  - lib/generators/liquid_cms/templates/public/cms/stylesheets/clearfix.css
1324
1328
  - lib/generators/liquid_cms/templates/public/cms/stylesheets/documentation.css
1325
1329
  - lib/generators/liquid_cms/templates/public/cms/stylesheets/humanmsg.css
1326
1330
  - lib/generators/liquid_cms/templates/public/cms/stylesheets/ie.css
1331
+ - lib/generators/liquid_cms/templates/public/cms/stylesheets/ie9.css
1327
1332
  - lib/generators/liquid_cms/templates/public/cms/stylesheets/liquidcolors.css
1333
+ - lib/generators/liquid_cms/templates/public/cms/stylesheets/sidebar.css
1328
1334
  - lib/generators/liquid_cms/templates/public/cms/stylesheets/simple_form.css
1329
1335
  - lib/generators/liquid_cms/templates/public/cms/stylesheets/styles.css
1330
1336
  - lib/generators/liquid_cms/templates/public/cms/stylesheets/themes/dark.css
@@ -1498,6 +1504,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
1498
1504
  requirements:
1499
1505
  - - ">="
1500
1506
  - !ruby/object:Gem::Version
1507
+ hash: 3
1501
1508
  segments:
1502
1509
  - 0
1503
1510
  version: "0"
@@ -1506,6 +1513,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1506
1513
  requirements:
1507
1514
  - - ">="
1508
1515
  - !ruby/object:Gem::Version
1516
+ hash: 23
1509
1517
  segments:
1510
1518
  - 1
1511
1519
  - 3