quic_cms 0.0.9 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.rdoc +10 -4
- data/app/models/ckeditor/asset.rb +1 -0
- data/app/models/ckeditor/attachment_file.rb +2 -1
- data/app/models/ckeditor/picture.rb +1 -0
- data/app/models/quic_cms/page.rb +1 -1
- data/lib/quic_cms.rb +2 -0
- data/lib/quic_cms/engine.rb +3 -0
- data/lib/quic_cms/version.rb +1 -1
- data/test/dummy/log/development.log +290 -0
- data/test/dummy/tmp/cache/assets/D44/D30/sprockets%2F9ad648cba74a79b1d7f022b04f91e757 +0 -0
- data/test/dummy/tmp/cache/assets/D90/3F0/sprockets%2F01b09cc1a08766ec25f07f107fd1dfbd +0 -0
- data/test/dummy/tmp/cache/assets/DB9/920/sprockets%2F6febb8cc05d26cf99446b70fe5d8786f +0 -0
- metadata +22 -16
data/README.rdoc
CHANGED
@@ -5,9 +5,15 @@ Quic Cms is a very basic Page & Menu system CMS. It contains a administration i
|
|
5
5
|
|
6
6
|
== install
|
7
7
|
|
8
|
-
add
|
9
|
-
run " bundle install "
|
8
|
+
add to your Gemfile
|
10
9
|
|
11
|
-
|
10
|
+
gem 'quic_cms'
|
12
11
|
|
13
|
-
|
12
|
+
run
|
13
|
+
|
14
|
+
bundle install
|
15
|
+
rake quic_cms:install:migrations
|
16
|
+
|
17
|
+
== Expects
|
18
|
+
|
19
|
+
That you have a current_user and that current_user responds to admin? for access to the page administration
|
@@ -1,4 +1,5 @@
|
|
1
1
|
require 'ckeditor'
|
2
|
+
require 'paperclip'
|
2
3
|
class Ckeditor::AttachmentFile < Ckeditor::Asset
|
3
4
|
has_attached_file :data,
|
4
5
|
:url => "/ckeditor_assets/attachments/:id/:filename",
|
@@ -10,7 +11,7 @@ class Ckeditor::AttachmentFile < Ckeditor::Asset
|
|
10
11
|
def url_thumb
|
11
12
|
@url_thumb ||= begin
|
12
13
|
extname = File.extname(filename).gsub(/^\./, '')
|
13
|
-
"/
|
14
|
+
"/assets/quic_cms/ckeditor/filebrowser/images/thumbs/#{extname}.gif"
|
14
15
|
end
|
15
16
|
end
|
16
17
|
end
|
data/app/models/quic_cms/page.rb
CHANGED
data/lib/quic_cms.rb
CHANGED
data/lib/quic_cms/engine.rb
CHANGED
@@ -1,5 +1,8 @@
|
|
1
1
|
module QuicCms
|
2
2
|
class Engine < Rails::Engine
|
3
3
|
isolate_namespace QuicCms
|
4
|
+
config.autoload_paths << File.expand_path("../app/models/ckeditor/asset", __FILE__)
|
5
|
+
config.autoload_paths << File.expand_path("../app/models/ckeditor/picture", __FILE__)
|
6
|
+
config.autoload_paths << File.expand_path("../app/models/ckeditor/attachment_file", __FILE__)
|
4
7
|
end
|
5
8
|
end
|
data/lib/quic_cms/version.rb
CHANGED
@@ -4923,3 +4923,293 @@ Served asset /quic_cms/ckeditor/contents.css - 304 Not Modified (0ms)
|
|
4923
4923
|
|
4924
4924
|
Started GET "/assets/quic_cms/ckeditor/plugins/styles/styles/default.js?t=B8DJ5M3" for 127.0.0.1 at 2011-11-11 13:06:38 -0600
|
4925
4925
|
Served asset /quic_cms/ckeditor/plugins/styles/styles/default.js - 304 Not Modified (0ms)
|
4926
|
+
|
4927
|
+
|
4928
|
+
Started GET "/admin/pages/new" for 127.0.0.1 at 2011-11-11 13:41:04 -0600
|
4929
|
+
Processing by QuicCms::Admin::PagesController#new as HTML
|
4930
|
+
[1m[36mQuicCms::Page Load (0.3ms)[0m [1mSELECT "quic_cms_pages".* FROM "quic_cms_pages" WHERE "quic_cms_pages"."parent_id" IS NULL ORDER BY "lft"[0m
|
4931
|
+
Rendered /Users/mwagner72/Dropbox/rails_projects/quic_cms/app/views/quic_cms/admin/pages/_form.html.erb (88.9ms)
|
4932
|
+
Rendered /Users/mwagner72/Dropbox/rails_projects/quic_cms/app/views/quic_cms/admin/pages/new.html.erb within layouts/quic_cms/application (123.8ms)
|
4933
|
+
Completed 200 OK in 316ms (Views: 315.5ms | ActiveRecord: 0.3ms)
|
4934
|
+
|
4935
|
+
|
4936
|
+
Started GET "/assets/quic_cms/application.css?body=1" for 127.0.0.1 at 2011-11-11 13:41:05 -0600
|
4937
|
+
Served asset /quic_cms/application.css - 200 OK (0ms)
|
4938
|
+
|
4939
|
+
|
4940
|
+
Started GET "/assets/quic_cms/admin/pages.css?body=1" for 127.0.0.1 at 2011-11-11 13:41:05 -0600
|
4941
|
+
Served asset /quic_cms/admin/pages.css - 304 Not Modified (5ms)
|
4942
|
+
|
4943
|
+
|
4944
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-11 13:41:05 -0600
|
4945
|
+
Served asset /jquery.js - 200 OK (16ms)
|
4946
|
+
|
4947
|
+
|
4948
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-11 13:41:05 -0600
|
4949
|
+
Served asset /jquery_ujs.js - 200 OK (3ms)
|
4950
|
+
|
4951
|
+
|
4952
|
+
Started GET "/assets/quic_cms/pages.css?body=1" for 127.0.0.1 at 2011-11-11 13:41:05 -0600
|
4953
|
+
Served asset /quic_cms/pages.css - 304 Not Modified (5ms)
|
4954
|
+
|
4955
|
+
|
4956
|
+
Started GET "/assets/quic_cms/application.js?body=1" for 127.0.0.1 at 2011-11-11 13:41:05 -0600
|
4957
|
+
Served asset /quic_cms/application.js - 200 OK (0ms)
|
4958
|
+
|
4959
|
+
|
4960
|
+
Started GET "/assets/quic_cms/ckeditor/ckeditor.js?body=1" for 127.0.0.1 at 2011-11-11 13:41:05 -0600
|
4961
|
+
Served asset /quic_cms/ckeditor/ckeditor.js - 304 Not Modified (0ms)
|
4962
|
+
|
4963
|
+
|
4964
|
+
Started GET "/assets/quic_cms/pages.js?body=1" for 127.0.0.1 at 2011-11-11 13:41:05 -0600
|
4965
|
+
Served asset /quic_cms/pages.js - 304 Not Modified (4ms)
|
4966
|
+
|
4967
|
+
|
4968
|
+
Started GET "/assets/quic_cms/ckeditor/config.js?t=B8DJ5M3" for 127.0.0.1 at 2011-11-11 13:41:05 -0600
|
4969
|
+
Served asset /quic_cms/ckeditor/config.js - 304 Not Modified (5ms)
|
4970
|
+
|
4971
|
+
|
4972
|
+
Started GET "/assets/quic_cms/ckeditor/skins/kama/editor.css?t=B8DJ5M3" for 127.0.0.1 at 2011-11-11 13:41:05 -0600
|
4973
|
+
Served asset /quic_cms/ckeditor/skins/kama/editor.css - 304 Not Modified (40ms)
|
4974
|
+
|
4975
|
+
|
4976
|
+
Started GET "/assets/quic_cms/ckeditor/lang/en.js?t=B8DJ5M3" for 127.0.0.1 at 2011-11-11 13:41:05 -0600
|
4977
|
+
Served asset /quic_cms/ckeditor/lang/en.js - 304 Not Modified (7ms)
|
4978
|
+
|
4979
|
+
|
4980
|
+
Started GET "/assets/quic_cms/ckeditor/plugins/embed/plugin.js?t=B8DJ5M3" for 127.0.0.1 at 2011-11-11 13:41:05 -0600
|
4981
|
+
Served asset /quic_cms/ckeditor/plugins/embed/plugin.js - 304 Not Modified (4ms)
|
4982
|
+
|
4983
|
+
|
4984
|
+
Started GET "/assets/quic_cms/ckeditor/plugins/attachment/plugin.js?t=B8DJ5M3" for 127.0.0.1 at 2011-11-11 13:41:05 -0600
|
4985
|
+
Served asset /quic_cms/ckeditor/plugins/attachment/plugin.js - 304 Not Modified (5ms)
|
4986
|
+
|
4987
|
+
|
4988
|
+
Started GET "/assets/quic_cms/ckeditor/plugins/embed/lang/en.js?t=B8DJ5M3" for 127.0.0.1 at 2011-11-11 13:41:05 -0600
|
4989
|
+
Served asset /quic_cms/ckeditor/plugins/embed/lang/en.js - 304 Not Modified (8ms)
|
4990
|
+
|
4991
|
+
|
4992
|
+
Started GET "/assets/quic_cms/ckeditor/plugins/attachment/lang/en.js?t=B8DJ5M3" for 127.0.0.1 at 2011-11-11 13:41:05 -0600
|
4993
|
+
Served asset /quic_cms/ckeditor/plugins/attachment/lang/en.js - 304 Not Modified (6ms)
|
4994
|
+
|
4995
|
+
|
4996
|
+
Started GET "/assets/quic_cms/ckeditor/skins/kama/images/sprites.png" for 127.0.0.1 at 2011-11-11 13:41:05 -0600
|
4997
|
+
Served asset /quic_cms/ckeditor/skins/kama/images/sprites.png - 304 Not Modified (4ms)
|
4998
|
+
|
4999
|
+
|
5000
|
+
Started GET "/assets/quic_cms/ckeditor/contents.css" for 127.0.0.1 at 2011-11-11 13:41:05 -0600
|
5001
|
+
Served asset /quic_cms/ckeditor/contents.css - 304 Not Modified (5ms)
|
5002
|
+
|
5003
|
+
|
5004
|
+
Started GET "/assets/quic_cms/ckeditor/skins/kama/icons.png" for 127.0.0.1 at 2011-11-11 13:41:05 -0600
|
5005
|
+
Served asset /quic_cms/ckeditor/skins/kama/icons.png - 304 Not Modified (4ms)
|
5006
|
+
|
5007
|
+
|
5008
|
+
Started GET "/assets/quic_cms/ckeditor/plugins/embed/images/embed.png?t=B8DJ5M3" for 127.0.0.1 at 2011-11-11 13:41:05 -0600
|
5009
|
+
Served asset /quic_cms/ckeditor/plugins/embed/images/embed.png - 304 Not Modified (4ms)
|
5010
|
+
|
5011
|
+
|
5012
|
+
Started GET "/assets/quic_cms/ckeditor/plugins/attachment/images/attachment.png?t=B8DJ5M3" for 127.0.0.1 at 2011-11-11 13:41:05 -0600
|
5013
|
+
Served asset /quic_cms/ckeditor/plugins/attachment/images/attachment.png - 304 Not Modified (4ms)
|
5014
|
+
|
5015
|
+
|
5016
|
+
Started GET "/assets/quic_cms/ckeditor/plugins/styles/styles/default.js?t=B8DJ5M3" for 127.0.0.1 at 2011-11-11 13:41:05 -0600
|
5017
|
+
Served asset /quic_cms/ckeditor/plugins/styles/styles/default.js - 304 Not Modified (5ms)
|
5018
|
+
|
5019
|
+
|
5020
|
+
Started GET "/assets/quic_cms/ckeditor/plugins/image/dialogs/image.js?t=B8DJ5M3" for 127.0.0.1 at 2011-11-11 13:41:09 -0600
|
5021
|
+
Served asset /quic_cms/ckeditor/plugins/image/dialogs/image.js - 304 Not Modified (9ms)
|
5022
|
+
|
5023
|
+
|
5024
|
+
Started GET "/assets/quic_cms/ckeditor/skins/kama/dialog.css?t=B8DJ5M3" for 127.0.0.1 at 2011-11-11 13:41:09 -0600
|
5025
|
+
Compiled quic_cms/ckeditor/skins/kama/dialog.css (1ms) (pid 45736)
|
5026
|
+
Served asset /quic_cms/ckeditor/skins/kama/dialog.css - 304 Not Modified (12ms)
|
5027
|
+
|
5028
|
+
|
5029
|
+
Started GET "/assets/quic_cms/ckeditor/skins/kama/images/sprites.png" for 127.0.0.1 at 2011-11-11 13:41:09 -0600
|
5030
|
+
Served asset /quic_cms/ckeditor/skins/kama/images/sprites.png - 304 Not Modified (0ms)
|
5031
|
+
|
5032
|
+
|
5033
|
+
Started GET "/assets/quic_cms/ckeditor/skins/kama/images/mini.gif" for 127.0.0.1 at 2011-11-11 13:41:09 -0600
|
5034
|
+
Served asset /quic_cms/ckeditor/skins/kama/images/mini.gif - 304 Not Modified (9ms)
|
5035
|
+
|
5036
|
+
|
5037
|
+
Started GET "/ckeditor/pictures?CKEditor=page_content&CKEditorFuncNum=2&langCode=en" for 127.0.0.1 at 2011-11-11 13:41:11 -0600
|
5038
|
+
Processing by Ckeditor::PicturesController#index as HTML
|
5039
|
+
Parameters: {"CKEditor"=>"page_content", "CKEditorFuncNum"=>"2", "langCode"=>"en"}
|
5040
|
+
Completed 500 Internal Server Error in 2ms
|
5041
|
+
|
5042
|
+
NameError (uninitialized constant Ckeditor::Picture):
|
5043
|
+
|
5044
|
+
|
5045
|
+
Rendered /Users/mwagner72/Developer/.rvm/gems/ruby-1.9.2-p180@quic_cms/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
|
5046
|
+
Rendered /Users/mwagner72/Developer/.rvm/gems/ruby-1.9.2-p180@quic_cms/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
|
5047
|
+
Rendered /Users/mwagner72/Developer/.rvm/gems/ruby-1.9.2-p180@quic_cms/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.9ms)
|
5048
|
+
|
5049
|
+
|
5050
|
+
Started GET "/ckeditor/pictures?CKEditor=page_content&CKEditorFuncNum=2&langCode=en" for 127.0.0.1 at 2011-11-11 13:41:59 -0600
|
5051
|
+
|
5052
|
+
ActionController::RoutingError (undefined method `has_attached_file' for #<Class:0x007fc88a0e6500>):
|
5053
|
+
|
5054
|
+
|
5055
|
+
Rendered /Users/mwagner72/Developer/.rvm/gems/ruby-1.9.2-p180@quic_cms/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
|
5056
|
+
|
5057
|
+
|
5058
|
+
Started GET "/ckeditor/pictures?CKEditor=page_content&CKEditorFuncNum=2&langCode=en" for 127.0.0.1 at 2011-11-11 13:42:55 -0600
|
5059
|
+
|
5060
|
+
ActionController::RoutingError (undefined method `has_attached_file' for #<Class:0x007fc88a0d4670>):
|
5061
|
+
|
5062
|
+
|
5063
|
+
Rendered /Users/mwagner72/Developer/.rvm/gems/ruby-1.9.2-p180@quic_cms/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
|
5064
|
+
|
5065
|
+
|
5066
|
+
Started GET "/admin/pages/new" for 127.0.0.1 at 2011-11-11 13:53:10 -0600
|
5067
|
+
Processing by QuicCms::Admin::PagesController#new as HTML
|
5068
|
+
[1m[36mQuicCms::Page Load (0.2ms)[0m [1mSELECT "quic_cms_pages".* FROM "quic_cms_pages" WHERE "quic_cms_pages"."parent_id" IS NULL ORDER BY "lft"[0m
|
5069
|
+
Rendered /Users/mwagner72/Dropbox/rails_projects/quic_cms/app/views/quic_cms/admin/pages/_form.html.erb (69.9ms)
|
5070
|
+
Rendered /Users/mwagner72/Dropbox/rails_projects/quic_cms/app/views/quic_cms/admin/pages/new.html.erb within layouts/quic_cms/application (101.7ms)
|
5071
|
+
Completed 200 OK in 267ms (Views: 266.2ms | ActiveRecord: 0.2ms)
|
5072
|
+
|
5073
|
+
|
5074
|
+
Started GET "/assets/quic_cms/application.css?body=1" for 127.0.0.1 at 2011-11-11 13:53:11 -0600
|
5075
|
+
Served asset /quic_cms/application.css - 304 Not Modified (0ms)
|
5076
|
+
|
5077
|
+
|
5078
|
+
Started GET "/assets/quic_cms/pages.css?body=1" for 127.0.0.1 at 2011-11-11 13:53:11 -0600
|
5079
|
+
Served asset /quic_cms/pages.css - 304 Not Modified (7ms)
|
5080
|
+
|
5081
|
+
|
5082
|
+
Started GET "/assets/quic_cms/pages.js?body=1" for 127.0.0.1 at 2011-11-11 13:53:11 -0600
|
5083
|
+
Served asset /quic_cms/pages.js - 304 Not Modified (4ms)
|
5084
|
+
|
5085
|
+
|
5086
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-11-11 13:53:11 -0600
|
5087
|
+
Served asset /jquery.js - 304 Not Modified (9ms)
|
5088
|
+
|
5089
|
+
|
5090
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-11-11 13:53:11 -0600
|
5091
|
+
Served asset /jquery_ujs.js - 304 Not Modified (3ms)
|
5092
|
+
|
5093
|
+
|
5094
|
+
Started GET "/assets/quic_cms/application.js?body=1" for 127.0.0.1 at 2011-11-11 13:53:11 -0600
|
5095
|
+
Served asset /quic_cms/application.js - 304 Not Modified (0ms)
|
5096
|
+
|
5097
|
+
|
5098
|
+
Started GET "/assets/quic_cms/ckeditor/ckeditor.js?body=1" for 127.0.0.1 at 2011-11-11 13:53:11 -0600
|
5099
|
+
Served asset /quic_cms/ckeditor/ckeditor.js - 304 Not Modified (0ms)
|
5100
|
+
|
5101
|
+
|
5102
|
+
Started GET "/assets/quic_cms/admin/pages.css?body=1" for 127.0.0.1 at 2011-11-11 13:53:11 -0600
|
5103
|
+
Served asset /quic_cms/admin/pages.css - 304 Not Modified (5ms)
|
5104
|
+
|
5105
|
+
|
5106
|
+
Started GET "/assets/quic_cms/ckeditor/config.js?t=B8DJ5M3" for 127.0.0.1 at 2011-11-11 13:53:11 -0600
|
5107
|
+
Served asset /quic_cms/ckeditor/config.js - 304 Not Modified (5ms)
|
5108
|
+
|
5109
|
+
|
5110
|
+
Started GET "/assets/quic_cms/ckeditor/skins/kama/editor.css?t=B8DJ5M3" for 127.0.0.1 at 2011-11-11 13:53:11 -0600
|
5111
|
+
Served asset /quic_cms/ckeditor/skins/kama/editor.css - 304 Not Modified (8ms)
|
5112
|
+
|
5113
|
+
|
5114
|
+
Started GET "/assets/quic_cms/ckeditor/lang/en.js?t=B8DJ5M3" for 127.0.0.1 at 2011-11-11 13:53:11 -0600
|
5115
|
+
Served asset /quic_cms/ckeditor/lang/en.js - 304 Not Modified (11ms)
|
5116
|
+
|
5117
|
+
|
5118
|
+
Started GET "/assets/quic_cms/ckeditor/plugins/embed/plugin.js?t=B8DJ5M3" for 127.0.0.1 at 2011-11-11 13:53:11 -0600
|
5119
|
+
Served asset /quic_cms/ckeditor/plugins/embed/plugin.js - 304 Not Modified (4ms)
|
5120
|
+
|
5121
|
+
|
5122
|
+
Started GET "/assets/quic_cms/ckeditor/plugins/attachment/plugin.js?t=B8DJ5M3" for 127.0.0.1 at 2011-11-11 13:53:11 -0600
|
5123
|
+
Served asset /quic_cms/ckeditor/plugins/attachment/plugin.js - 304 Not Modified (5ms)
|
5124
|
+
|
5125
|
+
|
5126
|
+
Started GET "/assets/quic_cms/ckeditor/plugins/embed/lang/en.js?t=B8DJ5M3" for 127.0.0.1 at 2011-11-11 13:53:11 -0600
|
5127
|
+
Served asset /quic_cms/ckeditor/plugins/embed/lang/en.js - 304 Not Modified (4ms)
|
5128
|
+
|
5129
|
+
|
5130
|
+
Started GET "/assets/quic_cms/ckeditor/plugins/attachment/lang/en.js?t=B8DJ5M3" for 127.0.0.1 at 2011-11-11 13:53:11 -0600
|
5131
|
+
Served asset /quic_cms/ckeditor/plugins/attachment/lang/en.js - 304 Not Modified (4ms)
|
5132
|
+
|
5133
|
+
|
5134
|
+
Started GET "/assets/quic_cms/ckeditor/contents.css" for 127.0.0.1 at 2011-11-11 13:53:11 -0600
|
5135
|
+
Served asset /quic_cms/ckeditor/contents.css - 304 Not Modified (5ms)
|
5136
|
+
|
5137
|
+
|
5138
|
+
Started GET "/assets/quic_cms/ckeditor/plugins/styles/styles/default.js?t=B8DJ5M3" for 127.0.0.1 at 2011-11-11 13:53:11 -0600
|
5139
|
+
Served asset /quic_cms/ckeditor/plugins/styles/styles/default.js - 304 Not Modified (4ms)
|
5140
|
+
|
5141
|
+
|
5142
|
+
Started GET "/assets/quic_cms/ckeditor/plugins/image/dialogs/image.js?t=B8DJ5M3" for 127.0.0.1 at 2011-11-11 13:53:14 -0600
|
5143
|
+
Served asset /quic_cms/ckeditor/plugins/image/dialogs/image.js - 304 Not Modified (8ms)
|
5144
|
+
|
5145
|
+
|
5146
|
+
Started GET "/assets/quic_cms/ckeditor/skins/kama/dialog.css?t=B8DJ5M3" for 127.0.0.1 at 2011-11-11 13:53:14 -0600
|
5147
|
+
Served asset /quic_cms/ckeditor/skins/kama/dialog.css - 304 Not Modified (5ms)
|
5148
|
+
|
5149
|
+
|
5150
|
+
Started GET "/assets/quic_cms/ckeditor/skins/kama/images/mini.gif" for 127.0.0.1 at 2011-11-11 13:53:14 -0600
|
5151
|
+
Served asset /quic_cms/ckeditor/skins/kama/images/mini.gif - 304 Not Modified (4ms)
|
5152
|
+
|
5153
|
+
|
5154
|
+
Started GET "/ckeditor/pictures?CKEditor=page_content&CKEditorFuncNum=2&langCode=en" for 127.0.0.1 at 2011-11-11 13:53:16 -0600
|
5155
|
+
|
5156
|
+
ActionController::RoutingError (undefined method `has_attached_file' for #<Class:0x007fdff32457e0>):
|
5157
|
+
|
5158
|
+
|
5159
|
+
Rendered /Users/mwagner72/Developer/.rvm/gems/ruby-1.9.2-p180@quic_cms/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
|
5160
|
+
|
5161
|
+
|
5162
|
+
Started GET "/ckeditor/pictures" for 127.0.0.1 at 2011-11-11 13:56:10 -0600
|
5163
|
+
|
5164
|
+
ActionController::RoutingError (undefined method `has_attached_file' for #<Class:0x007fdff09ff628>):
|
5165
|
+
|
5166
|
+
|
5167
|
+
Rendered /Users/mwagner72/Developer/.rvm/gems/ruby-1.9.2-p180@quic_cms/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
|
5168
|
+
|
5169
|
+
|
5170
|
+
Started GET "/ckeditor/attachment_files" for 127.0.0.1 at 2011-11-11 13:56:27 -0600
|
5171
|
+
|
5172
|
+
ActionController::RoutingError (undefined method `has_attached_file' for #<Class:0x007fdff3410930>):
|
5173
|
+
|
5174
|
+
|
5175
|
+
Rendered /Users/mwagner72/Developer/.rvm/gems/ruby-1.9.2-p180@quic_cms/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
|
5176
|
+
|
5177
|
+
|
5178
|
+
Started GET "/ckeditor/assets" for 127.0.0.1 at 2011-11-11 13:56:34 -0600
|
5179
|
+
|
5180
|
+
ActionController::RoutingError (No route matches [GET] "/ckeditor/assets"):
|
5181
|
+
|
5182
|
+
|
5183
|
+
Rendered /Users/mwagner72/Developer/.rvm/gems/ruby-1.9.2-p180@quic_cms/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
|
5184
|
+
|
5185
|
+
|
5186
|
+
Started GET "/ckeditor/pictures" for 127.0.0.1 at 2011-11-11 14:06:11 -0600
|
5187
|
+
|
5188
|
+
ActionController::RoutingError (undefined method `has_attached_file' for #<Class:0x007fc88ec6bc50>):
|
5189
|
+
|
5190
|
+
|
5191
|
+
Rendered /Users/mwagner72/Developer/.rvm/gems/ruby-1.9.2-p180@quic_cms/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (17.5ms)
|
5192
|
+
|
5193
|
+
|
5194
|
+
Started GET "/ckeditor/pictures" for 127.0.0.1 at 2011-11-11 14:07:56 -0600
|
5195
|
+
|
5196
|
+
ActionController::RoutingError (undefined method `has_attached_file' for #<Class:0x007fd5c4664b70>):
|
5197
|
+
|
5198
|
+
|
5199
|
+
Rendered /Users/mwagner72/Developer/.rvm/gems/ruby-1.9.2-p180@quic_cms/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (18.1ms)
|
5200
|
+
|
5201
|
+
|
5202
|
+
Started GET "/ckeditor/pictures" for 127.0.0.1 at 2011-11-11 14:09:24 -0600
|
5203
|
+
|
5204
|
+
ActionController::RoutingError (undefined method `has_attached_file' for #<Class:0x007fc820a10550>):
|
5205
|
+
|
5206
|
+
|
5207
|
+
Rendered /Users/mwagner72/Developer/.rvm/gems/ruby-1.9.2-p180@quic_cms/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (17.4ms)
|
5208
|
+
|
5209
|
+
|
5210
|
+
Started GET "/ckeditor/pictures" for 127.0.0.1 at 2011-11-11 14:10:13 -0600
|
5211
|
+
|
5212
|
+
ActionController::RoutingError (undefined method `has_attached_file' for #<Class:0x007fd1c32bf448>):
|
5213
|
+
|
5214
|
+
|
5215
|
+
Rendered /Users/mwagner72/Developer/.rvm/gems/ruby-1.9.2-p180@quic_cms/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (17.7ms)
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: quic_cms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -13,7 +13,7 @@ date: 2011-11-11 00:00:00.000000000Z
|
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
16
|
-
requirement: &
|
16
|
+
requirement: &70130806849960 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ~>
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: 3.1.1
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *70130806849960
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: jquery-rails
|
27
|
-
requirement: &
|
27
|
+
requirement: &70130806849540 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ! '>='
|
@@ -32,10 +32,10 @@ dependencies:
|
|
32
32
|
version: '0'
|
33
33
|
type: :runtime
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *70130806849540
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
|
-
name:
|
38
|
-
requirement: &
|
37
|
+
name: paperclip
|
38
|
+
requirement: &70130806849060 !ruby/object:Gem::Requirement
|
39
39
|
none: false
|
40
40
|
requirements:
|
41
41
|
- - ! '>='
|
@@ -43,10 +43,10 @@ dependencies:
|
|
43
43
|
version: '0'
|
44
44
|
type: :runtime
|
45
45
|
prerelease: false
|
46
|
-
version_requirements: *
|
46
|
+
version_requirements: *70130806849060
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
|
-
name:
|
49
|
-
requirement: &
|
48
|
+
name: nested_set
|
49
|
+
requirement: &70130806848440 !ruby/object:Gem::Requirement
|
50
50
|
none: false
|
51
51
|
requirements:
|
52
52
|
- - ! '>='
|
@@ -54,10 +54,10 @@ dependencies:
|
|
54
54
|
version: '0'
|
55
55
|
type: :runtime
|
56
56
|
prerelease: false
|
57
|
-
version_requirements: *
|
57
|
+
version_requirements: *70130806848440
|
58
58
|
- !ruby/object:Gem::Dependency
|
59
|
-
name:
|
60
|
-
requirement: &
|
59
|
+
name: ckeditor
|
60
|
+
requirement: &70130806847840 !ruby/object:Gem::Requirement
|
61
61
|
none: false
|
62
62
|
requirements:
|
63
63
|
- - ! '>='
|
@@ -65,10 +65,10 @@ dependencies:
|
|
65
65
|
version: '0'
|
66
66
|
type: :runtime
|
67
67
|
prerelease: false
|
68
|
-
version_requirements: *
|
68
|
+
version_requirements: *70130806847840
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: sqlite3
|
71
|
-
requirement: &
|
71
|
+
requirement: &70130806847160 !ruby/object:Gem::Requirement
|
72
72
|
none: false
|
73
73
|
requirements:
|
74
74
|
- - ! '>='
|
@@ -76,7 +76,7 @@ dependencies:
|
|
76
76
|
version: '0'
|
77
77
|
type: :development
|
78
78
|
prerelease: false
|
79
|
-
version_requirements: *
|
79
|
+
version_requirements: *70130806847160
|
80
80
|
description: ! "Very Simple Page and Menu CMS\n be sure to add:\n
|
81
81
|
\ mount QuicCms::Engine => \"/\"\n to the
|
82
82
|
bottom of your routes file. Run rake quic_cms:install:migrations and rake db:migrate"
|
@@ -1214,6 +1214,7 @@ files:
|
|
1214
1214
|
- test/dummy/tmp/cache/assets/D42/E10/sprockets%2F0263f69dd4c85d5ef8ae211f416f603d
|
1215
1215
|
- test/dummy/tmp/cache/assets/D43/110/sprockets%2Fbc264df2f4d136c884ea9df36202349e
|
1216
1216
|
- test/dummy/tmp/cache/assets/D44/620/sprockets%2Ff9016ae6e54ede4979ca002c2703fa89
|
1217
|
+
- test/dummy/tmp/cache/assets/D44/D30/sprockets%2F9ad648cba74a79b1d7f022b04f91e757
|
1217
1218
|
- test/dummy/tmp/cache/assets/D44/D80/sprockets%2Fe4aad65716db3b1792eec515819fe148
|
1218
1219
|
- test/dummy/tmp/cache/assets/D45/0C0/sprockets%2F7e0ef33be170ff83c9549f61327efa03
|
1219
1220
|
- test/dummy/tmp/cache/assets/D45/650/sprockets%2Faf6e402610cf49945b35c8b5efd1826f
|
@@ -1395,6 +1396,7 @@ files:
|
|
1395
1396
|
- test/dummy/tmp/cache/assets/D8D/890/sprockets%2F351dbe7b0436abbe86cb8af5462b030e
|
1396
1397
|
- test/dummy/tmp/cache/assets/D8E/6D0/sprockets%2F11f02e2179c6e36d2a53e61b1a3beeef
|
1397
1398
|
- test/dummy/tmp/cache/assets/D8F/2C0/sprockets%2Feef1d8a352931bd39c211f0f30e6e2ac
|
1399
|
+
- test/dummy/tmp/cache/assets/D90/3F0/sprockets%2F01b09cc1a08766ec25f07f107fd1dfbd
|
1398
1400
|
- test/dummy/tmp/cache/assets/D90/9E0/sprockets%2Fa9ceedcc16170311b30c88da1ca368c9
|
1399
1401
|
- test/dummy/tmp/cache/assets/D90/F50/sprockets%2F0f293f5b0f85c1a1fd48c2b0610cbcf8
|
1400
1402
|
- test/dummy/tmp/cache/assets/D91/A80/sprockets%2F33e68918bcd0f1d2f3e74dfa100d42da
|
@@ -1474,6 +1476,7 @@ files:
|
|
1474
1476
|
- test/dummy/tmp/cache/assets/DB8/020/sprockets%2F8fe9e933e637b0dde67de1c7ff97a550
|
1475
1477
|
- test/dummy/tmp/cache/assets/DB8/5E0/sprockets%2F7f67e1aeed28f5dbd2836f84c25e9e93
|
1476
1478
|
- test/dummy/tmp/cache/assets/DB8/B60/sprockets%2Fab2954a1b4cfc4b0e2c66c352cb25a7d
|
1479
|
+
- test/dummy/tmp/cache/assets/DB9/920/sprockets%2F6febb8cc05d26cf99446b70fe5d8786f
|
1477
1480
|
- test/dummy/tmp/cache/assets/DBA/A20/sprockets%2F759cdaee13f68c98e48a59e0d34dd58f
|
1478
1481
|
- test/dummy/tmp/cache/assets/DBB/480/sprockets%2F48abb2bc119e084b0b8cdc5d1872c0be
|
1479
1482
|
- test/dummy/tmp/cache/assets/DBC/8D0/sprockets%2Ffc230cafbe156d070cdc4b6922d2b9a5
|
@@ -2076,6 +2079,7 @@ test_files:
|
|
2076
2079
|
- test/dummy/tmp/cache/assets/D42/E10/sprockets%2F0263f69dd4c85d5ef8ae211f416f603d
|
2077
2080
|
- test/dummy/tmp/cache/assets/D43/110/sprockets%2Fbc264df2f4d136c884ea9df36202349e
|
2078
2081
|
- test/dummy/tmp/cache/assets/D44/620/sprockets%2Ff9016ae6e54ede4979ca002c2703fa89
|
2082
|
+
- test/dummy/tmp/cache/assets/D44/D30/sprockets%2F9ad648cba74a79b1d7f022b04f91e757
|
2079
2083
|
- test/dummy/tmp/cache/assets/D44/D80/sprockets%2Fe4aad65716db3b1792eec515819fe148
|
2080
2084
|
- test/dummy/tmp/cache/assets/D45/0C0/sprockets%2F7e0ef33be170ff83c9549f61327efa03
|
2081
2085
|
- test/dummy/tmp/cache/assets/D45/650/sprockets%2Faf6e402610cf49945b35c8b5efd1826f
|
@@ -2257,6 +2261,7 @@ test_files:
|
|
2257
2261
|
- test/dummy/tmp/cache/assets/D8D/890/sprockets%2F351dbe7b0436abbe86cb8af5462b030e
|
2258
2262
|
- test/dummy/tmp/cache/assets/D8E/6D0/sprockets%2F11f02e2179c6e36d2a53e61b1a3beeef
|
2259
2263
|
- test/dummy/tmp/cache/assets/D8F/2C0/sprockets%2Feef1d8a352931bd39c211f0f30e6e2ac
|
2264
|
+
- test/dummy/tmp/cache/assets/D90/3F0/sprockets%2F01b09cc1a08766ec25f07f107fd1dfbd
|
2260
2265
|
- test/dummy/tmp/cache/assets/D90/9E0/sprockets%2Fa9ceedcc16170311b30c88da1ca368c9
|
2261
2266
|
- test/dummy/tmp/cache/assets/D90/F50/sprockets%2F0f293f5b0f85c1a1fd48c2b0610cbcf8
|
2262
2267
|
- test/dummy/tmp/cache/assets/D91/A80/sprockets%2F33e68918bcd0f1d2f3e74dfa100d42da
|
@@ -2336,6 +2341,7 @@ test_files:
|
|
2336
2341
|
- test/dummy/tmp/cache/assets/DB8/020/sprockets%2F8fe9e933e637b0dde67de1c7ff97a550
|
2337
2342
|
- test/dummy/tmp/cache/assets/DB8/5E0/sprockets%2F7f67e1aeed28f5dbd2836f84c25e9e93
|
2338
2343
|
- test/dummy/tmp/cache/assets/DB8/B60/sprockets%2Fab2954a1b4cfc4b0e2c66c352cb25a7d
|
2344
|
+
- test/dummy/tmp/cache/assets/DB9/920/sprockets%2F6febb8cc05d26cf99446b70fe5d8786f
|
2339
2345
|
- test/dummy/tmp/cache/assets/DBA/A20/sprockets%2F759cdaee13f68c98e48a59e0d34dd58f
|
2340
2346
|
- test/dummy/tmp/cache/assets/DBB/480/sprockets%2F48abb2bc119e084b0b8cdc5d1872c0be
|
2341
2347
|
- test/dummy/tmp/cache/assets/DBC/8D0/sprockets%2Ffc230cafbe156d070cdc4b6922d2b9a5
|