kilt-cms 0.9.12 → 0.9.13

Sign up to get free protection for your applications and to get access to all the features.
Files changed (27) hide show
  1. checksums.yaml +4 -4
  2. data/app/views/kilt/form/boolean.html.erb +21 -2
  3. data/test/dummy/config/kilt/config.yml +13 -5
  4. data/test/dummy/config/kilt/creds.yml +5 -1
  5. data/test/dummy/log/development.log +2799 -0
  6. data/test/dummy/public/uploads/image/photo.JPG +0 -0
  7. data/test/dummy/tmp/data/meta_request/191f094a-5e87-4654-bc80-5acb51d3f903.json +1 -0
  8. data/test/dummy/tmp/data/meta_request/1eb9499d-2e84-47df-ac0a-da308031aa3a.json +1 -0
  9. data/test/dummy/tmp/data/meta_request/300cabd2-6e51-4b1b-ab55-a072049c2a0f.json +1 -0
  10. data/test/dummy/tmp/data/meta_request/3ec7ea74-e7a7-4f4d-9434-e08edfc12b8a.json +1 -0
  11. data/test/dummy/tmp/data/meta_request/5bb81411-321e-4cba-9ffa-87fcd8105ef4.json +1 -0
  12. data/test/dummy/tmp/data/meta_request/9d6e10c1-5b14-4199-852e-9f1e97132b8f.json +1 -0
  13. data/test/dummy/tmp/data/meta_request/a6403ed9-21f1-4a00-9725-4a1c544214f6.json +1 -0
  14. data/test/dummy/tmp/data/meta_request/b4487e0b-0a08-40a3-a364-e715e6765631.json +1 -0
  15. data/test/dummy/tmp/data/meta_request/d399f913-d3a5-4de3-b012-848377a702fc.json +1 -0
  16. data/test/dummy/tmp/data/meta_request/dcf95267-1855-4062-85c8-e880f8d62443.json +1 -0
  17. metadata +24 -22
  18. data/test/dummy/tmp/data/meta_request/02c2be89-8712-4f5a-87b2-7a8615202b8f.json +0 -1
  19. data/test/dummy/tmp/data/meta_request/07e36c60-3fe6-457b-ba7e-e0becf2a6fb9.json +0 -1
  20. data/test/dummy/tmp/data/meta_request/3ebe0aaf-fc59-46a3-827e-acd261f81ecd.json +0 -1
  21. data/test/dummy/tmp/data/meta_request/54984bdf-812f-4923-9150-ebe0918e0fe3.json +0 -1
  22. data/test/dummy/tmp/data/meta_request/58e6146b-1860-4380-82c8-12aeb42b0aab.json +0 -1
  23. data/test/dummy/tmp/data/meta_request/5c5c9344-b415-4c15-9472-81bd2d8c85e4.json +0 -1
  24. data/test/dummy/tmp/data/meta_request/727a92b5-f21c-447f-990c-c52f9ba704fd.json +0 -1
  25. data/test/dummy/tmp/data/meta_request/aad4d90e-d4be-4203-be73-21a3664dbcb8.json +0 -1
  26. data/test/dummy/tmp/data/meta_request/ba01113f-9c59-439f-a013-35c5ba743a51.json +0 -1
  27. data/test/dummy/tmp/data/meta_request/fca3c0b0-43d6-44ec-a6b9-ab6ef880eff5.json +0 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5bc79b20dfeadd869a3bb00be4feba46d48e899d
4
- data.tar.gz: af4868aa779be136c4c7e3725c1d324d74446623
3
+ metadata.gz: cea124fc5db8137e9f0977072b63f52893b67786
4
+ data.tar.gz: 1c77d6e7b5c6ab5345c63902f470acf4593be569
5
5
  SHA512:
6
- metadata.gz: 9c53ac0f02758c90c01d1ea323db2189b59463847bfa94952caf72dcd9e0065f26b5eb667d1449b9181f710d7741b898a7a23f6f99830071a2b1c5cb6413337d
7
- data.tar.gz: 8a628dd979a3dd0f86b58947c755c8096e0930f28bbf62a0b355d783db946adf8425a3978d55f99770e64f7f18833be87b76b5e1af0edaec3f47a36cd389d419
6
+ metadata.gz: e6484b3682a25da1da72328fd7637479421719c1fa3232d6725d29a03d85fedf20fc1564ea6e3de031bd93dc2358c7fa0396718b072639e28fb62e975f8386b6
7
+ data.tar.gz: a8c0440e8c765a0c4319a50908acf1ce378b4127f0f5027030f8a9636eb1c5a97f8b759786f1a451aa7f8b08752e1da567d475a894c3d2e59528d98e5e710e9e
@@ -1,4 +1,23 @@
1
1
  <div class="form-input boolean">
2
2
  <label><%= Kilt::Utils.deslugify field_name %></label>
3
- <input name="<%= "#{object.type}[#{field_name}]" %>" type="checkbox" class="checkbox" <% if object["#{field_name}"] %> checked<% end %> />
4
- </div>
3
+ <input id="<%= "boolean-#{index}" %>" name="<%= "#{object.type}[#{field_name}]" %>" type="hidden" />
4
+ <input id="<%= "boolean-dummy-#{index}" %>" type="checkbox" class="checkbox" />
5
+ </div>
6
+
7
+ <script type="text/javascript">
8
+
9
+ // Set the initial value
10
+ var boolean_<%= index %>_value = "<%= object["#{field_name}"] %>";
11
+ if(boolean_<%= index %>_value == "true") {
12
+ $('#boolean-<%= index %>').attr('value', 'true');
13
+ $('#boolean-dummy-<%= index %>').attr('checked', 'true');
14
+ } else {
15
+ $('#boolean-<%= index %>').attr('value', 'false');
16
+ }
17
+
18
+ // Handle the check action
19
+ $('#boolean-dummy-<%= index %>').on("change", function(e) {
20
+ $('#boolean-<%= index %>').attr('value', $(this).is(":checked"));
21
+ });
22
+
23
+ </script>
@@ -1,12 +1,11 @@
1
- name: Ashe Avenue Community
1
+ name: Demo for Jeremy
2
2
  storage:
3
3
  strategy: local
4
4
  objects:
5
- bagpipe:
6
- name: Scottish bagpipes
5
+ thing:
7
6
  fields:
8
7
  name: text
9
- weight: number
8
+ year: number
10
9
  description: longtext
11
10
  markup: html
12
11
  birthday: datetime
@@ -15,4 +14,13 @@ objects:
15
14
  image: image
16
15
  vimeo_video: vimeo
17
16
  youtube_video: youtube
18
- other: file
17
+ other_file: file
18
+ person:
19
+ fields:
20
+ name: text
21
+ address: text
22
+ city: text
23
+ state: select_one(NY|OR|CA|FL)
24
+ zip: number
25
+ bio: longtext
26
+ avatar: image
@@ -4,4 +4,8 @@ db:
4
4
  db: ashecommunity
5
5
  auth:
6
6
  username: ashe
7
- password: avenue
7
+ password: avenue
8
+ s3:
9
+ key: <S3 key>
10
+ secret: <S3 secret>
11
+ bucket: <S3 bucket>
@@ -80791,3 +80791,2802 @@ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-01-29 10:09:24 -
80791
80791
 
80792
80792
 
80793
80793
  Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-01-29 10:09:24 -0500
80794
+
80795
+
80796
+ Started GET "/" for 127.0.0.1 at 2014-01-29 20:54:20 -0500
80797
+ Processing by DummyController#index as HTML
80798
+ Rendered dummy/index.html.erb within layouts/application (4.1ms)
80799
+ Completed 200 OK in 73ms (Views: 70.6ms)
80800
+
80801
+
80802
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-01-29 20:54:20 -0500
80803
+
80804
+
80805
+ Started GET "/assets/screen.css?body=1" for 127.0.0.1 at 2014-01-29 20:54:20 -0500
80806
+
80807
+
80808
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-29 20:54:20 -0500
80809
+
80810
+
80811
+ Started GET "/assets/dummy.js?body=1" for 127.0.0.1 at 2014-01-29 20:54:21 -0500
80812
+
80813
+
80814
+ Started GET "/assets/html5shiv.js?body=1" for 127.0.0.1 at 2014-01-29 20:54:21 -0500
80815
+
80816
+
80817
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-01-29 20:54:21 -0500
80818
+
80819
+
80820
+ Started GET "/assets/mediaqueries.js?body=1" for 127.0.0.1 at 2014-01-29 20:54:21 -0500
80821
+
80822
+
80823
+ Started GET "/favicon.ico" for 127.0.0.1 at 2014-01-29 20:54:21 -0500
80824
+
80825
+ ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
80826
+ actionpack (4.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
80827
+ actionpack (4.0.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
80828
+ railties (4.0.1) lib/rails/rack/logger.rb:38:in `call_app'
80829
+ railties (4.0.1) lib/rails/rack/logger.rb:20:in `block in call'
80830
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
80831
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:25:in `tagged'
80832
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `tagged'
80833
+ railties (4.0.1) lib/rails/rack/logger.rb:20:in `call'
80834
+ actionpack (4.0.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
80835
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
80836
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
80837
+ activesupport (4.0.1) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
80838
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
80839
+ actionpack (4.0.1) lib/action_dispatch/middleware/static.rb:64:in `call'
80840
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
80841
+ railties (4.0.1) lib/rails/engine.rb:511:in `call'
80842
+ railties (4.0.1) lib/rails/application.rb:97:in `call'
80843
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
80844
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
80845
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
80846
+ /Users/tim/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
80847
+ /Users/tim/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
80848
+ /Users/tim/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
80849
+
80850
+
80851
+ Rendered /Users/tim/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
80852
+ Rendered /Users/tim/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
80853
+ Rendered /Users/tim/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
80854
+ Rendered /Users/tim/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (8.0ms)
80855
+ Rendered /Users/tim/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (32.4ms)
80856
+
80857
+
80858
+ Started GET "/admin" for 127.0.0.1 at 2014-01-29 20:54:24 -0500
80859
+ Processing by Kilt::KiltController#index as HTML
80860
+ Filter chain halted as :authorize rendered or redirected
80861
+ Completed 401 Unauthorized in 2ms
80862
+
80863
+
80864
+ Started GET "/admin" for 127.0.0.1 at 2014-01-29 20:54:26 -0500
80865
+ Processing by Kilt::KiltController#index as HTML
80866
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/index.html.erb within layouts/kilt/cms (1.4ms)
80867
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (2.9ms)
80868
+ Completed 200 OK in 93ms (Views: 91.4ms)
80869
+
80870
+
80871
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-01-29 20:54:26 -0500
80872
+
80873
+
80874
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-01-29 20:54:26 -0500
80875
+
80876
+
80877
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-01-29 20:54:26 -0500
80878
+
80879
+
80880
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-01-29 20:54:26 -0500
80881
+
80882
+
80883
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-01-29 20:54:26 -0500
80884
+
80885
+
80886
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-01-29 20:54:26 -0500
80887
+
80888
+
80889
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-01-29 20:54:26 -0500
80890
+
80891
+
80892
+ Started GET "/admin" for 127.0.0.1 at 2014-01-29 20:56:06 -0500
80893
+ Processing by Kilt::KiltController#index as HTML
80894
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/index.html.erb within layouts/kilt/cms (0.7ms)
80895
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.0ms)
80896
+ Completed 200 OK in 11ms (Views: 8.5ms)
80897
+
80898
+
80899
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-01-29 20:56:06 -0500
80900
+
80901
+
80902
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-01-29 20:56:06 -0500
80903
+
80904
+
80905
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-29 20:56:06 -0500
80906
+
80907
+
80908
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-01-29 20:56:06 -0500
80909
+
80910
+
80911
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-01-29 20:56:06 -0500
80912
+
80913
+
80914
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-01-29 20:56:06 -0500
80915
+
80916
+
80917
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-01-29 20:56:06 -0500
80918
+
80919
+
80920
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-01-29 20:56:06 -0500
80921
+
80922
+
80923
+ Started GET "/admin/things" for 127.0.0.1 at 2014-01-29 20:56:11 -0500
80924
+ Processing by Kilt::KiltController#list as HTML
80925
+ Parameters: {"types"=>"things"}
80926
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/list.html.erb within layouts/kilt/cms (4.2ms)
80927
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.4ms)
80928
+ Completed 200 OK in 574ms (Views: 15.4ms)
80929
+
80930
+
80931
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-01-29 20:56:11 -0500
80932
+
80933
+
80934
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-01-29 20:56:11 -0500
80935
+
80936
+
80937
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-01-29 20:56:11 -0500
80938
+
80939
+
80940
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-29 20:56:11 -0500
80941
+
80942
+
80943
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-01-29 20:56:11 -0500
80944
+
80945
+
80946
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-01-29 20:56:11 -0500
80947
+
80948
+
80949
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-01-29 20:56:11 -0500
80950
+
80951
+
80952
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-01-29 20:56:11 -0500
80953
+
80954
+
80955
+ Started GET "/admin/thing/new" for 127.0.0.1 at 2014-01-29 20:56:13 -0500
80956
+ Processing by Kilt::KiltController#new as HTML
80957
+ Parameters: {"types"=>"thing"}
80958
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.6ms)
80959
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.8ms)
80960
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.7ms)
80961
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.6ms)
80962
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.6ms)
80963
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.6ms)
80964
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.9ms)
80965
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.2ms)
80966
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.6ms)
80967
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.4ms)
80968
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.9ms)
80969
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (75.9ms)
80970
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/new.html.erb within layouts/kilt/cms (78.4ms)
80971
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.4ms)
80972
+ Completed 200 OK in 91ms (Views: 88.0ms)
80973
+
80974
+
80975
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-01-29 20:56:13 -0500
80976
+
80977
+
80978
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-01-29 20:56:13 -0500
80979
+
80980
+
80981
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-01-29 20:56:13 -0500
80982
+
80983
+
80984
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-29 20:56:13 -0500
80985
+
80986
+
80987
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-01-29 20:56:13 -0500
80988
+
80989
+
80990
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-01-29 20:56:13 -0500
80991
+
80992
+
80993
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-01-29 20:56:13 -0500
80994
+
80995
+
80996
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-01-29 20:56:13 -0500
80997
+
80998
+
80999
+ Started GET "/assets/kilt/ui-bg_flat_100_ffffff_40x100.png" for 127.0.0.1 at 2014-01-29 20:56:13 -0500
81000
+
81001
+
81002
+ Started GET "/admin/thing/new" for 127.0.0.1 at 2014-01-29 20:56:32 -0500
81003
+ Processing by Kilt::KiltController#new as HTML
81004
+ Parameters: {"types"=>"thing"}
81005
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.8ms)
81006
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.5ms)
81007
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.4ms)
81008
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.4ms)
81009
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.4ms)
81010
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.4ms)
81011
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.6ms)
81012
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.2ms)
81013
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.3ms)
81014
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.4ms)
81015
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.9ms)
81016
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (56.6ms)
81017
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/new.html.erb within layouts/kilt/cms (58.0ms)
81018
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.3ms)
81019
+ Completed 200 OK in 68ms (Views: 65.1ms)
81020
+
81021
+
81022
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-01-29 20:56:32 -0500
81023
+
81024
+
81025
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-01-29 20:56:32 -0500
81026
+
81027
+
81028
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-01-29 20:56:32 -0500
81029
+
81030
+
81031
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-01-29 20:56:32 -0500
81032
+
81033
+
81034
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-29 20:56:32 -0500
81035
+
81036
+
81037
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-01-29 20:56:32 -0500
81038
+
81039
+
81040
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-01-29 20:56:32 -0500
81041
+
81042
+
81043
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-01-29 20:56:32 -0500
81044
+
81045
+
81046
+ Started GET "/assets/kilt/ui-bg_highlight-soft_100_fff_1x100.png" for 127.0.0.1 at 2014-01-29 20:56:43 -0500
81047
+
81048
+
81049
+ Started GET "/assets/kilt/ui-icons_404040_256x240.png" for 127.0.0.1 at 2014-01-29 20:56:43 -0500
81050
+
81051
+
81052
+ Started GET "/assets/kilt/ui-bg_flat_100_fff_40x100.png" for 127.0.0.1 at 2014-01-29 20:56:43 -0500
81053
+
81054
+
81055
+ Started GET "/admin/thing/new" for 127.0.0.1 at 2014-01-29 20:56:58 -0500
81056
+ Processing by Kilt::KiltController#new as HTML
81057
+ Parameters: {"types"=>"thing"}
81058
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.6ms)
81059
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.5ms)
81060
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.5ms)
81061
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.4ms)
81062
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.4ms)
81063
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.4ms)
81064
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.7ms)
81065
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.1ms)
81066
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.4ms)
81067
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.4ms)
81068
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (1.0ms)
81069
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (34.5ms)
81070
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/new.html.erb within layouts/kilt/cms (35.9ms)
81071
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.4ms)
81072
+ Completed 200 OK in 69ms (Views: 66.3ms)
81073
+
81074
+
81075
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-01-29 20:56:58 -0500
81076
+
81077
+
81078
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-01-29 20:56:58 -0500
81079
+
81080
+
81081
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-01-29 20:56:58 -0500
81082
+
81083
+
81084
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-29 20:56:58 -0500
81085
+
81086
+
81087
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-01-29 20:56:58 -0500
81088
+
81089
+
81090
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-01-29 20:56:58 -0500
81091
+
81092
+
81093
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-01-29 20:56:58 -0500
81094
+
81095
+
81096
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-01-29 20:56:58 -0500
81097
+
81098
+
81099
+ Started GET "/admin/thing/new" for 127.0.0.1 at 2014-01-29 20:57:05 -0500
81100
+ Processing by Kilt::KiltController#new as HTML
81101
+ Parameters: {"types"=>"thing"}
81102
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (1.1ms)
81103
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.5ms)
81104
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.5ms)
81105
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.4ms)
81106
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.5ms)
81107
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.5ms)
81108
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (1.0ms)
81109
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.1ms)
81110
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.4ms)
81111
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.3ms)
81112
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (1.0ms)
81113
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (37.9ms)
81114
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/new.html.erb within layouts/kilt/cms (39.5ms)
81115
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.4ms)
81116
+ Completed 200 OK in 50ms (Views: 46.7ms)
81117
+
81118
+
81119
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-01-29 20:57:05 -0500
81120
+
81121
+
81122
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:05 -0500
81123
+
81124
+
81125
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-01-29 20:57:05 -0500
81126
+
81127
+
81128
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:05 -0500
81129
+
81130
+
81131
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:05 -0500
81132
+
81133
+
81134
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:05 -0500
81135
+
81136
+
81137
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:05 -0500
81138
+
81139
+
81140
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:05 -0500
81141
+
81142
+
81143
+ Started GET "/admin/thing/new" for 127.0.0.1 at 2014-01-29 20:57:06 -0500
81144
+ Processing by Kilt::KiltController#new as HTML
81145
+ Parameters: {"types"=>"thing"}
81146
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.5ms)
81147
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.6ms)
81148
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.6ms)
81149
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.4ms)
81150
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.6ms)
81151
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.5ms)
81152
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (1.2ms)
81153
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (2.1ms)
81154
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.6ms)
81155
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.4ms)
81156
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.8ms)
81157
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (62.7ms)
81158
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/new.html.erb within layouts/kilt/cms (64.2ms)
81159
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.5ms)
81160
+ Completed 200 OK in 74ms (Views: 71.4ms)
81161
+
81162
+
81163
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-01-29 20:57:07 -0500
81164
+
81165
+
81166
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-01-29 20:57:07 -0500
81167
+
81168
+
81169
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:07 -0500
81170
+
81171
+
81172
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:07 -0500
81173
+
81174
+
81175
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:07 -0500
81176
+
81177
+
81178
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:07 -0500
81179
+
81180
+
81181
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:07 -0500
81182
+
81183
+
81184
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:07 -0500
81185
+
81186
+
81187
+ Started GET "/admin/thing" for 127.0.0.1 at 2014-01-29 20:57:12 -0500
81188
+ Processing by Kilt::KiltController#list as HTML
81189
+ Parameters: {"types"=>"thing"}
81190
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/list.html.erb within layouts/kilt/cms (3.0ms)
81191
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.4ms)
81192
+ Completed 200 OK in 498ms (Views: 12.1ms)
81193
+
81194
+
81195
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-01-29 20:57:13 -0500
81196
+
81197
+
81198
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-01-29 20:57:13 -0500
81199
+
81200
+
81201
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:13 -0500
81202
+
81203
+
81204
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:13 -0500
81205
+
81206
+
81207
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:13 -0500
81208
+
81209
+
81210
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:13 -0500
81211
+
81212
+
81213
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:13 -0500
81214
+
81215
+
81216
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:13 -0500
81217
+
81218
+
81219
+ Started GET "/admin/people" for 127.0.0.1 at 2014-01-29 20:57:15 -0500
81220
+ Processing by Kilt::KiltController#list as HTML
81221
+ Parameters: {"types"=>"people"}
81222
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/list.html.erb within layouts/kilt/cms (2.0ms)
81223
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.2ms)
81224
+ Completed 200 OK in 106ms (Views: 10.5ms)
81225
+
81226
+
81227
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-01-29 20:57:15 -0500
81228
+
81229
+
81230
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:15 -0500
81231
+
81232
+
81233
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:15 -0500
81234
+
81235
+
81236
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-01-29 20:57:15 -0500
81237
+
81238
+
81239
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:15 -0500
81240
+
81241
+
81242
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:15 -0500
81243
+
81244
+
81245
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:15 -0500
81246
+
81247
+
81248
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:15 -0500
81249
+
81250
+
81251
+ Started GET "/admin/person/new" for 127.0.0.1 at 2014-01-29 20:57:16 -0500
81252
+ Processing by Kilt::KiltController#new as HTML
81253
+ Parameters: {"types"=>"person"}
81254
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.5ms)
81255
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.4ms)
81256
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.5ms)
81257
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.9ms)
81258
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.5ms)
81259
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.5ms)
81260
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.1ms)
81261
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (20.7ms)
81262
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/new.html.erb within layouts/kilt/cms (21.8ms)
81263
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.2ms)
81264
+ Completed 200 OK in 31ms (Views: 29.0ms)
81265
+
81266
+
81267
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-01-29 20:57:16 -0500
81268
+
81269
+
81270
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-01-29 20:57:16 -0500
81271
+
81272
+
81273
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:16 -0500
81274
+
81275
+
81276
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:16 -0500
81277
+
81278
+
81279
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:16 -0500
81280
+
81281
+
81282
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:16 -0500
81283
+
81284
+
81285
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:16 -0500
81286
+
81287
+
81288
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:16 -0500
81289
+
81290
+
81291
+ Started GET "/admin/" for 127.0.0.1 at 2014-01-29 20:57:46 -0500
81292
+ Processing by Kilt::KiltController#index as HTML
81293
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/index.html.erb within layouts/kilt/cms (1.1ms)
81294
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (0.9ms)
81295
+ Completed 200 OK in 13ms (Views: 10.2ms)
81296
+
81297
+
81298
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-01-29 20:57:47 -0500
81299
+
81300
+
81301
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-01-29 20:57:47 -0500
81302
+
81303
+
81304
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:47 -0500
81305
+
81306
+
81307
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:47 -0500
81308
+
81309
+
81310
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:47 -0500
81311
+
81312
+
81313
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:47 -0500
81314
+
81315
+
81316
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:47 -0500
81317
+
81318
+
81319
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:47 -0500
81320
+
81321
+
81322
+ Started GET "/admin/people" for 127.0.0.1 at 2014-01-29 20:57:48 -0500
81323
+ Processing by Kilt::KiltController#list as HTML
81324
+ Parameters: {"types"=>"people"}
81325
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/list.html.erb within layouts/kilt/cms (2.0ms)
81326
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.1ms)
81327
+ Completed 200 OK in 116ms (Views: 10.2ms)
81328
+
81329
+
81330
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-01-29 20:57:48 -0500
81331
+
81332
+
81333
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:48 -0500
81334
+
81335
+
81336
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:48 -0500
81337
+
81338
+
81339
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-01-29 20:57:48 -0500
81340
+
81341
+
81342
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:48 -0500
81343
+
81344
+
81345
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:48 -0500
81346
+
81347
+
81348
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:48 -0500
81349
+
81350
+
81351
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:48 -0500
81352
+
81353
+
81354
+ Started GET "/admin/" for 127.0.0.1 at 2014-01-29 20:57:56 -0500
81355
+ Processing by Kilt::KiltController#index as HTML
81356
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/index.html.erb within layouts/kilt/cms (0.8ms)
81357
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.2ms)
81358
+ Completed 200 OK in 36ms (Views: 33.5ms)
81359
+
81360
+
81361
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-01-29 20:57:56 -0500
81362
+
81363
+
81364
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-01-29 20:57:56 -0500
81365
+
81366
+
81367
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:56 -0500
81368
+
81369
+
81370
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:56 -0500
81371
+
81372
+
81373
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:56 -0500
81374
+
81375
+
81376
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:56 -0500
81377
+
81378
+
81379
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:56 -0500
81380
+
81381
+
81382
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-01-29 20:57:56 -0500
81383
+
81384
+
81385
+ Started GET "/admin/" for 127.0.0.1 at 2014-01-29 20:58:06 -0500
81386
+ Processing by Kilt::KiltController#index as HTML
81387
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/index.html.erb within layouts/kilt/cms (1.0ms)
81388
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (0.9ms)
81389
+ Completed 200 OK in 12ms (Views: 9.9ms)
81390
+
81391
+
81392
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-01-29 20:58:06 -0500
81393
+
81394
+
81395
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-01-29 20:58:06 -0500
81396
+
81397
+
81398
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-01-29 20:58:06 -0500
81399
+
81400
+
81401
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-29 20:58:06 -0500
81402
+
81403
+
81404
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-01-29 20:58:06 -0500
81405
+
81406
+
81407
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-01-29 20:58:06 -0500
81408
+
81409
+
81410
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-01-29 20:58:06 -0500
81411
+
81412
+
81413
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-01-29 20:58:06 -0500
81414
+
81415
+
81416
+ Started GET "/admin/" for 127.0.0.1 at 2014-01-29 21:00:36 -0500
81417
+ Processing by Kilt::KiltController#index as HTML
81418
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/index.html.erb within layouts/kilt/cms (1.1ms)
81419
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (0.9ms)
81420
+ Completed 200 OK in 12ms (Views: 9.4ms)
81421
+
81422
+
81423
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-01-29 21:00:37 -0500
81424
+
81425
+
81426
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-01-29 21:00:37 -0500
81427
+
81428
+
81429
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-29 21:00:37 -0500
81430
+
81431
+
81432
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-01-29 21:00:37 -0500
81433
+
81434
+
81435
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-01-29 21:00:37 -0500
81436
+
81437
+
81438
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-01-29 21:00:37 -0500
81439
+
81440
+
81441
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-01-29 21:00:37 -0500
81442
+
81443
+
81444
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-01-29 21:00:37 -0500
81445
+
81446
+
81447
+ Started GET "/admin/people" for 127.0.0.1 at 2014-01-29 21:00:38 -0500
81448
+ Processing by Kilt::KiltController#list as HTML
81449
+ Parameters: {"types"=>"people"}
81450
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/list.html.erb within layouts/kilt/cms (2.1ms)
81451
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.2ms)
81452
+ Completed 200 OK in 708ms (Views: 10.8ms)
81453
+
81454
+
81455
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-01-29 21:00:39 -0500
81456
+
81457
+
81458
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-01-29 21:00:39 -0500
81459
+
81460
+
81461
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-01-29 21:00:39 -0500
81462
+
81463
+
81464
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-29 21:00:39 -0500
81465
+
81466
+
81467
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-01-29 21:00:39 -0500
81468
+
81469
+
81470
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-01-29 21:00:39 -0500
81471
+
81472
+
81473
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-01-29 21:00:39 -0500
81474
+
81475
+
81476
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-01-29 21:00:39 -0500
81477
+
81478
+
81479
+ Started GET "/admin/person/new" for 127.0.0.1 at 2014-01-29 21:00:40 -0500
81480
+ Processing by Kilt::KiltController#new as HTML
81481
+ Parameters: {"types"=>"person"}
81482
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.9ms)
81483
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.7ms)
81484
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.7ms)
81485
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (1.5ms)
81486
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.7ms)
81487
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.5ms)
81488
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.0ms)
81489
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (27.9ms)
81490
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/new.html.erb within layouts/kilt/cms (29.6ms)
81491
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.1ms)
81492
+ Completed 200 OK in 39ms (Views: 36.3ms)
81493
+
81494
+
81495
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-01-29 21:00:40 -0500
81496
+
81497
+
81498
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-01-29 21:00:40 -0500
81499
+
81500
+
81501
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-01-29 21:00:40 -0500
81502
+
81503
+
81504
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-01-29 21:00:40 -0500
81505
+
81506
+
81507
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-29 21:00:40 -0500
81508
+
81509
+
81510
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-01-29 21:00:40 -0500
81511
+
81512
+
81513
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-01-29 21:00:40 -0500
81514
+
81515
+
81516
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-01-29 21:00:40 -0500
81517
+
81518
+
81519
+ Started POST "/admin/people" for 127.0.0.1 at 2014-01-29 21:02:17 -0500
81520
+ Processing by Kilt::KiltController#create as HTML
81521
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"RiORy2iVlpvfltHE/P5yImpHPiMX/xd4gz95hgcpx3c=", "person"=>{"name"=>"Tim", "address"=>"123 First Street", "city"=>"Helloville", "state"=>"CA", "zip"=>"10009", "bio"=>"Sed posuere consectetur est at lobortis. Donec sed odio dui. Nulla vitae elit libero, a pharetra augue. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Maecenas sed diam eget risus varius blandit sit amet non magna. Morbi leo risus, porta ac consectetur ac, vestibulum at eros.\r\n\r\nDonec sed odio dui. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam porta sem malesuada magna mollis euismod. Maecenas sed diam eget risus varius blandit sit amet non magna.", "avatar"=>#<ActionDispatch::Http::UploadedFile:0x007fb043a27bc8 @tempfile=#<Tempfile:/var/folders/2_/vxkz03vx13bg5zrtkvycvx100000gn/T/RackMultipart20140129-21537-wgnf3t>, @original_filename="photo.JPG", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"person[avatar]\"; filename=\"photo.JPG\"\r\nContent-Type: image/jpeg\r\n">, "avatar-hidden"=>""}, "types"=>"people"}
81522
+ Redirected to http://localhost:3000/admin/people/tim
81523
+ Completed 302 Found in 651ms
81524
+
81525
+
81526
+ Started GET "/admin/people/tim" for 127.0.0.1 at 2014-01-29 21:02:18 -0500
81527
+ Processing by Kilt::KiltController#edit as HTML
81528
+ Parameters: {"types"=>"people", "slug"=>"tim"}
81529
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.6ms)
81530
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.5ms)
81531
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.4ms)
81532
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.8ms)
81533
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.5ms)
81534
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.7ms)
81535
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.7ms)
81536
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (51.7ms)
81537
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (53.6ms)
81538
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (2.0ms)
81539
+ Completed 200 OK in 153ms (Views: 65.4ms)
81540
+
81541
+
81542
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-01-29 21:02:18 -0500
81543
+
81544
+
81545
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-01-29 21:02:18 -0500
81546
+
81547
+
81548
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-29 21:02:18 -0500
81549
+
81550
+
81551
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-01-29 21:02:18 -0500
81552
+
81553
+
81554
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-01-29 21:02:18 -0500
81555
+
81556
+
81557
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-01-29 21:02:18 -0500
81558
+
81559
+
81560
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-01-29 21:02:18 -0500
81561
+
81562
+
81563
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-01-29 21:02:18 -0500
81564
+
81565
+
81566
+ Started GET "/uploads/avatar/photo.JPG" for 127.0.0.1 at 2014-01-29 21:02:18 -0500
81567
+
81568
+ ActionController::RoutingError (No route matches [GET] "/uploads/avatar/photo.JPG"):
81569
+ actionpack (4.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
81570
+ actionpack (4.0.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
81571
+ railties (4.0.1) lib/rails/rack/logger.rb:38:in `call_app'
81572
+ railties (4.0.1) lib/rails/rack/logger.rb:20:in `block in call'
81573
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
81574
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:25:in `tagged'
81575
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `tagged'
81576
+ railties (4.0.1) lib/rails/rack/logger.rb:20:in `call'
81577
+ actionpack (4.0.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
81578
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
81579
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
81580
+ activesupport (4.0.1) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
81581
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
81582
+ actionpack (4.0.1) lib/action_dispatch/middleware/static.rb:64:in `call'
81583
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
81584
+ railties (4.0.1) lib/rails/engine.rb:511:in `call'
81585
+ railties (4.0.1) lib/rails/application.rb:97:in `call'
81586
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
81587
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
81588
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
81589
+ /Users/tim/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
81590
+ /Users/tim/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
81591
+ /Users/tim/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
81592
+
81593
+
81594
+ Rendered /Users/tim/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
81595
+ Rendered /Users/tim/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
81596
+ Rendered /Users/tim/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
81597
+ Rendered /Users/tim/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
81598
+ Rendered /Users/tim/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (17.9ms)
81599
+
81600
+
81601
+ Started GET "/admin/" for 127.0.0.1 at 2014-01-29 21:02:25 -0500
81602
+ Processing by Kilt::KiltController#index as HTML
81603
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/index.html.erb within layouts/kilt/cms (0.7ms)
81604
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (0.9ms)
81605
+ Completed 200 OK in 11ms (Views: 8.8ms)
81606
+
81607
+
81608
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-01-29 21:02:25 -0500
81609
+
81610
+
81611
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-01-29 21:02:25 -0500
81612
+
81613
+
81614
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-01-29 21:02:25 -0500
81615
+
81616
+
81617
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-29 21:02:25 -0500
81618
+
81619
+
81620
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-01-29 21:02:25 -0500
81621
+
81622
+
81623
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-01-29 21:02:25 -0500
81624
+
81625
+
81626
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-01-29 21:02:25 -0500
81627
+
81628
+
81629
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-01-29 21:02:25 -0500
81630
+
81631
+
81632
+ Started GET "/admin/things" for 127.0.0.1 at 2014-01-29 21:04:47 -0500
81633
+ Processing by Kilt::KiltController#list as HTML
81634
+ Parameters: {"types"=>"things"}
81635
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/list.html.erb within layouts/kilt/cms (3.9ms)
81636
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.4ms)
81637
+ Completed 200 OK in 128ms (Views: 13.3ms)
81638
+
81639
+
81640
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-01-29 21:04:47 -0500
81641
+
81642
+
81643
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-01-29 21:04:47 -0500
81644
+
81645
+
81646
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-01-29 21:04:47 -0500
81647
+
81648
+
81649
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-01-29 21:04:47 -0500
81650
+
81651
+
81652
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-01-29 21:04:47 -0500
81653
+
81654
+
81655
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-29 21:04:47 -0500
81656
+
81657
+
81658
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-01-29 21:04:47 -0500
81659
+
81660
+
81661
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-01-29 21:04:47 -0500
81662
+
81663
+
81664
+ Started GET "/admin/thing/new" for 127.0.0.1 at 2014-01-29 21:04:49 -0500
81665
+ Processing by Kilt::KiltController#new as HTML
81666
+ Parameters: {"types"=>"thing"}
81667
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.5ms)
81668
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.7ms)
81669
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.5ms)
81670
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.6ms)
81671
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.7ms)
81672
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.5ms)
81673
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.6ms)
81674
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.1ms)
81675
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.4ms)
81676
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.4ms)
81677
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (1.0ms)
81678
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (36.9ms)
81679
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/new.html.erb within layouts/kilt/cms (38.4ms)
81680
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.4ms)
81681
+ Completed 200 OK in 49ms (Views: 45.7ms)
81682
+
81683
+
81684
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-01-29 21:04:49 -0500
81685
+
81686
+
81687
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-01-29 21:04:49 -0500
81688
+
81689
+
81690
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-01-29 21:04:49 -0500
81691
+
81692
+
81693
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-29 21:04:49 -0500
81694
+
81695
+
81696
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-01-29 21:04:49 -0500
81697
+
81698
+
81699
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-01-29 21:04:49 -0500
81700
+
81701
+
81702
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-01-29 21:04:49 -0500
81703
+
81704
+
81705
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-01-29 21:04:49 -0500
81706
+
81707
+
81708
+ Started GET "/assets/kilt/ui-bg_flat_100_ffffff_40x100.png" for 127.0.0.1 at 2014-01-29 21:04:49 -0500
81709
+
81710
+
81711
+ Started POST "/admin/things" for 127.0.0.1 at 2014-01-29 21:04:52 -0500
81712
+ Processing by Kilt::KiltController#create as HTML
81713
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"RiORy2iVlpvfltHE/P5yImpHPiMX/xd4gz95hgcpx3c=", "thing"=>{"name"=>"Test", "year"=>"19191", "description"=>"", "markup"=>"", "birthday"=>"", "pick_one"=>"Blue", "image-hidden"=>"", "vimeo_video"=>"", "youtube_video"=>"", "other_file-hidden"=>""}, "types"=>"things"}
81714
+ Redirected to http://localhost:3000/admin/things/test
81715
+ Completed 302 Found in 170ms
81716
+
81717
+
81718
+ Started GET "/admin/things/test" for 127.0.0.1 at 2014-01-29 21:04:52 -0500
81719
+ Processing by Kilt::KiltController#edit as HTML
81720
+ Parameters: {"types"=>"things", "slug"=>"test"}
81721
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.8ms)
81722
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.9ms)
81723
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.5ms)
81724
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.5ms)
81725
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.5ms)
81726
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.4ms)
81727
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (25.2ms)
81728
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.1ms)
81729
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.4ms)
81730
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (2.1ms)
81731
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.9ms)
81732
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (64.7ms)
81733
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (66.6ms)
81734
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.3ms)
81735
+ Completed 200 OK in 183ms (Views: 74.7ms)
81736
+
81737
+
81738
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-01-29 21:04:52 -0500
81739
+
81740
+
81741
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-01-29 21:04:52 -0500
81742
+
81743
+
81744
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-29 21:04:52 -0500
81745
+
81746
+
81747
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-01-29 21:04:52 -0500
81748
+
81749
+
81750
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-01-29 21:04:52 -0500
81751
+
81752
+
81753
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-01-29 21:04:52 -0500
81754
+
81755
+
81756
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-01-29 21:04:52 -0500
81757
+
81758
+
81759
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-01-29 21:04:52 -0500
81760
+
81761
+
81762
+ Started GET "/admin/thing" for 127.0.0.1 at 2014-01-29 21:04:56 -0500
81763
+ Processing by Kilt::KiltController#list as HTML
81764
+ Parameters: {"types"=>"thing"}
81765
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/list.html.erb within layouts/kilt/cms (9.4ms)
81766
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.3ms)
81767
+ Completed 200 OK in 107ms (Views: 17.8ms)
81768
+
81769
+
81770
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-01-29 21:04:56 -0500
81771
+
81772
+
81773
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-01-29 21:04:56 -0500
81774
+
81775
+
81776
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-01-29 21:04:56 -0500
81777
+
81778
+
81779
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-01-29 21:04:56 -0500
81780
+
81781
+
81782
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-01-29 21:04:56 -0500
81783
+
81784
+
81785
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-29 21:04:56 -0500
81786
+
81787
+
81788
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-01-29 21:04:56 -0500
81789
+
81790
+
81791
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-01-29 21:04:56 -0500
81792
+
81793
+
81794
+ Started GET "/admin/thing/new" for 127.0.0.1 at 2014-01-29 21:04:57 -0500
81795
+ Processing by Kilt::KiltController#new as HTML
81796
+ Parameters: {"types"=>"thing"}
81797
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.5ms)
81798
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.6ms)
81799
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.5ms)
81800
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.4ms)
81801
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.6ms)
81802
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.4ms)
81803
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.6ms)
81804
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.1ms)
81805
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.5ms)
81806
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.4ms)
81807
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.9ms)
81808
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (35.1ms)
81809
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/new.html.erb within layouts/kilt/cms (36.6ms)
81810
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.4ms)
81811
+ Completed 200 OK in 47ms (Views: 44.1ms)
81812
+
81813
+
81814
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-01-29 21:04:57 -0500
81815
+
81816
+
81817
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-29 21:04:57 -0500
81818
+
81819
+
81820
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-01-29 21:04:57 -0500
81821
+
81822
+
81823
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-01-29 21:04:57 -0500
81824
+
81825
+
81826
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-01-29 21:04:57 -0500
81827
+
81828
+
81829
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-01-29 21:04:57 -0500
81830
+
81831
+
81832
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-01-29 21:04:57 -0500
81833
+
81834
+
81835
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-01-29 21:04:57 -0500
81836
+
81837
+
81838
+ Started POST "/admin/things" for 127.0.0.1 at 2014-01-29 21:05:01 -0500
81839
+ Processing by Kilt::KiltController#create as HTML
81840
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"RiORy2iVlpvfltHE/P5yImpHPiMX/xd4gz95hgcpx3c=", "thing"=>{"name"=>"Another", "year"=>"1212", "description"=>"", "markup"=>"", "birthday"=>"", "pick_one"=>"Blue", "image-hidden"=>"", "vimeo_video"=>"", "youtube_video"=>"", "other_file-hidden"=>""}, "types"=>"things"}
81841
+ Redirected to http://localhost:3000/admin/things/another
81842
+ Completed 302 Found in 256ms
81843
+
81844
+
81845
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-01-29 21:05:01 -0500
81846
+ Processing by Kilt::KiltController#edit as HTML
81847
+ Parameters: {"types"=>"things", "slug"=>"another"}
81848
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.5ms)
81849
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.6ms)
81850
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.5ms)
81851
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.4ms)
81852
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.5ms)
81853
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.5ms)
81854
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.6ms)
81855
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.1ms)
81856
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.3ms)
81857
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.2ms)
81858
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.8ms)
81859
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (33.8ms)
81860
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (35.3ms)
81861
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.5ms)
81862
+ Completed 200 OK in 156ms (Views: 68.0ms)
81863
+
81864
+
81865
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-01-29 21:05:01 -0500
81866
+
81867
+
81868
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-29 21:05:01 -0500
81869
+
81870
+
81871
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-01-29 21:05:01 -0500
81872
+
81873
+
81874
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-01-29 21:05:01 -0500
81875
+
81876
+
81877
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-01-29 21:05:01 -0500
81878
+
81879
+
81880
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-01-29 21:05:01 -0500
81881
+
81882
+
81883
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-01-29 21:05:02 -0500
81884
+
81885
+
81886
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-01-29 21:05:02 -0500
81887
+
81888
+
81889
+ Started GET "/admin/" for 127.0.0.1 at 2014-01-29 21:05:11 -0500
81890
+ Processing by Kilt::KiltController#index as HTML
81891
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/index.html.erb within layouts/kilt/cms (0.7ms)
81892
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (0.8ms)
81893
+ Completed 200 OK in 11ms (Views: 8.3ms)
81894
+
81895
+
81896
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-01-29 21:05:11 -0500
81897
+
81898
+
81899
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-01-29 21:05:11 -0500
81900
+
81901
+
81902
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-01-29 21:05:11 -0500
81903
+
81904
+
81905
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-01-29 21:05:11 -0500
81906
+
81907
+
81908
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-01-29 21:05:11 -0500
81909
+
81910
+
81911
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-01-29 21:05:11 -0500
81912
+
81913
+
81914
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-01-29 21:05:11 -0500
81915
+
81916
+
81917
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-01-29 21:05:11 -0500
81918
+
81919
+
81920
+ Started GET "/" for 127.0.0.1 at 2014-02-19 15:14:59 -0500
81921
+ Processing by DummyController#index as HTML
81922
+ Rendered dummy/index.html.erb within layouts/application (3.4ms)
81923
+ Completed 200 OK in 48ms (Views: 45.9ms)
81924
+
81925
+
81926
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:14:59 -0500
81927
+
81928
+
81929
+ Started GET "/assets/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:14:59 -0500
81930
+
81931
+
81932
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:14:59 -0500
81933
+
81934
+
81935
+ Started GET "/assets/dummy.js?body=1" for 127.0.0.1 at 2014-02-19 15:14:59 -0500
81936
+
81937
+
81938
+ Started GET "/assets/mediaqueries.js?body=1" for 127.0.0.1 at 2014-02-19 15:14:59 -0500
81939
+
81940
+
81941
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:14:59 -0500
81942
+
81943
+
81944
+ Started GET "/assets/html5shiv.js?body=1" for 127.0.0.1 at 2014-02-19 15:14:59 -0500
81945
+
81946
+
81947
+ Started GET "/favicon.ico" for 127.0.0.1 at 2014-02-19 15:15:00 -0500
81948
+
81949
+ ActionController::RoutingError (No route matches [GET] "/favicon.ico"):
81950
+ actionpack (4.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
81951
+ actionpack (4.0.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
81952
+ railties (4.0.1) lib/rails/rack/logger.rb:38:in `call_app'
81953
+ railties (4.0.1) lib/rails/rack/logger.rb:20:in `block in call'
81954
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
81955
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:25:in `tagged'
81956
+ activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `tagged'
81957
+ railties (4.0.1) lib/rails/rack/logger.rb:20:in `call'
81958
+ actionpack (4.0.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
81959
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
81960
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
81961
+ activesupport (4.0.1) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
81962
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
81963
+ actionpack (4.0.1) lib/action_dispatch/middleware/static.rb:64:in `call'
81964
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
81965
+ railties (4.0.1) lib/rails/engine.rb:511:in `call'
81966
+ railties (4.0.1) lib/rails/application.rb:97:in `call'
81967
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
81968
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
81969
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
81970
+ /Users/tim/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
81971
+ /Users/tim/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
81972
+ /Users/tim/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
81973
+
81974
+
81975
+ Rendered /Users/tim/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms)
81976
+ Rendered /Users/tim/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
81977
+ Rendered /Users/tim/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
81978
+ Rendered /Users/tim/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.6ms)
81979
+ Rendered /Users/tim/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (39.0ms)
81980
+
81981
+
81982
+ Started GET "/admin" for 127.0.0.1 at 2014-02-19 15:15:02 -0500
81983
+ Processing by Kilt::KiltController#index as HTML
81984
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/index.html.erb within layouts/kilt/cms (1.4ms)
81985
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (2.7ms)
81986
+ Completed 200 OK in 79ms (Views: 76.9ms)
81987
+
81988
+
81989
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:15:02 -0500
81990
+
81991
+
81992
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:15:02 -0500
81993
+
81994
+
81995
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:02 -0500
81996
+
81997
+
81998
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:02 -0500
81999
+
82000
+
82001
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:02 -0500
82002
+
82003
+
82004
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:02 -0500
82005
+
82006
+
82007
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:02 -0500
82008
+
82009
+
82010
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:02 -0500
82011
+
82012
+
82013
+ Started GET "/admin/things" for 127.0.0.1 at 2014-02-19 15:15:04 -0500
82014
+ Processing by Kilt::KiltController#list as HTML
82015
+ Parameters: {"types"=>"things"}
82016
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/list.html.erb within layouts/kilt/cms (11.1ms)
82017
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.4ms)
82018
+ Completed 200 OK in 102ms (Views: 21.1ms)
82019
+
82020
+
82021
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:15:04 -0500
82022
+
82023
+
82024
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:04 -0500
82025
+
82026
+
82027
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:04 -0500
82028
+
82029
+
82030
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:04 -0500
82031
+
82032
+
82033
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:15:04 -0500
82034
+
82035
+
82036
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:04 -0500
82037
+
82038
+
82039
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:04 -0500
82040
+
82041
+
82042
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:04 -0500
82043
+
82044
+
82045
+ Started GET "/admin/thing/new" for 127.0.0.1 at 2014-02-19 15:15:05 -0500
82046
+ Processing by Kilt::KiltController#new as HTML
82047
+ Parameters: {"types"=>"thing"}
82048
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.5ms)
82049
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.7ms)
82050
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.6ms)
82051
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.4ms)
82052
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.5ms)
82053
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (16.6ms)
82054
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (1.0ms)
82055
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.2ms)
82056
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.4ms)
82057
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.5ms)
82058
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (1.0ms)
82059
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (86.7ms)
82060
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/new.html.erb within layouts/kilt/cms (88.8ms)
82061
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.3ms)
82062
+ Completed 200 OK in 99ms (Views: 96.6ms)
82063
+
82064
+
82065
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:15:05 -0500
82066
+
82067
+
82068
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:05 -0500
82069
+
82070
+
82071
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:05 -0500
82072
+
82073
+
82074
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:05 -0500
82075
+
82076
+
82077
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:05 -0500
82078
+
82079
+
82080
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:15:05 -0500
82081
+
82082
+
82083
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:05 -0500
82084
+
82085
+
82086
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:05 -0500
82087
+
82088
+
82089
+ Started GET "/assets/kilt/ui-bg_flat_100_ffffff_40x100.png" for 127.0.0.1 at 2014-02-19 15:15:05 -0500
82090
+
82091
+
82092
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:15:09 -0500
82093
+ Processing by Kilt::KiltController#edit as HTML
82094
+ Parameters: {"types"=>"things", "slug"=>"another"}
82095
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.6ms)
82096
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.5ms)
82097
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.4ms)
82098
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (21.5ms)
82099
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.5ms)
82100
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.4ms)
82101
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.7ms)
82102
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.5ms)
82103
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.4ms)
82104
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.3ms)
82105
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.8ms)
82106
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (56.3ms)
82107
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (58.2ms)
82108
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.4ms)
82109
+ Completed 200 OK in 181ms (Views: 84.7ms)
82110
+
82111
+
82112
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:15:09 -0500
82113
+
82114
+
82115
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:15:09 -0500
82116
+
82117
+
82118
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:09 -0500
82119
+
82120
+
82121
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:09 -0500
82122
+
82123
+
82124
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:09 -0500
82125
+
82126
+
82127
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:09 -0500
82128
+
82129
+
82130
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:09 -0500
82131
+
82132
+
82133
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:09 -0500
82134
+
82135
+
82136
+ Started POST "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:15:12 -0500
82137
+ Processing by Kilt::KiltController#update as HTML
82138
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"RiORy2iVlpvfltHE/P5yImpHPiMX/xd4gz95hgcpx3c=", "thing"=>{"name"=>"Another", "year"=>"1212", "description"=>"", "markup"=>"", "birthday"=>"", "has_stuff"=>"on", "pick_one"=>"Blue", "image-hidden"=>"", "vimeo_video"=>"", "youtube_video"=>"", "other_file-hidden"=>""}, "types"=>"things", "slug"=>"another"}
82139
+ Redirected to http://localhost:3000/admin/things/another
82140
+ Completed 302 Found in 349ms
82141
+
82142
+
82143
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:15:12 -0500
82144
+ Processing by Kilt::KiltController#edit as HTML
82145
+ Parameters: {"types"=>"things", "slug"=>"another"}
82146
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.6ms)
82147
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (22.6ms)
82148
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.5ms)
82149
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.4ms)
82150
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.5ms)
82151
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.6ms)
82152
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.8ms)
82153
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.2ms)
82154
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.4ms)
82155
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.3ms)
82156
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (1.0ms)
82157
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (56.7ms)
82158
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (58.1ms)
82159
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.3ms)
82160
+ Completed 200 OK in 143ms (Views: 65.8ms)
82161
+
82162
+
82163
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:15:13 -0500
82164
+
82165
+
82166
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:13 -0500
82167
+
82168
+
82169
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:15:13 -0500
82170
+
82171
+
82172
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:13 -0500
82173
+
82174
+
82175
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:13 -0500
82176
+
82177
+
82178
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:13 -0500
82179
+
82180
+
82181
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:13 -0500
82182
+
82183
+
82184
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:13 -0500
82185
+
82186
+
82187
+ Started POST "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:15:16 -0500
82188
+ Processing by Kilt::KiltController#update as HTML
82189
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"RiORy2iVlpvfltHE/P5yImpHPiMX/xd4gz95hgcpx3c=", "thing"=>{"name"=>"Another", "year"=>"1212", "description"=>"", "markup"=>"", "birthday"=>"", "pick_one"=>"Blue", "image-hidden"=>"", "vimeo_video"=>"", "youtube_video"=>"", "other_file-hidden"=>""}, "types"=>"things", "slug"=>"another"}
82190
+ Redirected to http://localhost:3000/admin/things/another
82191
+ Completed 302 Found in 379ms
82192
+
82193
+
82194
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:15:16 -0500
82195
+ Processing by Kilt::KiltController#edit as HTML
82196
+ Parameters: {"types"=>"things", "slug"=>"another"}
82197
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (22.5ms)
82198
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.8ms)
82199
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.4ms)
82200
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.6ms)
82201
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.5ms)
82202
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.4ms)
82203
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.6ms)
82204
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.1ms)
82205
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.4ms)
82206
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.3ms)
82207
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.8ms)
82208
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (59.0ms)
82209
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (60.8ms)
82210
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.4ms)
82211
+ Completed 200 OK in 148ms (Views: 68.5ms)
82212
+
82213
+
82214
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:15:17 -0500
82215
+
82216
+
82217
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:15:17 -0500
82218
+
82219
+
82220
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:17 -0500
82221
+
82222
+
82223
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:17 -0500
82224
+
82225
+
82226
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:17 -0500
82227
+
82228
+
82229
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:17 -0500
82230
+
82231
+
82232
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:17 -0500
82233
+
82234
+
82235
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:15:17 -0500
82236
+
82237
+
82238
+ Started POST "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:16:45 -0500
82239
+ Processing by Kilt::KiltController#update as HTML
82240
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"RiORy2iVlpvfltHE/P5yImpHPiMX/xd4gz95hgcpx3c=", "thing"=>{"name"=>"Another", "year"=>"1212", "description"=>"", "markup"=>"", "birthday"=>"", "has_stuff"=>"on", "pick_one"=>"Blue", "image-hidden"=>"", "vimeo_video"=>"", "youtube_video"=>"", "other_file-hidden"=>""}, "types"=>"things", "slug"=>"another"}
82241
+ Redirected to http://localhost:3000/admin/things/another
82242
+ Completed 302 Found in 812ms
82243
+
82244
+
82245
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:16:46 -0500
82246
+ Processing by Kilt::KiltController#edit as HTML
82247
+ Parameters: {"types"=>"things", "slug"=>"another"}
82248
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.6ms)
82249
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.6ms)
82250
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.4ms)
82251
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.5ms)
82252
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.4ms)
82253
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.5ms)
82254
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.6ms)
82255
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.0ms)
82256
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.2ms)
82257
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.4ms)
82258
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.9ms)
82259
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (34.4ms)
82260
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (36.2ms)
82261
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.4ms)
82262
+ Completed 200 OK in 157ms (Views: 44.1ms)
82263
+
82264
+
82265
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:16:46 -0500
82266
+
82267
+
82268
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:16:46 -0500
82269
+
82270
+
82271
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:16:46 -0500
82272
+
82273
+
82274
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:16:46 -0500
82275
+
82276
+
82277
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:16:46 -0500
82278
+
82279
+
82280
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:16:46 -0500
82281
+
82282
+
82283
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:16:46 -0500
82284
+
82285
+
82286
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:16:46 -0500
82287
+
82288
+
82289
+ Started POST "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:17:09 -0500
82290
+ Processing by Kilt::KiltController#update as HTML
82291
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"RiORy2iVlpvfltHE/P5yImpHPiMX/xd4gz95hgcpx3c=", "thing"=>{"name"=>"Another", "year"=>"1212", "description"=>"", "markup"=>"", "birthday"=>"", "pick_one"=>"Blue", "image-hidden"=>"", "vimeo_video"=>"", "youtube_video"=>"", "other_file-hidden"=>""}, "types"=>"things", "slug"=>"another"}
82292
+ Redirected to http://localhost:3000/admin/things/another
82293
+ Completed 302 Found in 313ms
82294
+
82295
+
82296
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:17:09 -0500
82297
+ Processing by Kilt::KiltController#edit as HTML
82298
+ Parameters: {"types"=>"things", "slug"=>"another"}
82299
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.5ms)
82300
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.5ms)
82301
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.4ms)
82302
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.4ms)
82303
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.4ms)
82304
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.4ms)
82305
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.6ms)
82306
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.0ms)
82307
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.2ms)
82308
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.2ms)
82309
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.8ms)
82310
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (32.1ms)
82311
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (33.6ms)
82312
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.5ms)
82313
+ Completed 200 OK in 146ms (Views: 41.1ms)
82314
+
82315
+
82316
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:17:09 -0500
82317
+
82318
+
82319
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:17:09 -0500
82320
+
82321
+
82322
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:17:09 -0500
82323
+
82324
+
82325
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:17:09 -0500
82326
+
82327
+
82328
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:17:09 -0500
82329
+
82330
+
82331
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:17:09 -0500
82332
+
82333
+
82334
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:17:09 -0500
82335
+
82336
+
82337
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:17:09 -0500
82338
+
82339
+
82340
+ Started POST "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:17:16 -0500
82341
+ Processing by Kilt::KiltController#update as HTML
82342
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"RiORy2iVlpvfltHE/P5yImpHPiMX/xd4gz95hgcpx3c=", "thing"=>{"name"=>"Another", "year"=>"1212", "description"=>"", "markup"=>"", "birthday"=>"", "pick_one"=>"Blue", "image-hidden"=>"", "vimeo_video"=>"", "youtube_video"=>"", "other_file-hidden"=>""}, "types"=>"things", "slug"=>"another"}
82343
+ Redirected to http://localhost:3000/admin/things/another
82344
+ Completed 302 Found in 310ms
82345
+
82346
+
82347
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:17:17 -0500
82348
+ Processing by Kilt::KiltController#edit as HTML
82349
+ Parameters: {"types"=>"things", "slug"=>"another"}
82350
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.5ms)
82351
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.5ms)
82352
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.4ms)
82353
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.4ms)
82354
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.5ms)
82355
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.4ms)
82356
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.7ms)
82357
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.0ms)
82358
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.2ms)
82359
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.2ms)
82360
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.8ms)
82361
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (32.9ms)
82362
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (34.4ms)
82363
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.4ms)
82364
+ Completed 200 OK in 140ms (Views: 41.6ms)
82365
+
82366
+
82367
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:17:17 -0500
82368
+
82369
+
82370
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:17:17 -0500
82371
+
82372
+
82373
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:17:17 -0500
82374
+
82375
+
82376
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:17:17 -0500
82377
+
82378
+
82379
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:17:17 -0500
82380
+
82381
+
82382
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:17:17 -0500
82383
+
82384
+
82385
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:17:17 -0500
82386
+
82387
+
82388
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:17:17 -0500
82389
+
82390
+
82391
+ Started POST "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:17:27 -0500
82392
+ Processing by Kilt::KiltController#update as HTML
82393
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"RiORy2iVlpvfltHE/P5yImpHPiMX/xd4gz95hgcpx3c=", "thing"=>{"name"=>"Another", "year"=>"1212", "description"=>"", "markup"=>"", "birthday"=>"", "has_stuff"=>"on", "pick_one"=>"Blue", "image-hidden"=>"", "vimeo_video"=>"", "youtube_video"=>"", "other_file-hidden"=>""}, "types"=>"things", "slug"=>"another"}
82394
+ Redirected to http://localhost:3000/admin/things/another
82395
+ Completed 302 Found in 295ms
82396
+
82397
+
82398
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:17:27 -0500
82399
+ Processing by Kilt::KiltController#edit as HTML
82400
+ Parameters: {"types"=>"things", "slug"=>"another"}
82401
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.5ms)
82402
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.5ms)
82403
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.4ms)
82404
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.4ms)
82405
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.5ms)
82406
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.6ms)
82407
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.6ms)
82408
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.0ms)
82409
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.3ms)
82410
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.4ms)
82411
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.9ms)
82412
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (33.9ms)
82413
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (35.4ms)
82414
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.4ms)
82415
+ Completed 200 OK in 159ms (Views: 42.6ms)
82416
+
82417
+
82418
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:17:28 -0500
82419
+
82420
+
82421
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:17:28 -0500
82422
+
82423
+
82424
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:17:28 -0500
82425
+
82426
+
82427
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:17:28 -0500
82428
+
82429
+
82430
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:17:28 -0500
82431
+
82432
+
82433
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:17:28 -0500
82434
+
82435
+
82436
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:17:28 -0500
82437
+
82438
+
82439
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:17:28 -0500
82440
+
82441
+
82442
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:23:15 -0500
82443
+ Processing by Kilt::KiltController#edit as HTML
82444
+ Parameters: {"types"=>"things", "slug"=>"another"}
82445
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.6ms)
82446
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.5ms)
82447
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.4ms)
82448
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.5ms)
82449
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.4ms)
82450
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.4ms)
82451
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.6ms)
82452
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.0ms)
82453
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.2ms)
82454
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.3ms)
82455
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.8ms)
82456
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (33.7ms)
82457
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (35.7ms)
82458
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.3ms)
82459
+ Completed 200 OK in 621ms (Views: 43.1ms)
82460
+
82461
+
82462
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:23:16 -0500
82463
+
82464
+
82465
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:23:16 -0500
82466
+
82467
+
82468
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:23:16 -0500
82469
+
82470
+
82471
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:23:16 -0500
82472
+
82473
+
82474
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:23:16 -0500
82475
+
82476
+
82477
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:23:16 -0500
82478
+
82479
+
82480
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:23:16 -0500
82481
+
82482
+
82483
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:23:16 -0500
82484
+
82485
+
82486
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:25:52 -0500
82487
+ Processing by Kilt::KiltController#edit as HTML
82488
+ Parameters: {"types"=>"things", "slug"=>"another"}
82489
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.7ms)
82490
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.5ms)
82491
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.4ms)
82492
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.4ms)
82493
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.4ms)
82494
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.5ms)
82495
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.6ms)
82496
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.0ms)
82497
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.4ms)
82498
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.2ms)
82499
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.9ms)
82500
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (34.9ms)
82501
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (36.9ms)
82502
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.3ms)
82503
+ Completed 200 OK in 594ms (Views: 44.5ms)
82504
+
82505
+
82506
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:25:52 -0500
82507
+
82508
+
82509
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:25:52 -0500
82510
+
82511
+
82512
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:25:52 -0500
82513
+
82514
+
82515
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:25:52 -0500
82516
+
82517
+
82518
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:25:52 -0500
82519
+
82520
+
82521
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:25:52 -0500
82522
+
82523
+
82524
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:25:52 -0500
82525
+
82526
+
82527
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:25:52 -0500
82528
+
82529
+
82530
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:26:23 -0500
82531
+ Processing by Kilt::KiltController#edit as HTML
82532
+ Parameters: {"types"=>"things", "slug"=>"another"}
82533
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.6ms)
82534
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.5ms)
82535
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.4ms)
82536
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.5ms)
82537
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.5ms)
82538
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.5ms)
82539
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.6ms)
82540
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.0ms)
82541
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.2ms)
82542
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.2ms)
82543
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.9ms)
82544
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (33.2ms)
82545
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (34.6ms)
82546
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.3ms)
82547
+ Completed 200 OK in 143ms (Views: 41.7ms)
82548
+
82549
+
82550
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:26:31 -0500
82551
+ Processing by Kilt::KiltController#edit as HTML
82552
+ Parameters: {"types"=>"things", "slug"=>"another"}
82553
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.6ms)
82554
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.5ms)
82555
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.4ms)
82556
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.4ms)
82557
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.4ms)
82558
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.5ms)
82559
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.6ms)
82560
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.0ms)
82561
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.2ms)
82562
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.2ms)
82563
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.8ms)
82564
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (33.5ms)
82565
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (35.4ms)
82566
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.3ms)
82567
+ Completed 200 OK in 167ms (Views: 43.0ms)
82568
+
82569
+
82570
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:26:42 -0500
82571
+ Processing by Kilt::KiltController#edit as HTML
82572
+ Parameters: {"types"=>"things", "slug"=>"another"}
82573
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.6ms)
82574
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.6ms)
82575
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.5ms)
82576
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.4ms)
82577
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.4ms)
82578
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.5ms)
82579
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.7ms)
82580
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.0ms)
82581
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.3ms)
82582
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.2ms)
82583
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.9ms)
82584
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (55.4ms)
82585
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (57.3ms)
82586
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.4ms)
82587
+ Completed 200 OK in 146ms (Views: 64.8ms)
82588
+
82589
+
82590
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:26:50 -0500
82591
+ Processing by Kilt::KiltController#edit as HTML
82592
+ Parameters: {"types"=>"things", "slug"=>"another"}
82593
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.6ms)
82594
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.5ms)
82595
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.4ms)
82596
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.4ms)
82597
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.4ms)
82598
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.6ms)
82599
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.6ms)
82600
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.0ms)
82601
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.3ms)
82602
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (17.1ms)
82603
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (1.0ms)
82604
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (71.1ms)
82605
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (72.6ms)
82606
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.4ms)
82607
+ Completed 200 OK in 177ms (Views: 79.9ms)
82608
+
82609
+
82610
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:26:58 -0500
82611
+ Processing by Kilt::KiltController#edit as HTML
82612
+ Parameters: {"types"=>"things", "slug"=>"another"}
82613
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.5ms)
82614
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.6ms)
82615
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.5ms)
82616
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.5ms)
82617
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.4ms)
82618
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.5ms)
82619
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.6ms)
82620
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.0ms)
82621
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.2ms)
82622
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.3ms)
82623
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.8ms)
82624
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (32.7ms)
82625
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (34.2ms)
82626
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.3ms)
82627
+ Completed 200 OK in 183ms (Views: 41.3ms)
82628
+
82629
+
82630
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:27:05 -0500
82631
+ Processing by Kilt::KiltController#edit as HTML
82632
+ Parameters: {"types"=>"things", "slug"=>"another"}
82633
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.6ms)
82634
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.6ms)
82635
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.5ms)
82636
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.4ms)
82637
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.4ms)
82638
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.7ms)
82639
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (1.1ms)
82640
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.2ms)
82641
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.4ms)
82642
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.4ms)
82643
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (1.0ms)
82644
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (36.3ms)
82645
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (37.8ms)
82646
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.4ms)
82647
+ Completed 200 OK in 127ms (Views: 45.2ms)
82648
+
82649
+
82650
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:27:05 -0500
82651
+
82652
+
82653
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:27:05 -0500
82654
+
82655
+
82656
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:27:05 -0500
82657
+
82658
+
82659
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:27:05 -0500
82660
+
82661
+
82662
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:27:05 -0500
82663
+
82664
+
82665
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:27:05 -0500
82666
+
82667
+
82668
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:27:05 -0500
82669
+
82670
+
82671
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:27:05 -0500
82672
+
82673
+
82674
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:27:28 -0500
82675
+ Processing by Kilt::KiltController#edit as HTML
82676
+ Parameters: {"types"=>"things", "slug"=>"another"}
82677
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.6ms)
82678
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.7ms)
82679
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.6ms)
82680
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.6ms)
82681
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.5ms)
82682
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.5ms)
82683
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.7ms)
82684
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.0ms)
82685
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.2ms)
82686
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.2ms)
82687
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.8ms)
82688
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (35.2ms)
82689
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (36.9ms)
82690
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.4ms)
82691
+ Completed 200 OK in 127ms (Views: 44.4ms)
82692
+
82693
+
82694
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:27:28 -0500
82695
+
82696
+
82697
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:27:28 -0500
82698
+
82699
+
82700
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:27:28 -0500
82701
+
82702
+
82703
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:27:28 -0500
82704
+
82705
+
82706
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:27:28 -0500
82707
+
82708
+
82709
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:27:28 -0500
82710
+
82711
+
82712
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:27:28 -0500
82713
+
82714
+
82715
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:27:28 -0500
82716
+
82717
+
82718
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:28:28 -0500
82719
+ Processing by Kilt::KiltController#edit as HTML
82720
+ Parameters: {"types"=>"things", "slug"=>"another"}
82721
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.7ms)
82722
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.6ms)
82723
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.5ms)
82724
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.5ms)
82725
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.4ms)
82726
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.5ms)
82727
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.6ms)
82728
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.1ms)
82729
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.4ms)
82730
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.3ms)
82731
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.8ms)
82732
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (36.4ms)
82733
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (38.3ms)
82734
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.3ms)
82735
+ Completed 200 OK in 619ms (Views: 45.9ms)
82736
+
82737
+
82738
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:28:50 -0500
82739
+ Processing by Kilt::KiltController#edit as HTML
82740
+ Parameters: {"types"=>"things", "slug"=>"another"}
82741
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.5ms)
82742
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.6ms)
82743
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.5ms)
82744
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.5ms)
82745
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.4ms)
82746
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.6ms)
82747
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.6ms)
82748
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.0ms)
82749
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.3ms)
82750
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.8ms)
82751
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (1.2ms)
82752
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (35.7ms)
82753
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (37.3ms)
82754
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.4ms)
82755
+ Completed 200 OK in 161ms (Views: 45.4ms)
82756
+
82757
+
82758
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:28:59 -0500
82759
+ Processing by Kilt::KiltController#edit as HTML
82760
+ Parameters: {"types"=>"things", "slug"=>"another"}
82761
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.7ms)
82762
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.6ms)
82763
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.5ms)
82764
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.6ms)
82765
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.4ms)
82766
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.5ms)
82767
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.7ms)
82768
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.1ms)
82769
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.4ms)
82770
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.3ms)
82771
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.8ms)
82772
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (57.8ms)
82773
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (59.7ms)
82774
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.4ms)
82775
+ Completed 200 OK in 144ms (Views: 67.6ms)
82776
+
82777
+
82778
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:28:59 -0500
82779
+
82780
+
82781
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:28:59 -0500
82782
+
82783
+
82784
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:28:59 -0500
82785
+
82786
+
82787
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:28:59 -0500
82788
+
82789
+
82790
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:28:59 -0500
82791
+
82792
+
82793
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:28:59 -0500
82794
+
82795
+
82796
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:28:59 -0500
82797
+
82798
+
82799
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:28:59 -0500
82800
+
82801
+
82802
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:29:05 -0500
82803
+ Processing by Kilt::KiltController#edit as HTML
82804
+ Parameters: {"types"=>"things", "slug"=>"another"}
82805
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.9ms)
82806
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.8ms)
82807
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.6ms)
82808
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.5ms)
82809
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.4ms)
82810
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.7ms)
82811
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.6ms)
82812
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.2ms)
82813
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.3ms)
82814
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.2ms)
82815
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.9ms)
82816
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (58.6ms)
82817
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (60.6ms)
82818
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.4ms)
82819
+ Completed 200 OK in 184ms (Views: 68.3ms)
82820
+
82821
+
82822
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:29:06 -0500
82823
+
82824
+
82825
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:29:06 -0500
82826
+
82827
+
82828
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:29:06 -0500
82829
+
82830
+
82831
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:29:06 -0500
82832
+
82833
+
82834
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:29:06 -0500
82835
+
82836
+
82837
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:29:06 -0500
82838
+
82839
+
82840
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:29:06 -0500
82841
+
82842
+
82843
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:29:06 -0500
82844
+
82845
+
82846
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:29:26 -0500
82847
+ Processing by Kilt::KiltController#edit as HTML
82848
+ Parameters: {"types"=>"things", "slug"=>"another"}
82849
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.7ms)
82850
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.6ms)
82851
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.5ms)
82852
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.5ms)
82853
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.5ms)
82854
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.6ms)
82855
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.7ms)
82856
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.2ms)
82857
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.5ms)
82858
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.4ms)
82859
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (1.0ms)
82860
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (58.8ms)
82861
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (60.5ms)
82862
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.4ms)
82863
+ Completed 200 OK in 161ms (Views: 67.9ms)
82864
+
82865
+
82866
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:29:26 -0500
82867
+
82868
+
82869
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:29:26 -0500
82870
+
82871
+
82872
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:29:26 -0500
82873
+
82874
+
82875
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:29:26 -0500
82876
+
82877
+
82878
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:29:26 -0500
82879
+
82880
+
82881
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:29:26 -0500
82882
+
82883
+
82884
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:29:26 -0500
82885
+
82886
+
82887
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:29:26 -0500
82888
+
82889
+
82890
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:29:53 -0500
82891
+ Processing by Kilt::KiltController#edit as HTML
82892
+ Parameters: {"types"=>"things", "slug"=>"another"}
82893
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.7ms)
82894
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (1.0ms)
82895
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.7ms)
82896
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.6ms)
82897
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.6ms)
82898
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (1.1ms)
82899
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (1.5ms)
82900
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.3ms)
82901
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.5ms)
82902
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.4ms)
82903
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.9ms)
82904
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (63.7ms)
82905
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (65.2ms)
82906
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.5ms)
82907
+ Completed 200 OK in 629ms (Views: 88.9ms)
82908
+
82909
+
82910
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:29:54 -0500
82911
+
82912
+
82913
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:29:54 -0500
82914
+
82915
+
82916
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:29:54 -0500
82917
+
82918
+
82919
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:29:54 -0500
82920
+
82921
+
82922
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:29:54 -0500
82923
+
82924
+
82925
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:29:54 -0500
82926
+
82927
+
82928
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:29:54 -0500
82929
+
82930
+
82931
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:29:54 -0500
82932
+
82933
+
82934
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:30:39 -0500
82935
+ Processing by Kilt::KiltController#edit as HTML
82936
+ Parameters: {"types"=>"things", "slug"=>"another"}
82937
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.6ms)
82938
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.6ms)
82939
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.5ms)
82940
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.5ms)
82941
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.6ms)
82942
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.7ms)
82943
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.8ms)
82944
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.3ms)
82945
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.4ms)
82946
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.3ms)
82947
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.8ms)
82948
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (56.2ms)
82949
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (57.7ms)
82950
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.4ms)
82951
+ Completed 200 OK in 157ms (Views: 80.4ms)
82952
+
82953
+
82954
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:30:40 -0500
82955
+
82956
+
82957
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:30:40 -0500
82958
+
82959
+
82960
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:30:40 -0500
82961
+
82962
+
82963
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:30:40 -0500
82964
+
82965
+
82966
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:30:40 -0500
82967
+
82968
+
82969
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:30:40 -0500
82970
+
82971
+
82972
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:30:40 -0500
82973
+
82974
+
82975
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:30:40 -0500
82976
+
82977
+
82978
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:31:16 -0500
82979
+ Processing by Kilt::KiltController#edit as HTML
82980
+ Parameters: {"types"=>"things", "slug"=>"another"}
82981
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.6ms)
82982
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.5ms)
82983
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.5ms)
82984
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.5ms)
82985
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.5ms)
82986
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.7ms)
82987
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.7ms)
82988
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.2ms)
82989
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.4ms)
82990
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.4ms)
82991
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.9ms)
82992
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (72.3ms)
82993
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (73.8ms)
82994
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.5ms)
82995
+ Completed 200 OK in 614ms (Views: 82.3ms)
82996
+
82997
+
82998
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:31:17 -0500
82999
+
83000
+
83001
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:31:17 -0500
83002
+
83003
+
83004
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:31:17 -0500
83005
+
83006
+
83007
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:31:17 -0500
83008
+
83009
+
83010
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:31:17 -0500
83011
+
83012
+
83013
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:31:17 -0500
83014
+
83015
+
83016
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:31:17 -0500
83017
+
83018
+
83019
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:31:17 -0500
83020
+
83021
+
83022
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:31:23 -0500
83023
+ Processing by Kilt::KiltController#edit as HTML
83024
+ Parameters: {"types"=>"things", "slug"=>"another"}
83025
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.6ms)
83026
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.6ms)
83027
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.4ms)
83028
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.5ms)
83029
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.5ms)
83030
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.7ms)
83031
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.8ms)
83032
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.4ms)
83033
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.4ms)
83034
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.3ms)
83035
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.9ms)
83036
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (71.8ms)
83037
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (73.3ms)
83038
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.4ms)
83039
+ Completed 200 OK in 171ms (Views: 80.6ms)
83040
+
83041
+
83042
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:31:23 -0500
83043
+
83044
+
83045
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:31:23 -0500
83046
+
83047
+
83048
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:31:23 -0500
83049
+
83050
+
83051
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:31:23 -0500
83052
+
83053
+
83054
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:31:23 -0500
83055
+
83056
+
83057
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:31:23 -0500
83058
+
83059
+
83060
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:31:23 -0500
83061
+
83062
+
83063
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:31:23 -0500
83064
+
83065
+
83066
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:32:18 -0500
83067
+ Processing by Kilt::KiltController#edit as HTML
83068
+ Parameters: {"types"=>"things", "slug"=>"another"}
83069
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (16.4ms)
83070
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.6ms)
83071
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.5ms)
83072
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.4ms)
83073
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.5ms)
83074
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.7ms)
83075
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.7ms)
83076
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.5ms)
83077
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.5ms)
83078
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.4ms)
83079
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.8ms)
83080
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (74.5ms)
83081
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (76.4ms)
83082
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.4ms)
83083
+ Completed 200 OK in 629ms (Views: 84.2ms)
83084
+
83085
+
83086
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:33:11 -0500
83087
+ Processing by Kilt::KiltController#edit as HTML
83088
+ Parameters: {"types"=>"things", "slug"=>"another"}
83089
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.6ms)
83090
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.5ms)
83091
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.5ms)
83092
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.5ms)
83093
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.5ms)
83094
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.6ms)
83095
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.6ms)
83096
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.0ms)
83097
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.3ms)
83098
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.3ms)
83099
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.8ms)
83100
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (34.3ms)
83101
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (36.1ms)
83102
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.3ms)
83103
+ Completed 200 OK in 150ms (Views: 64.5ms)
83104
+
83105
+
83106
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:33:14 -0500
83107
+ Processing by Kilt::KiltController#edit as HTML
83108
+ Parameters: {"types"=>"things", "slug"=>"another"}
83109
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.7ms)
83110
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.7ms)
83111
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.5ms)
83112
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.4ms)
83113
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.4ms)
83114
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.6ms)
83115
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.6ms)
83116
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.0ms)
83117
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.3ms)
83118
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.2ms)
83119
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.9ms)
83120
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (35.4ms)
83121
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (37.3ms)
83122
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.3ms)
83123
+ Completed 200 OK in 125ms (Views: 44.9ms)
83124
+
83125
+
83126
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:14 -0500
83127
+
83128
+
83129
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:33:14 -0500
83130
+
83131
+
83132
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:14 -0500
83133
+
83134
+
83135
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:14 -0500
83136
+
83137
+
83138
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:33:14 -0500
83139
+
83140
+
83141
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:14 -0500
83142
+
83143
+
83144
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:14 -0500
83145
+
83146
+
83147
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:14 -0500
83148
+
83149
+
83150
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:33:17 -0500
83151
+ Processing by Kilt::KiltController#edit as HTML
83152
+ Parameters: {"types"=>"things", "slug"=>"another"}
83153
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.6ms)
83154
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.5ms)
83155
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.4ms)
83156
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.5ms)
83157
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.5ms)
83158
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.6ms)
83159
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.6ms)
83160
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.0ms)
83161
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.2ms)
83162
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.3ms)
83163
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.8ms)
83164
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (33.0ms)
83165
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (34.5ms)
83166
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.4ms)
83167
+ Completed 200 OK in 121ms (Views: 41.7ms)
83168
+
83169
+
83170
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:33:17 -0500
83171
+
83172
+
83173
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:33:17 -0500
83174
+
83175
+
83176
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:17 -0500
83177
+
83178
+
83179
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:17 -0500
83180
+
83181
+
83182
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:17 -0500
83183
+
83184
+
83185
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:17 -0500
83186
+
83187
+
83188
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:17 -0500
83189
+
83190
+
83191
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:17 -0500
83192
+
83193
+
83194
+ Started POST "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:33:21 -0500
83195
+ Processing by Kilt::KiltController#update as HTML
83196
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"RiORy2iVlpvfltHE/P5yImpHPiMX/xd4gz95hgcpx3c=", "thing"=>{"name"=>"Another", "year"=>"1212", "description"=>"", "markup"=>"", "birthday"=>"", "has_stuff"=>"true", "pick_one"=>"Blue", "image-hidden"=>"", "vimeo_video"=>"", "youtube_video"=>"", "other_file-hidden"=>""}, "types"=>"things", "slug"=>"another"}
83197
+ Redirected to http://localhost:3000/admin/things/another
83198
+ Completed 302 Found in 773ms
83199
+
83200
+
83201
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:33:21 -0500
83202
+ Processing by Kilt::KiltController#edit as HTML
83203
+ Parameters: {"types"=>"things", "slug"=>"another"}
83204
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.6ms)
83205
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.6ms)
83206
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.4ms)
83207
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.4ms)
83208
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.4ms)
83209
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.6ms)
83210
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.7ms)
83211
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.1ms)
83212
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.2ms)
83213
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.2ms)
83214
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.8ms)
83215
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (33.4ms)
83216
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (34.8ms)
83217
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.4ms)
83218
+ Completed 200 OK in 142ms (Views: 42.2ms)
83219
+
83220
+
83221
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:33:22 -0500
83222
+
83223
+
83224
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:22 -0500
83225
+
83226
+
83227
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:33:22 -0500
83228
+
83229
+
83230
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:22 -0500
83231
+
83232
+
83233
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:22 -0500
83234
+
83235
+
83236
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:22 -0500
83237
+
83238
+
83239
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:22 -0500
83240
+
83241
+
83242
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:22 -0500
83243
+
83244
+
83245
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:33:46 -0500
83246
+ Processing by Kilt::KiltController#edit as HTML
83247
+ Parameters: {"types"=>"things", "slug"=>"another"}
83248
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.5ms)
83249
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.5ms)
83250
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.4ms)
83251
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.4ms)
83252
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.4ms)
83253
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.6ms)
83254
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.6ms)
83255
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.1ms)
83256
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.3ms)
83257
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.2ms)
83258
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.8ms)
83259
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (32.9ms)
83260
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (34.3ms)
83261
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.3ms)
83262
+ Completed 200 OK in 175ms (Views: 41.5ms)
83263
+
83264
+
83265
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:33:46 -0500
83266
+
83267
+
83268
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:33:46 -0500
83269
+
83270
+
83271
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:46 -0500
83272
+
83273
+
83274
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:46 -0500
83275
+
83276
+
83277
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:46 -0500
83278
+
83279
+
83280
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:46 -0500
83281
+
83282
+
83283
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:46 -0500
83284
+
83285
+
83286
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:46 -0500
83287
+
83288
+
83289
+ Started POST "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:33:50 -0500
83290
+ Processing by Kilt::KiltController#update as HTML
83291
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"RiORy2iVlpvfltHE/P5yImpHPiMX/xd4gz95hgcpx3c=", "thing"=>{"name"=>"Another", "year"=>"1212", "description"=>"", "markup"=>"", "birthday"=>"", "has_stuff"=>"true", "pick_one"=>"Blue", "image-hidden"=>"", "vimeo_video"=>"", "youtube_video"=>"", "other_file-hidden"=>""}, "types"=>"things", "slug"=>"another"}
83292
+ Redirected to http://localhost:3000/admin/things/another
83293
+ Completed 302 Found in 322ms
83294
+
83295
+
83296
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:33:51 -0500
83297
+ Processing by Kilt::KiltController#edit as HTML
83298
+ Parameters: {"types"=>"things", "slug"=>"another"}
83299
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.6ms)
83300
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.6ms)
83301
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.4ms)
83302
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.4ms)
83303
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.5ms)
83304
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.7ms)
83305
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.6ms)
83306
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.0ms)
83307
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.2ms)
83308
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.2ms)
83309
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.9ms)
83310
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (33.5ms)
83311
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (34.9ms)
83312
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.4ms)
83313
+ Completed 200 OK in 120ms (Views: 42.3ms)
83314
+
83315
+
83316
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:33:51 -0500
83317
+
83318
+
83319
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:51 -0500
83320
+
83321
+
83322
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:33:51 -0500
83323
+
83324
+
83325
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:51 -0500
83326
+
83327
+
83328
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:51 -0500
83329
+
83330
+
83331
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:51 -0500
83332
+
83333
+
83334
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:51 -0500
83335
+
83336
+
83337
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:51 -0500
83338
+
83339
+
83340
+ Started POST "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:33:55 -0500
83341
+ Processing by Kilt::KiltController#update as HTML
83342
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"RiORy2iVlpvfltHE/P5yImpHPiMX/xd4gz95hgcpx3c=", "thing"=>{"name"=>"Another", "year"=>"1212", "description"=>"", "markup"=>"", "birthday"=>"", "has_stuff"=>"false", "pick_one"=>"Blue", "image-hidden"=>"", "vimeo_video"=>"", "youtube_video"=>"", "other_file-hidden"=>""}, "types"=>"things", "slug"=>"another"}
83343
+ Redirected to http://localhost:3000/admin/things/another
83344
+ Completed 302 Found in 325ms
83345
+
83346
+
83347
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:33:56 -0500
83348
+ Processing by Kilt::KiltController#edit as HTML
83349
+ Parameters: {"types"=>"things", "slug"=>"another"}
83350
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.6ms)
83351
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.5ms)
83352
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.4ms)
83353
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.4ms)
83354
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.4ms)
83355
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.6ms)
83356
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.6ms)
83357
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.0ms)
83358
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.2ms)
83359
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.2ms)
83360
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.8ms)
83361
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (32.1ms)
83362
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (33.5ms)
83363
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.3ms)
83364
+ Completed 200 OK in 118ms (Views: 40.7ms)
83365
+
83366
+
83367
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:33:56 -0500
83368
+
83369
+
83370
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:33:56 -0500
83371
+
83372
+
83373
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:56 -0500
83374
+
83375
+
83376
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:56 -0500
83377
+
83378
+
83379
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:56 -0500
83380
+
83381
+
83382
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:56 -0500
83383
+
83384
+
83385
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:56 -0500
83386
+
83387
+
83388
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:33:56 -0500
83389
+
83390
+
83391
+ Started POST "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:34:00 -0500
83392
+ Processing by Kilt::KiltController#update as HTML
83393
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"RiORy2iVlpvfltHE/P5yImpHPiMX/xd4gz95hgcpx3c=", "thing"=>{"name"=>"Another", "year"=>"1212", "description"=>"", "markup"=>"", "birthday"=>"", "has_stuff"=>"false", "pick_one"=>"Blue", "image-hidden"=>"", "vimeo_video"=>"", "youtube_video"=>"", "other_file-hidden"=>""}, "types"=>"things", "slug"=>"another"}
83394
+ Redirected to http://localhost:3000/admin/things/another
83395
+ Completed 302 Found in 310ms
83396
+
83397
+
83398
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:34:00 -0500
83399
+ Processing by Kilt::KiltController#edit as HTML
83400
+ Parameters: {"types"=>"things", "slug"=>"another"}
83401
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.5ms)
83402
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.5ms)
83403
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.5ms)
83404
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.4ms)
83405
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.4ms)
83406
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.6ms)
83407
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.6ms)
83408
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.0ms)
83409
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.2ms)
83410
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.2ms)
83411
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.8ms)
83412
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (32.5ms)
83413
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (33.9ms)
83414
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.4ms)
83415
+ Completed 200 OK in 122ms (Views: 41.2ms)
83416
+
83417
+
83418
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:34:00 -0500
83419
+
83420
+
83421
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:34:00 -0500
83422
+
83423
+
83424
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:34:00 -0500
83425
+
83426
+
83427
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:34:00 -0500
83428
+
83429
+
83430
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:34:00 -0500
83431
+
83432
+
83433
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:34:00 -0500
83434
+
83435
+
83436
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:34:00 -0500
83437
+
83438
+
83439
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:34:00 -0500
83440
+
83441
+
83442
+ Started POST "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:34:04 -0500
83443
+ Processing by Kilt::KiltController#update as HTML
83444
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"RiORy2iVlpvfltHE/P5yImpHPiMX/xd4gz95hgcpx3c=", "thing"=>{"name"=>"Another", "year"=>"1212", "description"=>"", "markup"=>"", "birthday"=>"", "has_stuff"=>"true", "pick_one"=>"Blue", "image-hidden"=>"", "vimeo_video"=>"", "youtube_video"=>"", "other_file-hidden"=>""}, "types"=>"things", "slug"=>"another"}
83445
+ Redirected to http://localhost:3000/admin/things/another
83446
+ Completed 302 Found in 374ms
83447
+
83448
+
83449
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:34:04 -0500
83450
+ Processing by Kilt::KiltController#edit as HTML
83451
+ Parameters: {"types"=>"things", "slug"=>"another"}
83452
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.6ms)
83453
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.5ms)
83454
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.5ms)
83455
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.4ms)
83456
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.4ms)
83457
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.7ms)
83458
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.6ms)
83459
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (0.9ms)
83460
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.2ms)
83461
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.2ms)
83462
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.8ms)
83463
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (32.3ms)
83464
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (33.8ms)
83465
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.3ms)
83466
+ Completed 200 OK in 179ms (Views: 40.9ms)
83467
+
83468
+
83469
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:34:04 -0500
83470
+
83471
+
83472
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:34:04 -0500
83473
+
83474
+
83475
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:34:04 -0500
83476
+
83477
+
83478
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:34:04 -0500
83479
+
83480
+
83481
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:34:04 -0500
83482
+
83483
+
83484
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:34:04 -0500
83485
+
83486
+
83487
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:34:04 -0500
83488
+
83489
+
83490
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:34:04 -0500
83491
+
83492
+
83493
+ Started POST "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:34:07 -0500
83494
+ Processing by Kilt::KiltController#update as HTML
83495
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"RiORy2iVlpvfltHE/P5yImpHPiMX/xd4gz95hgcpx3c=", "thing"=>{"name"=>"Another", "year"=>"1212", "description"=>"", "markup"=>"", "birthday"=>"", "has_stuff"=>"true", "pick_one"=>"Blue", "image-hidden"=>"", "vimeo_video"=>"", "youtube_video"=>"", "other_file-hidden"=>""}, "types"=>"things", "slug"=>"another"}
83496
+ Redirected to http://localhost:3000/admin/things/another
83497
+ Completed 302 Found in 340ms
83498
+
83499
+
83500
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:34:08 -0500
83501
+ Processing by Kilt::KiltController#edit as HTML
83502
+ Parameters: {"types"=>"things", "slug"=>"another"}
83503
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.6ms)
83504
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.5ms)
83505
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.4ms)
83506
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.4ms)
83507
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.4ms)
83508
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.6ms)
83509
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.6ms)
83510
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.0ms)
83511
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.3ms)
83512
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.2ms)
83513
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.8ms)
83514
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (33.1ms)
83515
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (34.9ms)
83516
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (22.8ms)
83517
+ Completed 200 OK in 161ms (Views: 64.0ms)
83518
+
83519
+
83520
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:34:08 -0500
83521
+
83522
+
83523
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:34:08 -0500
83524
+
83525
+
83526
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:34:08 -0500
83527
+
83528
+
83529
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:34:08 -0500
83530
+
83531
+
83532
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:34:08 -0500
83533
+
83534
+
83535
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:34:08 -0500
83536
+
83537
+
83538
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:34:08 -0500
83539
+
83540
+
83541
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:34:08 -0500
83542
+
83543
+
83544
+ Started POST "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:34:12 -0500
83545
+ Processing by Kilt::KiltController#update as HTML
83546
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"RiORy2iVlpvfltHE/P5yImpHPiMX/xd4gz95hgcpx3c=", "thing"=>{"name"=>"Another", "year"=>"1212", "description"=>"", "markup"=>"", "birthday"=>"", "has_stuff"=>"false", "pick_one"=>"Blue", "image-hidden"=>"", "vimeo_video"=>"", "youtube_video"=>"", "other_file-hidden"=>""}, "types"=>"things", "slug"=>"another"}
83547
+ Redirected to http://localhost:3000/admin/things/another
83548
+ Completed 302 Found in 353ms
83549
+
83550
+
83551
+ Started GET "/admin/things/another" for 127.0.0.1 at 2014-02-19 15:34:12 -0500
83552
+ Processing by Kilt::KiltController#edit as HTML
83553
+ Parameters: {"types"=>"things", "slug"=>"another"}
83554
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/text.html.erb (0.5ms)
83555
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/number.html.erb (0.8ms)
83556
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/longtext.html.erb (0.6ms)
83557
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/html.html.erb (0.6ms)
83558
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/datetime.html.erb (0.7ms)
83559
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/boolean.html.erb (0.7ms)
83560
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/select_one.html.erb (0.7ms)
83561
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/image.html.erb (1.0ms)
83562
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/vimeo.html.erb (1.2ms)
83563
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/youtube.html.erb (1.2ms)
83564
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/form/file.html.erb (0.8ms)
83565
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/_form.html.erb (37.0ms)
83566
+ Rendered /Users/tim/Sites/Kilt/app/views/kilt/kilt/edit.html.erb within layouts/kilt/cms (38.4ms)
83567
+ Rendered /Users/tim/Sites/Kilt/app/views/layouts/kilt/cms/_menu.html.erb (1.4ms)
83568
+ Completed 200 OK in 148ms (Views: 67.0ms)
83569
+
83570
+
83571
+ Started GET "/assets/kilt/application.css?body=1" for 127.0.0.1 at 2014-02-19 15:34:12 -0500
83572
+
83573
+
83574
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-02-19 15:34:12 -0500
83575
+
83576
+
83577
+ Started GET "/assets/kilt/screen.css?body=1" for 127.0.0.1 at 2014-02-19 15:34:12 -0500
83578
+
83579
+
83580
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-02-19 15:34:12 -0500
83581
+
83582
+
83583
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-02-19 15:34:12 -0500
83584
+
83585
+
83586
+ Started GET "/assets/jquery.ui.datepicker.js?body=1" for 127.0.0.1 at 2014-02-19 15:34:12 -0500
83587
+
83588
+
83589
+ Started GET "/assets/kilt/kilt.js?body=1" for 127.0.0.1 at 2014-02-19 15:34:12 -0500
83590
+
83591
+
83592
+ Started GET "/assets/kilt/application.js?body=1" for 127.0.0.1 at 2014-02-19 15:34:12 -0500