flms 0.0.3 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +15 -0
- data/README.md +102 -2
- data/app/assets/javascripts/flms/admin.js +1 -1
- data/app/assets/javascripts/flms/{bootstrap.js → admin/bootstrap.js} +0 -0
- data/app/assets/javascripts/flms/{layout.coffee → admin/layout.coffee} +2 -2
- data/app/assets/javascripts/flms/{blocks/index → admin/pages/edit}/block.coffee +0 -0
- data/app/assets/javascripts/flms/{blocks/index → admin/pages/edit}/block_list.coffee +1 -1
- data/app/assets/javascripts/flms/{blocks/index/index.coffee → admin/pages/edit/edit.coffee} +2 -2
- data/app/assets/javascripts/flms/public.js +17 -0
- data/app/assets/stylesheets/flms/admin.css +1 -1
- data/app/assets/stylesheets/flms/{blocks → admin/blocks}/show.sass +0 -0
- data/app/assets/stylesheets/flms/{home.sass → admin/home.sass} +0 -1
- data/app/assets/stylesheets/flms/admin/layers/form.sass +4 -0
- data/app/assets/stylesheets/flms/{layout.sass → admin/layout.sass} +0 -0
- data/app/assets/stylesheets/flms/{login.sass → admin/login.sass} +0 -0
- data/app/assets/stylesheets/flms/{blocks/index.sass → admin/pages/edit.sass} +1 -1
- data/app/assets/stylesheets/flms/public.css +8 -0
- data/app/assets/stylesheets/flms/public/public.sass +52 -0
- data/app/controllers/flms/abstract_layer_controller.rb +45 -0
- data/app/controllers/flms/animation_layers_controller.rb +26 -0
- data/app/controllers/flms/application_controller.rb +13 -0
- data/app/controllers/flms/blocks_controller.rb +20 -22
- data/app/controllers/flms/embed_layers_controller.rb +24 -0
- data/app/controllers/flms/image_layers_controller.rb +6 -54
- data/app/controllers/flms/layers_controller.rb +3 -10
- data/app/controllers/flms/pages_controller.rb +44 -5
- data/app/controllers/flms/paragraph_layers_controller.rb +24 -0
- data/app/controllers/flms/text_layers_controller.rb +24 -0
- data/app/helpers/flms/application_helper.rb +13 -0
- data/app/models/flms/animation_layer.rb +33 -0
- data/app/models/flms/block.rb +17 -1
- data/app/models/flms/blocks_page.rb +3 -0
- data/app/models/flms/embed_layer.rb +12 -0
- data/app/models/flms/end_state_keyframe.rb +17 -0
- data/app/models/flms/image_layer.rb +23 -1
- data/app/models/flms/keyframe.rb +130 -0
- data/app/models/flms/layer.rb +91 -2
- data/app/models/flms/page.rb +14 -2
- data/app/models/flms/paragraph_layer.rb +21 -0
- data/app/models/flms/start_state_keyframe.rb +17 -0
- data/app/models/flms/target_state_keyframe.rb +17 -0
- data/app/models/flms/text_layer.rb +20 -0
- data/app/uploaders/image_uploader.rb +21 -34
- data/app/uploaders/thumbnail_image_uploader.rb +36 -0
- data/app/view_objects/flms/animation_layer_view_object.rb +45 -0
- data/app/view_objects/flms/embed_layer_view_object.rb +15 -0
- data/app/view_objects/flms/image_layer_view_object.rb +22 -0
- data/app/view_objects/flms/keyframe_view_object.rb +92 -0
- data/app/view_objects/flms/layer_view_object.rb +72 -0
- data/app/view_objects/flms/paragraph_layer_view_object.rb +19 -0
- data/app/view_objects/flms/text_layer_view_object.rb +30 -0
- data/app/views/flms/animation_layers/_form.html.haml +56 -0
- data/app/views/flms/animation_layers/edit.html.haml +1 -0
- data/app/views/flms/animation_layers/new.html.haml +1 -0
- data/app/views/flms/blocks/_form.html.haml +32 -18
- data/app/views/flms/blocks/edit.html.haml +61 -2
- data/app/views/flms/blocks/index.html.haml +13 -22
- data/app/views/flms/blocks/show.html.haml +12 -35
- data/app/views/flms/elements/_animation_layer.html.haml +2 -0
- data/app/views/flms/elements/_block.html.haml +3 -0
- data/app/views/flms/elements/_embed_layer.html.haml +2 -0
- data/app/views/flms/elements/_image_layer.html.haml +2 -0
- data/app/views/flms/elements/_page.html.haml +11 -0
- data/app/views/flms/elements/_paragraph_layer.html.haml +4 -0
- data/app/views/flms/elements/_text_layer.html.haml +2 -0
- data/app/views/flms/embed_layers/_form.html.haml +29 -0
- data/app/views/flms/embed_layers/edit.html.haml +2 -0
- data/app/views/flms/embed_layers/new.html.haml +2 -0
- data/app/views/flms/image_layers/_form.html.haml +31 -17
- data/app/views/flms/image_layers/new.html.haml +1 -2
- data/app/views/flms/layers/_common_fields.html.haml +41 -0
- data/app/views/flms/layers/_keyframe_fields.html.haml +127 -0
- data/app/views/flms/pages/_add_block.html.haml +8 -0
- data/app/views/flms/pages/_block_list.html.haml +44 -0
- data/app/views/flms/pages/_form.html.haml +22 -23
- data/app/views/flms/pages/edit.html.haml +4 -3
- data/app/views/flms/pages/index.html.haml +4 -3
- data/app/views/flms/pages/show.html.haml +8 -6
- data/app/views/flms/paragraph_layers/_form.html.haml +41 -0
- data/app/views/flms/paragraph_layers/edit.html.haml +2 -0
- data/app/views/flms/paragraph_layers/new.html.haml +2 -0
- data/app/views/flms/text_layers/_form.html.haml +43 -0
- data/app/views/flms/text_layers/edit.html.haml +2 -0
- data/app/views/flms/text_layers/new.html.haml +2 -0
- data/app/views/layouts/flms/_plain_styling.html.haml +1 -0
- data/app/views/layouts/flms/admin.html.haml +8 -3
- data/app/views/layouts/flms/public.html.haml +13 -0
- data/config/initializers/carrierwave.rb +62 -6
- data/config/initializers/mime_types.rb +3 -0
- data/config/initializers/validators.rb +1 -0
- data/config/routes.rb +13 -5
- data/config/s3.yml.example +14 -0
- data/db/migrate/{20130302011705_create_flms_blocks.rb → 20130302011705_flms_create_blocks.rb} +3 -1
- data/db/migrate/{20130302015459_create_flms_blocks_pages.rb → 20130302015459_flms_create_blocks_pages.rb} +1 -1
- data/db/migrate/20130312220011_flms_create_layers.rb +40 -0
- data/db/migrate/20130327183815_flms_create_keyframes.rb +24 -0
- data/lib/flms/css_name_validator.rb +9 -0
- data/lib/flms/version.rb +1 -1
- data/lib/tasks/flms_tasks.rake +46 -6
- data/spec/controllers/animation_layers_controller_spec.rb +38 -0
- data/spec/controllers/blocks_controller_spec.rb +18 -44
- data/spec/controllers/embed_layers_controller_spec.rb +52 -0
- data/spec/controllers/image_layers_controller_spec.rb +73 -0
- data/spec/controllers/layers_controller_spec.rb +4 -5
- data/spec/controllers/pages_controller_spec.rb +66 -1
- data/spec/controllers/paragraph_layers_controller_spec.rb +53 -0
- data/spec/controllers/text_layers_controller_spec.rb +73 -0
- data/spec/dummy/app/views/home/index.html.haml +1 -1
- data/spec/dummy/config/environments/development.rb +1 -0
- data/spec/dummy/config/environments/production.rb +1 -0
- data/spec/dummy/config/environments/test.rb +1 -0
- data/spec/dummy/config/initializers/flms.rb +1 -0
- data/spec/dummy/config/s3.yml +12 -0
- data/spec/dummy/config/s3.yml.example +12 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/schema.rb +40 -5
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +4376 -0
- data/spec/dummy/log/test.log +131766 -0
- data/spec/dummy/public/uploads/flms/animation_layer/image/1/normal_placeholder.png +0 -0
- data/spec/dummy/public/uploads/flms/animation_layer/image/1/placeholder.png +0 -0
- data/spec/dummy/public/uploads/flms/animation_layer/image/1/small_placeholder.png +0 -0
- data/spec/dummy/public/uploads/flms/animation_layer/image/1/thumb_placeholder.png +0 -0
- data/spec/dummy/public/uploads/flms/animation_layer/image/7/normal_placeholder.png +0 -0
- data/spec/dummy/public/uploads/flms/animation_layer/image/7/placeholder.png +0 -0
- data/spec/dummy/public/uploads/flms/animation_layer/image/7/small_placeholder.png +0 -0
- data/spec/dummy/public/uploads/flms/animation_layer/image/7/thumb_placeholder.png +0 -0
- data/spec/dummy/public/uploads/flms/block/thumbnail/1/placeholder.png +0 -0
- data/spec/dummy/public/uploads/flms/block/thumbnail/1/small_placeholder.png +0 -0
- data/spec/dummy/public/uploads/flms/block/thumbnail/1/thumb_placeholder.png +0 -0
- data/spec/dummy/public/uploads/flms/image_layer/image/1/normal_placeholder.png +0 -0
- data/spec/dummy/public/uploads/flms/image_layer/image/1/placeholder.png +0 -0
- data/spec/dummy/public/uploads/flms/image_layer/image/1/small_placeholder.png +0 -0
- data/spec/dummy/public/uploads/flms/image_layer/image/1/thumb_placeholder.png +0 -0
- data/spec/dummy/public/uploads/flms/image_layer/image/2/normal_placeholder.png +0 -0
- data/spec/dummy/public/uploads/flms/image_layer/image/2/placeholder.png +0 -0
- data/spec/dummy/public/uploads/flms/image_layer/image/2/small_placeholder.png +0 -0
- data/spec/dummy/public/uploads/flms/image_layer/image/2/thumb_placeholder.png +0 -0
- data/spec/dummy/public/uploads/flms/image_layer/image/3/normal_placeholder.png +0 -0
- data/spec/dummy/public/uploads/flms/image_layer/image/3/placeholder.png +0 -0
- data/spec/dummy/public/uploads/flms/image_layer/image/3/small_placeholder.png +0 -0
- data/spec/dummy/public/uploads/flms/image_layer/image/3/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/cache/assets/C4C/010/sprockets%2F74558ebf3d0666286090250c04b945a1 +0 -0
- data/spec/dummy/tmp/cache/assets/C4C/7C0/sprockets%2F829fa8a51f2e2266774e2007d7141414 +0 -0
- data/spec/dummy/tmp/cache/assets/C57/C80/sprockets%2F74f66b30036f872b250553c91f2981d8 +0 -0
- data/spec/dummy/tmp/cache/assets/C59/520/sprockets%2Ff2296184148079d68a35d80635c702fc +0 -0
- data/spec/dummy/tmp/cache/assets/C62/B80/sprockets%2Fe2573350e6996f3f19f06c03687339d2 +0 -0
- data/spec/dummy/tmp/cache/assets/C84/200/sprockets%2F6d5671bc22b630f45761e90488b3a909 +0 -0
- data/spec/dummy/tmp/cache/assets/C86/490/sprockets%2F196ee25088eb975920380e3b5fd22325 +0 -0
- data/spec/dummy/tmp/cache/assets/C86/F40/sprockets%2Fb9924512ef3de6aa72460258706865e2 +0 -0
- data/spec/dummy/tmp/cache/assets/CA7/AB0/sprockets%2F88f069985c1ffca86f6394209656964c +0 -0
- data/spec/dummy/tmp/cache/assets/CA9/AC0/sprockets%2F2f3e0ad16e81532007e094c081594f7e +0 -0
- data/spec/dummy/tmp/cache/assets/CA9/F00/sprockets%2F289543b9c4d5ea08789000ce30a95c00 +0 -0
- data/spec/dummy/tmp/cache/assets/CAB/C80/sprockets%2Fc4e739111d82c7189113aeb228816ba8 +0 -0
- data/spec/dummy/tmp/cache/assets/CB0/330/sprockets%2F228e5f742b01972dc6ce664713264d3c +0 -0
- data/spec/dummy/tmp/cache/assets/CB3/E00/sprockets%2F97a8391a80361fb1870669c06a27ae5c +0 -0
- data/spec/dummy/tmp/cache/assets/CC9/C00/sprockets%2F454c58b0a3b0a0a64fd60bb217197580 +0 -0
- data/spec/dummy/tmp/cache/assets/CD1/8F0/sprockets%2F4032f7a5b2133a8b8f963e12fd6120c5 +0 -0
- data/spec/dummy/tmp/cache/assets/CD7/000/sprockets%2Ff6534fbac7e738c013414d148211bd95 +0 -0
- data/spec/dummy/tmp/cache/assets/CD9/AA0/sprockets%2F80c500e462b3e91b00f48609b56ff91b +0 -0
- data/spec/dummy/tmp/cache/assets/CDB/510/sprockets%2Fd61745a24c4636f8813fa14038bac69a +0 -0
- data/spec/dummy/tmp/cache/assets/CDD/640/sprockets%2F557bde539a95020fd557e11f813242fa +0 -0
- data/spec/dummy/tmp/cache/assets/CDF/200/sprockets%2F9b251cfabb019f79e706200499d623c6 +0 -0
- data/spec/dummy/tmp/cache/assets/CE0/420/sprockets%2F5b3f22c66d8a269533a5689c1be5c800 +0 -0
- data/spec/dummy/tmp/cache/assets/CEE/C10/sprockets%2F39310232adc120c16210bdc84184fdaf +0 -0
- data/spec/dummy/tmp/cache/assets/D02/F10/sprockets%2Fd10499187b5f8d8d85769775d1ecb7c7 +0 -0
- data/spec/dummy/tmp/cache/assets/D07/A50/sprockets%2Fdda362e83c229c06b2bb63686e273d13 +0 -0
- data/spec/dummy/tmp/cache/assets/D09/5C0/sprockets%2F7cd3521c63623eb6f02dbb514991a6f6 +0 -0
- data/spec/dummy/tmp/cache/assets/D09/7C0/sprockets%2F892c677abcf22a046a610427fa29d4b7 +0 -0
- data/spec/dummy/tmp/cache/assets/D0B/0C0/sprockets%2Fb2722b54d89845b9619cadda1a04158c +0 -0
- data/spec/dummy/tmp/cache/assets/D11/9D0/sprockets%2F87436354c263adb7b069d7b3d19ace18 +0 -0
- data/spec/dummy/tmp/cache/assets/D15/6F0/sprockets%2F32e2b26b766ac7fb86d0c7062c976c29 +0 -0
- data/spec/dummy/tmp/cache/assets/D18/9C0/sprockets%2Ff92d239ff629c160ee015e3845a6c9c3 +0 -0
- data/spec/dummy/tmp/cache/assets/D18/DF0/sprockets%2F8d53dfef1f06c56f73026d82f29322a9 +0 -0
- data/spec/dummy/tmp/cache/assets/D19/060/sprockets%2F4be3ef7d038e55cffc27166271638f60 +0 -0
- data/spec/dummy/tmp/cache/assets/D1C/E30/sprockets%2F605ce82d89dce653d672485b9c1c52f1 +0 -0
- data/spec/dummy/tmp/cache/assets/D1E/1D0/sprockets%2Ffeec495723d877b92c74db2055516bc9 +0 -0
- data/spec/dummy/tmp/cache/assets/D22/660/sprockets%2F43f26c23b8ddf974767ca6f67b6530f6 +0 -0
- data/spec/dummy/tmp/cache/assets/D24/E10/sprockets%2Fd9032b251e778acab41d4639b003a1ca +0 -0
- data/spec/dummy/tmp/cache/assets/D25/A70/sprockets%2Fb7d53812242f41eafe2dc223317db30a +0 -0
- data/spec/dummy/tmp/cache/assets/D2D/190/sprockets%2Fcea5d014c171b7a836113bb9b0f9f712 +0 -0
- data/spec/dummy/tmp/cache/assets/D2E/130/sprockets%2F5ebb788f274dd034257c0bc0400fae50 +0 -0
- data/spec/dummy/tmp/cache/assets/D3B/440/sprockets%2Fabe31f236167ba051f6ff849d0a7282f +0 -0
- data/spec/dummy/tmp/cache/assets/D3B/550/sprockets%2Fb61caf9834ac8c31691851ac024f26ef +0 -0
- data/spec/dummy/tmp/cache/assets/D3B/980/sprockets%2Ff0e607eb6489ed61f27a5233cae0172e +0 -0
- data/spec/dummy/tmp/cache/assets/D3B/A90/sprockets%2F3a9f74af10313e521d21dc4d78b4f9b9 +0 -0
- data/spec/dummy/tmp/cache/assets/D46/210/sprockets%2F45a8d49c8edbaf91f38ab1495430384c +0 -0
- data/spec/dummy/tmp/cache/assets/D48/DD0/sprockets%2F75d43fac4136d1bbabf481f977b78637 +0 -0
- data/spec/dummy/tmp/cache/assets/D4A/B40/sprockets%2F509d2dc1350975d781c50dffc58ef53f +0 -0
- data/spec/dummy/tmp/cache/assets/D4B/D10/sprockets%2F76e4e1fa5d891fe2261834cf322f38ef +0 -0
- data/spec/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/spec/dummy/tmp/cache/assets/D50/0B0/sprockets%2F6c3a019b7442761786cc7bef8e8e7c6c +0 -0
- data/spec/dummy/tmp/cache/assets/D53/F80/sprockets%2F11d791b713f9b9cf2bb85bd7f6589b84 +0 -0
- data/spec/dummy/tmp/cache/assets/D54/BA0/sprockets%2F89de5abea3b3002f6e73210bb7a3c330 +0 -0
- data/spec/dummy/tmp/cache/assets/D54/DE0/sprockets%2F77af3e306bb966f71f83e90e2a8868db +0 -0
- data/spec/dummy/tmp/cache/assets/D5B/1F0/sprockets%2F4d98e747aa4bb9fc8859f49a45159e1c +0 -0
- data/spec/dummy/tmp/cache/assets/D64/D10/sprockets%2F9857068018fbac51ecd0a7510bcca55e +0 -0
- data/spec/dummy/tmp/cache/assets/D66/8E0/sprockets%2F0cbda18dbb9e414ed0bf1199358e1742 +0 -0
- data/spec/dummy/tmp/cache/assets/D6D/150/sprockets%2Fe84b6e0602e1c5218c9da9d46da4d74b +0 -0
- data/spec/dummy/tmp/cache/assets/D6E/870/sprockets%2F3f77e0b5396013fd145a6fdd21bc9b7f +0 -0
- data/spec/dummy/tmp/cache/assets/D71/2D0/sprockets%2F958685af3478f12a33ffaa5cfa26e0d1 +0 -0
- data/spec/dummy/tmp/cache/assets/D77/D80/sprockets%2F7ad794c63274a9812dfbabc1dae69692 +0 -0
- data/spec/dummy/tmp/cache/assets/D79/DE0/sprockets%2F9e7131d002f39be972e9918bdfbbcc66 +0 -0
- data/spec/dummy/tmp/cache/assets/D7C/3A0/sprockets%2Fec63717067efd6b2daf3423edf70f689 +0 -0
- data/spec/dummy/tmp/cache/assets/D7D/BB0/sprockets%2Fe66f1c4ba6885a4d1de08c3d81f991d9 +0 -0
- data/spec/dummy/tmp/cache/assets/D81/1D0/sprockets%2F9f446f7e8b3c18c6f7b636b71a8ba8d4 +0 -0
- data/spec/dummy/tmp/cache/assets/D81/400/sprockets%2F566656e2cc9e698b1dbbd56d6e2e6b36 +0 -0
- data/spec/dummy/tmp/cache/assets/D8C/DE0/sprockets%2Fb95e7d75de89e1285d0e6ef8d85cb508 +0 -0
- data/spec/dummy/tmp/cache/assets/D91/320/sprockets%2F322e2344c1fc1234ffd9b3142eecaf6f +0 -0
- data/spec/dummy/tmp/cache/assets/D92/9B0/sprockets%2F96f73ad8237fa0a4bb3aa8cbe083551a +0 -0
- data/spec/dummy/tmp/cache/assets/D93/0C0/sprockets%2Fab900c084c9c51c312ee3457cee8cdc2 +0 -0
- data/spec/dummy/tmp/cache/assets/D93/3F0/sprockets%2Fb6aecc2fe36010208fc8c4cc9e04672c +0 -0
- data/spec/dummy/tmp/cache/assets/D97/1B0/sprockets%2Fe0ae6a22a963d0e0819ce6436eb57cae +0 -0
- data/spec/dummy/tmp/cache/assets/D98/FD0/sprockets%2F6f253bd2bf824ac38c69bfe1418a04be +0 -0
- data/spec/dummy/tmp/cache/assets/D99/CF0/sprockets%2F015b5a48fa7906d045fc23db8a60feef +0 -0
- data/spec/dummy/tmp/cache/assets/D9A/820/sprockets%2F594caa19e550457af23ae9fba500a9fe +0 -0
- data/spec/dummy/tmp/cache/assets/D9E/220/sprockets%2Fd129fcf804e89814c2f4abbe0336cba9 +0 -0
- data/spec/dummy/tmp/cache/assets/D9E/8D0/sprockets%2F2ae41880ba1dbb6f570fe0e790678dbf +0 -0
- data/spec/dummy/tmp/cache/assets/D9E/A30/sprockets%2Fc82d9ee0ea1a5360faa296957c2bf17e +0 -0
- data/spec/dummy/tmp/cache/assets/DA0/C20/sprockets%2Fe1a590abeca61529529de36efa97b43e +0 -0
- data/spec/dummy/tmp/cache/assets/DA2/330/sprockets%2F27697dddd23a0913339ccb95dabd7ae7 +0 -0
- data/spec/dummy/tmp/cache/assets/DA3/920/sprockets%2F6c45b9f8e0152c78b3c9be1c2e8be53c +0 -0
- data/spec/dummy/tmp/cache/assets/DA5/3A0/sprockets%2Fa02e5a4a95bb7c92ec5b63f908eff870 +0 -0
- data/spec/dummy/tmp/cache/assets/DA5/BC0/sprockets%2F5b86068a872e5bd841750d6cbd2dfdbf +0 -0
- data/spec/dummy/tmp/cache/assets/DA6/360/sprockets%2F1d7b3df8a061fd27e6a956bfd84a93f1 +0 -0
- data/spec/dummy/tmp/cache/assets/DA6/A10/sprockets%2Fd226de7dc43ae36657be35fb6e31db89 +0 -0
- data/spec/dummy/tmp/cache/assets/DA8/4A0/sprockets%2Ff8ba39d58ace11df624bf7e24c7b5882 +0 -0
- data/spec/dummy/tmp/cache/assets/DA8/C30/sprockets%2Fb7d14d588a70a56d7ddac542eef557d6 +0 -0
- data/spec/dummy/tmp/cache/assets/DAE/680/sprockets%2Fcd28d437e7fc959fe1e328bca40f5e74 +0 -0
- data/spec/dummy/tmp/cache/assets/DB2/1F0/sprockets%2F9fe57997f92efbee3b03df4510a2df57 +0 -0
- data/spec/dummy/tmp/cache/assets/DB8/C30/sprockets%2Fca860af2d10e0c745b6e38b12dabe05f +0 -0
- data/spec/dummy/tmp/cache/assets/DBF/630/sprockets%2F8423ad7ae72b0bc6baeac10405389fdf +0 -0
- data/spec/dummy/tmp/cache/assets/DC1/530/sprockets%2F4db0b289eee7dad03453a5924c20dcfa +0 -0
- data/spec/dummy/tmp/cache/assets/DC2/BA0/sprockets%2Feb1b52f8e6baba5409e0e09c3cc70e45 +0 -0
- data/spec/dummy/tmp/cache/assets/DCF/0B0/sprockets%2F23db7ab96a5549546bbdd0bc2e6ea86f +0 -0
- data/spec/dummy/tmp/cache/assets/DD0/EE0/sprockets%2F4b34c7c215efccbeaf495ee4715734fb +0 -0
- data/spec/dummy/tmp/cache/assets/DD4/990/sprockets%2F8dc6b77dc74dfdf830aa8f19b92c130d +0 -0
- data/spec/dummy/tmp/cache/assets/DD7/FC0/sprockets%2Fdee985ae48773ae9b4fc4dd0b85ce201 +0 -0
- data/spec/dummy/tmp/cache/assets/DD8/DC0/sprockets%2Fcc82f3b4753fc2d729ebbcfec94e3077 +0 -0
- data/spec/dummy/tmp/cache/assets/DD9/170/sprockets%2Fccaea8553317199dc77c526fefdfbb27 +0 -0
- data/spec/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/spec/dummy/tmp/cache/assets/DEA/350/sprockets%2Ffc836da09a20cdbc0b7b49b2525e1bbe +0 -0
- data/spec/dummy/tmp/cache/assets/DF1/A10/sprockets%2Fa925a815ca0bff4d6f42fbdf0d323a4f +0 -0
- data/spec/dummy/tmp/cache/assets/DF3/820/sprockets%2Fede955e751bbec440cbbfc00473c34ec +0 -0
- data/spec/dummy/tmp/cache/assets/DFC/4B0/sprockets%2F30bac9bffe7e6a5ae42a675f55d1c29a +0 -0
- data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/spec/dummy/tmp/cache/assets/E09/1A0/sprockets%2Fc76bb4e6dbb4f2afc0f09c79a41e988f +0 -0
- data/spec/dummy/tmp/cache/assets/E2D/E20/sprockets%2Fec8c39aa4e1ce3059eeab8f265ead07d +0 -0
- data/spec/dummy/tmp/cache/assets/E2E/010/sprockets%2Fab7b35e5d27eba9893aaef6f2bde1b72 +0 -0
- data/spec/dummy/tmp/cache/assets/E2E/A50/sprockets%2Fc7e5c2d6c06cfc59aabd0f814de69c3c +0 -0
- data/spec/dummy/tmp/cache/assets/E4B/EE0/sprockets%2F06c4dea4fc3cb561b87bd078aab0facc +0 -0
- data/spec/dummy/tmp/cache/assets/E5E/A60/sprockets%2Ff83d84dceff86c25a7bab27cbff33ac0 +0 -0
- data/spec/dummy/tmp/cache/assets/E6D/8B0/sprockets%2F9edfdf7e85cdd1a69b0eb14c6ce8ed19 +0 -0
- data/spec/dummy/tmp/cache/assets/E94/6D0/sprockets%2F3bdb0f5d3a20cbd18bafaaea4ba2a7b2 +0 -0
- data/spec/dummy/tmp/uploads/20130503-1614-5904-3619/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130503-1614-5904-3619/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130503-1614-5904-3619/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130503-1614-5904-3619/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130503-1614-5904-6961/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130503-1614-5904-6961/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130503-1614-5904-6961/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130503-1614-5904-6961/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130503-1614-5904-8166/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130503-1614-5904-8166/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130503-1614-5904-8166/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130503-1614-5904-8166/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130503-1630-6161-2793/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130503-1630-6161-2793/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130503-1630-6161-2793/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130503-1630-6161-2793/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130503-1630-6161-4124/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130503-1630-6161-4124/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130503-1630-6161-4124/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130503-1630-6161-4124/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130503-1630-6161-5065/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130503-1630-6161-5065/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130503-1630-6161-5065/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130503-1630-6161-5065/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1009-4529-0167/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1009-4529-0167/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1009-4529-0167/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1009-4529-0167/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1009-4529-1078/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1009-4529-1078/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1009-4529-1078/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1009-4529-1078/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1009-4529-8277/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1009-4529-8277/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1009-4529-8277/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1009-4529-8277/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1015-4718-5926/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1015-4718-5926/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1015-4718-5926/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1015-4718-5926/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1015-4718-8555/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1015-4718-8555/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1015-4718-8555/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1015-4718-8555/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1015-4718-8970/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1015-4718-8970/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1015-4718-8970/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1015-4718-8970/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1016-4827-2822/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1016-4827-2822/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1016-4827-2822/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1016-4827-2822/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1016-4827-5903/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1016-4827-5903/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1016-4827-5903/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1016-4827-5903/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1016-4827-7236/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1016-4827-7236/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1016-4827-7236/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130506-1016-4827-7236/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-1171/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-1171/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-1171/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-1171/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-1953/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-1953/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-1953/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-1953/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-2097/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-2097/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-2097/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-2097/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-2484/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-2484/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-2484/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-2484/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-2606/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-2606/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-2606/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-2606/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-2640/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-2640/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-2640/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-2640/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-3942/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-3942/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-3942/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-3942/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-3995/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-3995/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-3995/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-3995/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-4465/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-4465/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-4465/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-4465/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-4513/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-4513/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-4513/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-4513/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-4527/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-4527/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-4527/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-4527/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-4926/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-4926/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-4926/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-4926/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-5213/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-5213/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-5213/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-5213/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-5546/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-5546/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-5546/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-5546/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-5678/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-5678/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-5678/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-5678/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-5947/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-5947/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-5947/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-5947/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-6549/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-6549/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-6549/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-6549/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-6797/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-6797/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-6797/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-6797/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-6962/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-6962/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-6962/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-6962/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-6970/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-6970/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-6970/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-6970/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-8091/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-8091/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-8091/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-8091/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-8800/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-8800/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-8800/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-8800/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-8918/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-8918/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-8918/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-8918/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-9407/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-9407/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-9407/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-9407/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-9499/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-9499/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-9499/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-9499/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-9908/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-9908/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-9908/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-9908/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-9932/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-9932/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-9932/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1348-12420-9932/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-0034/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-0034/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-0034/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-0034/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-2633/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-2633/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-2633/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-2633/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-3840/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-3840/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-3840/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-3840/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-4800/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-4800/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-4800/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-4800/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-6878/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-6878/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-6878/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-6878/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-7145/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-7145/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-7145/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-7145/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-7187/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-7187/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-7187/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-7187/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-7499/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-7499/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-7499/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130514-1349-12420-7499/thumb_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130515-1904-24025-2789/normal_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130515-1904-24025-2789/placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130515-1904-24025-2789/small_placeholder.png +0 -0
- data/spec/dummy/tmp/uploads/20130515-1904-24025-2789/thumb_placeholder.png +0 -0
- data/spec/factories/blocks.rb +1 -0
- data/spec/factories/keyframes.rb +8 -0
- data/spec/factories/layer.rb +33 -0
- data/spec/features/blocks/create_spec.rb +8 -5
- data/spec/features/blocks/delete_spec.rb +2 -2
- data/spec/features/blocks/edit_spec.rb +29 -7
- data/spec/features/blocks/index_spec.rb +15 -0
- data/spec/features/blocks/show_spec.rb +19 -5
- data/spec/features/layers/animation_layers/create_spec.rb +27 -0
- data/spec/features/layers/animation_layers/edit_spec.rb +27 -0
- data/spec/features/layers/embed_layers/create_spec.rb +25 -0
- data/spec/features/layers/embed_layers/edit_spec.rb +28 -0
- data/spec/features/layers/image_layers/create_spec.rb +8 -5
- data/spec/features/layers/image_layers/delete_spec.rb +3 -4
- data/spec/features/layers/image_layers/edit_spec.rb +34 -6
- data/spec/features/layers/paragraph_layers/create_spec.rb +27 -0
- data/spec/features/layers/paragraph_layers/edit_spec.rb +31 -0
- data/spec/features/layers/text_layers/create_spec.rb +29 -0
- data/spec/features/layers/text_layers/edit_spec.rb +29 -0
- data/spec/features/logout_spec.rb +12 -0
- data/spec/features/pages/edit_spec.rb +74 -0
- data/spec/features/pages/show_spec.rb +32 -0
- data/spec/models/animation_layer_spec.rb +46 -0
- data/spec/models/block_spec.rb +18 -0
- data/spec/models/embed_layer_spec.rb +21 -0
- data/spec/models/end_state_keyframe_spec.rb +18 -0
- data/spec/models/image_layer_spec.rb +19 -0
- data/spec/models/keyframe_spec.rb +185 -0
- data/spec/models/layer_spec.rb +147 -0
- data/spec/models/page_spec.rb +57 -7
- data/spec/models/paragraph_layer_spec.rb +44 -0
- data/spec/models/start_state_keyframe_spec.rb +18 -0
- data/spec/models/target_state_keyframe_spec.rb +18 -0
- data/spec/models/text_layer_spec.rb +56 -0
- data/spec/placeholder.png +0 -0
- data/spec/spec_helper.rb +4 -1
- data/spec/support/lets.rb +17 -6
- data/spec/validators/css_name_validator_spec.rb +34 -0
- data/spec/view_objects/animation_layer_view_object_spec.rb +77 -0
- data/spec/view_objects/image_layer_view_object_spec.rb +13 -0
- data/spec/view_objects/keyframe_view_object_spec.rb +119 -0
- data/spec/view_objects/layer_view_object_spec.rb +57 -0
- data/spec/view_objects/paragraph_layer_view_object_spec.rb +23 -0
- data/spec/view_objects/text_layer_view_object_spec.rb +33 -0
- data/vendor/assets/javascripts/jquery-1.8.3.min.js +2 -0
- data/vendor/assets/javascripts/jquery.easing.1.3.js +205 -0
- data/vendor/assets/javascripts/jquery.quicksand.js +443 -0
- data/vendor/assets/javascripts/scroll-startstop.events.jquery.js +69 -0
- data/vendor/assets/javascripts/skrollr.ie.min.js +2 -0
- data/vendor/assets/javascripts/skrollr.min.js +2 -0
- data/vendor/assets/javascripts/skrollr.mobile.min.js +2 -0
- metadata +816 -101
- data/app/views/layouts/flms/application.html.erb +0 -14
- data/db/migrate/20130312220011_create_flms_layers.rb +0 -13
- data/db/migrate/20130313002421_add_image_to_layers.rb +0 -5
- data/spec/dummy/tmp/pids/server.pid +0 -1
- data/spec/factories/image_layer.rb +0 -6
- data/spec/features/blocks/activating_blocks_spec.rb +0 -18
|
Binary file
|
data/spec/dummy/db/schema.rb
CHANGED
|
@@ -11,10 +11,12 @@
|
|
|
11
11
|
#
|
|
12
12
|
# It's strongly recommended to check this file into your version control system.
|
|
13
13
|
|
|
14
|
-
ActiveRecord::Schema.define(:version =>
|
|
14
|
+
ActiveRecord::Schema.define(:version => 20130327183815) do
|
|
15
15
|
|
|
16
16
|
create_table "flms_blocks", :force => true do |t|
|
|
17
17
|
t.string "name"
|
|
18
|
+
t.string "title"
|
|
19
|
+
t.string "thumbnail"
|
|
18
20
|
t.datetime "created_at", :null => false
|
|
19
21
|
t.datetime "updated_at", :null => false
|
|
20
22
|
end
|
|
@@ -31,14 +33,47 @@ ActiveRecord::Schema.define(:version => 20130313002421) do
|
|
|
31
33
|
add_index "flms_blocks_pages", ["block_id"], :name => "index_flms_blocks_pages_on_block_id"
|
|
32
34
|
add_index "flms_blocks_pages", ["page_id"], :name => "index_flms_blocks_pages_on_page_id"
|
|
33
35
|
|
|
36
|
+
create_table "flms_keyframes", :force => true do |t|
|
|
37
|
+
t.datetime "created_at", :null => false
|
|
38
|
+
t.datetime "updated_at", :null => false
|
|
39
|
+
t.integer "layer_id"
|
|
40
|
+
t.string "type"
|
|
41
|
+
t.integer "scroll_start"
|
|
42
|
+
t.integer "scroll_duration"
|
|
43
|
+
t.float "width"
|
|
44
|
+
t.float "height"
|
|
45
|
+
t.float "position_x"
|
|
46
|
+
t.float "position_y"
|
|
47
|
+
t.float "margin_left", :default => 0.0, :null => false
|
|
48
|
+
t.float "margin_top", :default => 0.0, :null => false
|
|
49
|
+
t.float "opacity"
|
|
50
|
+
t.float "scale"
|
|
51
|
+
t.float "blur"
|
|
52
|
+
end
|
|
53
|
+
|
|
34
54
|
create_table "flms_layers", :force => true do |t|
|
|
35
55
|
t.string "name"
|
|
36
|
-
t.integer "block_id"
|
|
37
|
-
t.integer "ordering"
|
|
38
56
|
t.string "type"
|
|
39
|
-
t.
|
|
40
|
-
t.
|
|
57
|
+
t.integer "block_id"
|
|
58
|
+
t.float "width"
|
|
59
|
+
t.float "height"
|
|
60
|
+
t.string "z_index", :default => "0", :null => false
|
|
61
|
+
t.string "image_display_mode", :default => "cover"
|
|
62
|
+
t.boolean "dom_remove", :default => true, :null => false
|
|
63
|
+
t.boolean "active", :default => true
|
|
41
64
|
t.string "image"
|
|
65
|
+
t.string "text"
|
|
66
|
+
t.float "font_size"
|
|
67
|
+
t.string "color"
|
|
68
|
+
t.string "header"
|
|
69
|
+
t.text "body"
|
|
70
|
+
t.text "embed_code"
|
|
71
|
+
t.integer "frame_rate"
|
|
72
|
+
t.integer "frame_count"
|
|
73
|
+
t.integer "image_width"
|
|
74
|
+
t.integer "image_height"
|
|
75
|
+
t.datetime "created_at", :null => false
|
|
76
|
+
t.datetime "updated_at", :null => false
|
|
42
77
|
end
|
|
43
78
|
|
|
44
79
|
add_index "flms_layers", ["block_id"], :name => "index_flms_layers_on_block_id"
|
data/spec/dummy/db/test.sqlite3
CHANGED
|
Binary file
|
|
@@ -83607,3 +83607,4379 @@ Served asset /bootstrapSwitch.js - 304 Not Modified (0ms)
|
|
|
83607
83607
|
|
|
83608
83608
|
Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-15 17:33:27 -0700
|
|
83609
83609
|
Served asset /flms/admin.js - 304 Not Modified (0ms)
|
|
83610
|
+
Connecting to database specified by database.yml
|
|
83611
|
+
Connecting to database specified by database.yml
|
|
83612
|
+
|
|
83613
|
+
|
|
83614
|
+
Started GET "/" for 127.0.0.1 at 2013-03-18 10:31:16 -0700
|
|
83615
|
+
Processing by HomeController#index as HTML
|
|
83616
|
+
Rendered home/index.html.haml (3.0ms)
|
|
83617
|
+
Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.0ms)
|
|
83618
|
+
|
|
83619
|
+
|
|
83620
|
+
Started GET "/flms/login" for 127.0.0.1 at 2013-03-18 10:31:20 -0700
|
|
83621
|
+
Processing by Flms::SessionsController#new as HTML
|
|
83622
|
+
[1m[36mFlms::User Load (0.4ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
83623
|
+
Redirected to http://localhost:3000/flms/pages
|
|
83624
|
+
Filter chain halted as :require_no_authentication rendered or redirected
|
|
83625
|
+
Completed 302 Found in 73ms (ActiveRecord: 2.4ms)
|
|
83626
|
+
|
|
83627
|
+
|
|
83628
|
+
Started GET "/flms/pages" for 127.0.0.1 at 2013-03-18 10:31:20 -0700
|
|
83629
|
+
Processing by Flms::PagesController#index as HTML
|
|
83630
|
+
[1m[35mFlms::User Load (0.2ms)[0m SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
|
|
83631
|
+
[1m[36mFlms::Page Load (0.4ms)[0m [1mSELECT "flms_pages".* FROM "flms_pages" [0m
|
|
83632
|
+
Rendered /Users/kevin/flms/app/views/flms/pages/index.html.haml within layouts/flms/admin (3.1ms)
|
|
83633
|
+
Compiled flms/blocks/index.css (223ms) (pid 723)
|
|
83634
|
+
Compiled flms/blocks/show.css (1ms) (pid 723)
|
|
83635
|
+
Compiled flms/home.css (2ms) (pid 723)
|
|
83636
|
+
Compiled flms/layout.css (1ms) (pid 723)
|
|
83637
|
+
Compiled flms/login.css (3ms) (pid 723)
|
|
83638
|
+
Compiled jquery-ui.css (0ms) (pid 723)
|
|
83639
|
+
Compiled bootstrap.css (0ms) (pid 723)
|
|
83640
|
+
Compiled bootstrapSwitch.css (0ms) (pid 723)
|
|
83641
|
+
Compiled flms/admin.css (304ms) (pid 723)
|
|
83642
|
+
Compiled jquery.js (1ms) (pid 723)
|
|
83643
|
+
Compiled jquery_ujs.js (0ms) (pid 723)
|
|
83644
|
+
Compiled jquery-ui.js (5ms) (pid 723)
|
|
83645
|
+
Compiled modularity/tools/string_tools.js (107ms) (pid 723)
|
|
83646
|
+
Compiled modularity/modularity.js (400ms) (pid 723)
|
|
83647
|
+
Compiled flms/blocks/index/block.js (112ms) (pid 723)
|
|
83648
|
+
Compiled flms/blocks/index/block_list.js (113ms) (pid 723)
|
|
83649
|
+
Compiled flms/blocks/index/index.js (123ms) (pid 723)
|
|
83650
|
+
Compiled flms/bootstrap.js (0ms) (pid 723)
|
|
83651
|
+
Compiled flms/layout.js (108ms) (pid 723)
|
|
83652
|
+
Compiled bootstrapSwitch.js (0ms) (pid 723)
|
|
83653
|
+
Compiled flms/admin.js (959ms) (pid 723)
|
|
83654
|
+
Completed 200 OK in 1390ms (Views: 1384.3ms | ActiveRecord: 0.8ms)
|
|
83655
|
+
|
|
83656
|
+
|
|
83657
|
+
Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-03-18 10:31:21 -0700
|
|
83658
|
+
Served asset /flms/blocks/index.css - 200 OK (3ms)
|
|
83659
|
+
|
|
83660
|
+
|
|
83661
|
+
Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-03-18 10:31:21 -0700
|
|
83662
|
+
Served asset /flms/blocks/show.css - 200 OK (4ms)
|
|
83663
|
+
|
|
83664
|
+
|
|
83665
|
+
Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-03-18 10:31:21 -0700
|
|
83666
|
+
Served asset /flms/home.css - 200 OK (2ms)
|
|
83667
|
+
|
|
83668
|
+
|
|
83669
|
+
Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
|
|
83670
|
+
Served asset /flms/login.css - 200 OK (2ms)
|
|
83671
|
+
|
|
83672
|
+
|
|
83673
|
+
Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
|
|
83674
|
+
Served asset /flms/layout.css - 200 OK (1ms)
|
|
83675
|
+
|
|
83676
|
+
|
|
83677
|
+
Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
|
|
83678
|
+
Served asset /jquery-ui.css - 200 OK (2ms)
|
|
83679
|
+
|
|
83680
|
+
|
|
83681
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
|
|
83682
|
+
Served asset /bootstrap.css - 200 OK (3ms)
|
|
83683
|
+
|
|
83684
|
+
|
|
83685
|
+
Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
|
|
83686
|
+
Served asset /bootstrapSwitch.css - 200 OK (1ms)
|
|
83687
|
+
|
|
83688
|
+
|
|
83689
|
+
Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
|
|
83690
|
+
Served asset /flms/admin.css - 200 OK (9ms)
|
|
83691
|
+
|
|
83692
|
+
|
|
83693
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
|
|
83694
|
+
Served asset /jquery.js - 304 Not Modified (2ms)
|
|
83695
|
+
|
|
83696
|
+
|
|
83697
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
|
|
83698
|
+
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
|
83699
|
+
|
|
83700
|
+
|
|
83701
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
|
|
83702
|
+
Served asset /jquery-ui.js - 200 OK (5ms)
|
|
83703
|
+
|
|
83704
|
+
|
|
83705
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
|
|
83706
|
+
Served asset /modularity/modularity.js - 304 Not Modified (4ms)
|
|
83707
|
+
|
|
83708
|
+
|
|
83709
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
|
|
83710
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (1ms)
|
|
83711
|
+
|
|
83712
|
+
|
|
83713
|
+
Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
|
|
83714
|
+
Served asset /flms/blocks/index/block.js - 200 OK (2ms)
|
|
83715
|
+
|
|
83716
|
+
|
|
83717
|
+
Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
|
|
83718
|
+
Served asset /flms/blocks/index/block_list.js - 200 OK (4ms)
|
|
83719
|
+
|
|
83720
|
+
|
|
83721
|
+
Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
|
|
83722
|
+
Served asset /flms/blocks/index/index.js - 200 OK (1ms)
|
|
83723
|
+
|
|
83724
|
+
|
|
83725
|
+
Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
|
|
83726
|
+
Served asset /flms/bootstrap.js - 200 OK (1ms)
|
|
83727
|
+
|
|
83728
|
+
|
|
83729
|
+
Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
|
|
83730
|
+
Served asset /flms/layout.js - 200 OK (2ms)
|
|
83731
|
+
|
|
83732
|
+
|
|
83733
|
+
Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
|
|
83734
|
+
Served asset /bootstrapSwitch.js - 200 OK (1ms)
|
|
83735
|
+
|
|
83736
|
+
|
|
83737
|
+
Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
|
|
83738
|
+
Served asset /flms/admin.js - 200 OK (47ms)
|
|
83739
|
+
|
|
83740
|
+
|
|
83741
|
+
Started GET "/assets/glyphicons-halflings.png" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
|
|
83742
|
+
Served asset /glyphicons-halflings.png - 304 Not Modified (4ms)
|
|
83743
|
+
|
|
83744
|
+
|
|
83745
|
+
Started GET "/assets/glyphicons-halflings-white.png" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
|
|
83746
|
+
Served asset /glyphicons-halflings-white.png - 304 Not Modified (4ms)
|
|
83747
|
+
|
|
83748
|
+
|
|
83749
|
+
Started GET "/flms/pages/home/blocks" for 127.0.0.1 at 2013-03-18 10:31:31 -0700
|
|
83750
|
+
Processing by Flms::BlocksController#index as HTML
|
|
83751
|
+
Parameters: {"page_id"=>"home"}
|
|
83752
|
+
[1m[35mFlms::User Load (0.2ms)[0m SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
|
|
83753
|
+
[1m[36mFlms::Page Load (0.5ms)[0m [1mSELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1[0m
|
|
83754
|
+
[1m[35mFlms::BlocksPage Load (0.9ms)[0m SELECT "flms_blocks_pages".* FROM "flms_blocks_pages" WHERE "flms_blocks_pages"."page_id" = 2 ORDER BY ordering
|
|
83755
|
+
[1m[36mFlms::Block Load (0.1ms)[0m [1mSELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" IN (1, 2, 3)[0m
|
|
83756
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/index.html.haml within layouts/flms/admin (43.6ms)
|
|
83757
|
+
Completed 200 OK in 55ms (Views: 51.6ms | ActiveRecord: 2.1ms)
|
|
83758
|
+
|
|
83759
|
+
|
|
83760
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:31 -0700
|
|
83761
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
83762
|
+
|
|
83763
|
+
|
|
83764
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:31 -0700
|
|
83765
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
83766
|
+
|
|
83767
|
+
|
|
83768
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:31 -0700
|
|
83769
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
83770
|
+
|
|
83771
|
+
|
|
83772
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:31 -0700
|
|
83773
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
83774
|
+
|
|
83775
|
+
|
|
83776
|
+
Started GET "/flms/pages/home/blocks/1/edit" for 127.0.0.1 at 2013-03-18 10:31:37 -0700
|
|
83777
|
+
Processing by Flms::BlocksController#edit as HTML
|
|
83778
|
+
Parameters: {"page_id"=>"home", "id"=>"1"}
|
|
83779
|
+
[1m[35mFlms::User Load (0.1ms)[0m SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
|
|
83780
|
+
[1m[36mFlms::Page Load (0.1ms)[0m [1mSELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1[0m
|
|
83781
|
+
[1m[35mFlms::Block Load (0.2ms)[0m SELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1 [["id", "1"]]
|
|
83782
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/_form.html.haml (5.9ms)
|
|
83783
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/edit.html.haml within layouts/flms/admin (10.7ms)
|
|
83784
|
+
Completed 200 OK in 23ms (Views: 20.6ms | ActiveRecord: 0.4ms)
|
|
83785
|
+
|
|
83786
|
+
|
|
83787
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:38 -0700
|
|
83788
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
83789
|
+
|
|
83790
|
+
|
|
83791
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:38 -0700
|
|
83792
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
83793
|
+
|
|
83794
|
+
|
|
83795
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:38 -0700
|
|
83796
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
83797
|
+
|
|
83798
|
+
|
|
83799
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:38 -0700
|
|
83800
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
83801
|
+
|
|
83802
|
+
|
|
83803
|
+
Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-18 10:31:42 -0700
|
|
83804
|
+
Processing by Flms::BlocksController#show as HTML
|
|
83805
|
+
Parameters: {"page_id"=>"home", "id"=>"1"}
|
|
83806
|
+
[1m[36mFlms::User Load (0.2ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
83807
|
+
[1m[35mFlms::Page Load (0.1ms)[0m SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
|
|
83808
|
+
[1m[36mFlms::Block Load (0.1ms)[0m [1mSELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
83809
|
+
[1m[35mFlms::Layer Load (0.8ms)[0m SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
|
|
83810
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (98.0ms)
|
|
83811
|
+
Completed 200 OK in 149ms (Views: 145.7ms | ActiveRecord: 1.4ms)
|
|
83812
|
+
|
|
83813
|
+
|
|
83814
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:42 -0700
|
|
83815
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
83816
|
+
|
|
83817
|
+
|
|
83818
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:42 -0700
|
|
83819
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
83820
|
+
|
|
83821
|
+
|
|
83822
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:42 -0700
|
|
83823
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
83824
|
+
|
|
83825
|
+
|
|
83826
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:42 -0700
|
|
83827
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
83828
|
+
|
|
83829
|
+
|
|
83830
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:42 -0700
|
|
83831
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
83832
|
+
|
|
83833
|
+
|
|
83834
|
+
Started GET "/flms/pages/home/blocks/1/image_layers/6/edit" for 127.0.0.1 at 2013-03-18 10:31:47 -0700
|
|
83835
|
+
Processing by Flms::ImageLayersController#edit as HTML
|
|
83836
|
+
Parameters: {"page_id"=>"home", "block_id"=>"1", "id"=>"6"}
|
|
83837
|
+
[1m[36mFlms::User Load (0.2ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
83838
|
+
[1m[35mFlms::Page Load (0.1ms)[0m SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
|
|
83839
|
+
[1m[36mFlms::Block Load (0.1ms)[0m [1mSELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
83840
|
+
[1m[35mFlms::ImageLayer Load (0.1ms)[0m SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."type" IN ('Flms::ImageLayer') AND "flms_layers"."id" = ? LIMIT 1 [["id", "6"]]
|
|
83841
|
+
Rendered /Users/kevin/flms/app/views/flms/image_layers/_form.html.haml (6.8ms)
|
|
83842
|
+
Rendered /Users/kevin/flms/app/views/flms/image_layers/edit.html.haml within layouts/flms/admin (9.1ms)
|
|
83843
|
+
Completed 200 OK in 20ms (Views: 17.8ms | ActiveRecord: 0.5ms)
|
|
83844
|
+
|
|
83845
|
+
|
|
83846
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:47 -0700
|
|
83847
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
83848
|
+
|
|
83849
|
+
|
|
83850
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:47 -0700
|
|
83851
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
83852
|
+
|
|
83853
|
+
|
|
83854
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:47 -0700
|
|
83855
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
83856
|
+
|
|
83857
|
+
|
|
83858
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:47 -0700
|
|
83859
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
83860
|
+
|
|
83861
|
+
|
|
83862
|
+
Started GET "/flms/users" for 127.0.0.1 at 2013-03-18 10:31:51 -0700
|
|
83863
|
+
Processing by Flms::UsersController#index as HTML
|
|
83864
|
+
[1m[36mFlms::User Load (0.2ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
83865
|
+
[1m[35mFlms::User Load (0.1ms)[0m SELECT "flms_users".* FROM "flms_users"
|
|
83866
|
+
Rendered /Users/kevin/flms/app/views/flms/users/index.html.haml within layouts/flms/admin (2.8ms)
|
|
83867
|
+
Completed 200 OK in 13ms (Views: 11.7ms | ActiveRecord: 0.3ms)
|
|
83868
|
+
|
|
83869
|
+
|
|
83870
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:51 -0700
|
|
83871
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
83872
|
+
|
|
83873
|
+
|
|
83874
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:51 -0700
|
|
83875
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
83876
|
+
|
|
83877
|
+
|
|
83878
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:51 -0700
|
|
83879
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
83880
|
+
|
|
83881
|
+
|
|
83882
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:51 -0700
|
|
83883
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
83884
|
+
|
|
83885
|
+
|
|
83886
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:51 -0700
|
|
83887
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
83888
|
+
Connecting to database specified by database.yml
|
|
83889
|
+
|
|
83890
|
+
|
|
83891
|
+
Started GET "/flms/login" for 127.0.0.1 at 2013-03-18 10:57:16 -0700
|
|
83892
|
+
Processing by Flms::SessionsController#new as HTML
|
|
83893
|
+
[1m[36mFlms::User Load (0.1ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
83894
|
+
Redirected to http://localhost:3000/flms/pages
|
|
83895
|
+
Filter chain halted as :require_no_authentication rendered or redirected
|
|
83896
|
+
Completed 302 Found in 30ms (ActiveRecord: 1.2ms)
|
|
83897
|
+
|
|
83898
|
+
|
|
83899
|
+
Started GET "/flms/pages" for 127.0.0.1 at 2013-03-18 10:57:16 -0700
|
|
83900
|
+
Processing by Flms::PagesController#index as HTML
|
|
83901
|
+
[1m[35mFlms::User Load (0.2ms)[0m SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
|
|
83902
|
+
[1m[36mFlms::Page Load (0.1ms)[0m [1mSELECT "flms_pages".* FROM "flms_pages" [0m
|
|
83903
|
+
Rendered /Users/kevin/flms/app/views/flms/pages/index.html.haml within layouts/flms/admin (3.6ms)
|
|
83904
|
+
Completed 200 OK in 91ms (Views: 85.3ms | ActiveRecord: 0.4ms)
|
|
83905
|
+
|
|
83906
|
+
|
|
83907
|
+
Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:16 -0700
|
|
83908
|
+
Served asset /flms/blocks/index.css - 304 Not Modified (2ms)
|
|
83909
|
+
|
|
83910
|
+
|
|
83911
|
+
Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:16 -0700
|
|
83912
|
+
Served asset /flms/blocks/show.css - 304 Not Modified (3ms)
|
|
83913
|
+
|
|
83914
|
+
|
|
83915
|
+
Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:16 -0700
|
|
83916
|
+
Served asset /flms/layout.css - 304 Not Modified (2ms)
|
|
83917
|
+
|
|
83918
|
+
|
|
83919
|
+
Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:16 -0700
|
|
83920
|
+
Served asset /flms/home.css - 304 Not Modified (3ms)
|
|
83921
|
+
|
|
83922
|
+
|
|
83923
|
+
Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:16 -0700
|
|
83924
|
+
Served asset /flms/login.css - 304 Not Modified (4ms)
|
|
83925
|
+
|
|
83926
|
+
|
|
83927
|
+
Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:16 -0700
|
|
83928
|
+
Served asset /jquery-ui.css - 304 Not Modified (2ms)
|
|
83929
|
+
|
|
83930
|
+
|
|
83931
|
+
Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:16 -0700
|
|
83932
|
+
Served asset /bootstrapSwitch.css - 304 Not Modified (2ms)
|
|
83933
|
+
|
|
83934
|
+
|
|
83935
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:16 -0700
|
|
83936
|
+
Served asset /bootstrap.css - 304 Not Modified (2ms)
|
|
83937
|
+
|
|
83938
|
+
|
|
83939
|
+
Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:16 -0700
|
|
83940
|
+
Served asset /flms/admin.css - 304 Not Modified (10ms)
|
|
83941
|
+
|
|
83942
|
+
|
|
83943
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:16 -0700
|
|
83944
|
+
Served asset /jquery.js - 304 Not Modified (35ms)
|
|
83945
|
+
|
|
83946
|
+
|
|
83947
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:17 -0700
|
|
83948
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
|
83949
|
+
|
|
83950
|
+
|
|
83951
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:17 -0700
|
|
83952
|
+
Served asset /jquery-ui.js - 304 Not Modified (3ms)
|
|
83953
|
+
|
|
83954
|
+
|
|
83955
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:17 -0700
|
|
83956
|
+
Served asset /modularity/modularity.js - 304 Not Modified (6ms)
|
|
83957
|
+
|
|
83958
|
+
|
|
83959
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:17 -0700
|
|
83960
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (1ms)
|
|
83961
|
+
|
|
83962
|
+
|
|
83963
|
+
Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:17 -0700
|
|
83964
|
+
Served asset /flms/blocks/index/block.js - 304 Not Modified (1ms)
|
|
83965
|
+
|
|
83966
|
+
|
|
83967
|
+
Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:17 -0700
|
|
83968
|
+
Served asset /flms/blocks/index/block_list.js - 304 Not Modified (2ms)
|
|
83969
|
+
|
|
83970
|
+
|
|
83971
|
+
Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:17 -0700
|
|
83972
|
+
Served asset /flms/blocks/index/index.js - 304 Not Modified (1ms)
|
|
83973
|
+
|
|
83974
|
+
|
|
83975
|
+
Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:17 -0700
|
|
83976
|
+
Served asset /flms/bootstrap.js - 304 Not Modified (2ms)
|
|
83977
|
+
|
|
83978
|
+
|
|
83979
|
+
Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:17 -0700
|
|
83980
|
+
Served asset /flms/layout.js - 304 Not Modified (1ms)
|
|
83981
|
+
|
|
83982
|
+
|
|
83983
|
+
Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:17 -0700
|
|
83984
|
+
Served asset /flms/admin.js - 304 Not Modified (10ms)
|
|
83985
|
+
|
|
83986
|
+
|
|
83987
|
+
Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:17 -0700
|
|
83988
|
+
Served asset /bootstrapSwitch.js - 304 Not Modified (1ms)
|
|
83989
|
+
|
|
83990
|
+
|
|
83991
|
+
Started GET "/assets/glyphicons-halflings.png" for 127.0.0.1 at 2013-03-18 10:57:17 -0700
|
|
83992
|
+
Served asset /glyphicons-halflings.png - 304 Not Modified (2ms)
|
|
83993
|
+
|
|
83994
|
+
|
|
83995
|
+
Started GET "/assets/glyphicons-halflings-white.png" for 127.0.0.1 at 2013-03-18 10:57:17 -0700
|
|
83996
|
+
Served asset /glyphicons-halflings-white.png - 304 Not Modified (2ms)
|
|
83997
|
+
|
|
83998
|
+
|
|
83999
|
+
Started GET "/flms/pages/home/blocks" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
|
|
84000
|
+
Processing by Flms::BlocksController#index as HTML
|
|
84001
|
+
Parameters: {"page_id"=>"home"}
|
|
84002
|
+
[1m[35mFlms::User Load (0.1ms)[0m SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
|
|
84003
|
+
[1m[36mFlms::Page Load (0.1ms)[0m [1mSELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1[0m
|
|
84004
|
+
[1m[35mFlms::BlocksPage Load (0.1ms)[0m SELECT "flms_blocks_pages".* FROM "flms_blocks_pages" WHERE "flms_blocks_pages"."page_id" = 2 ORDER BY ordering
|
|
84005
|
+
[1m[36mFlms::Block Load (0.1ms)[0m [1mSELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" IN (1, 2, 3)[0m
|
|
84006
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/index.html.haml within layouts/flms/admin (34.1ms)
|
|
84007
|
+
Completed 200 OK in 44ms (Views: 42.1ms | ActiveRecord: 0.9ms)
|
|
84008
|
+
|
|
84009
|
+
|
|
84010
|
+
Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
|
|
84011
|
+
Served asset /flms/blocks/show.css - 304 Not Modified (0ms)
|
|
84012
|
+
|
|
84013
|
+
|
|
84014
|
+
Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
|
|
84015
|
+
Served asset /jquery-ui.css - 304 Not Modified (0ms)
|
|
84016
|
+
|
|
84017
|
+
|
|
84018
|
+
Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
|
|
84019
|
+
Served asset /flms/login.css - 304 Not Modified (0ms)
|
|
84020
|
+
|
|
84021
|
+
|
|
84022
|
+
Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
|
|
84023
|
+
Served asset /flms/home.css - 304 Not Modified (0ms)
|
|
84024
|
+
|
|
84025
|
+
|
|
84026
|
+
Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
|
|
84027
|
+
Served asset /flms/blocks/index.css - 304 Not Modified (0ms)
|
|
84028
|
+
|
|
84029
|
+
|
|
84030
|
+
Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
|
|
84031
|
+
Served asset /flms/layout.css - 304 Not Modified (0ms)
|
|
84032
|
+
|
|
84033
|
+
|
|
84034
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
|
|
84035
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84036
|
+
|
|
84037
|
+
|
|
84038
|
+
Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
|
|
84039
|
+
Served asset /bootstrapSwitch.css - 304 Not Modified (0ms)
|
|
84040
|
+
|
|
84041
|
+
|
|
84042
|
+
Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
|
|
84043
|
+
Served asset /flms/admin.css - 304 Not Modified (0ms)
|
|
84044
|
+
|
|
84045
|
+
|
|
84046
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
|
|
84047
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
84048
|
+
|
|
84049
|
+
|
|
84050
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
|
|
84051
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
84052
|
+
|
|
84053
|
+
|
|
84054
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
|
|
84055
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
|
84056
|
+
|
|
84057
|
+
|
|
84058
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
|
|
84059
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
84060
|
+
|
|
84061
|
+
|
|
84062
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
|
|
84063
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
84064
|
+
|
|
84065
|
+
|
|
84066
|
+
Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
|
|
84067
|
+
Served asset /flms/blocks/index/block.js - 304 Not Modified (0ms)
|
|
84068
|
+
|
|
84069
|
+
|
|
84070
|
+
Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
|
|
84071
|
+
Served asset /flms/blocks/index/block_list.js - 304 Not Modified (0ms)
|
|
84072
|
+
|
|
84073
|
+
|
|
84074
|
+
Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
|
|
84075
|
+
Served asset /flms/bootstrap.js - 304 Not Modified (0ms)
|
|
84076
|
+
|
|
84077
|
+
|
|
84078
|
+
Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
|
|
84079
|
+
Served asset /flms/blocks/index/index.js - 304 Not Modified (0ms)
|
|
84080
|
+
|
|
84081
|
+
|
|
84082
|
+
Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
|
|
84083
|
+
Served asset /flms/layout.js - 304 Not Modified (0ms)
|
|
84084
|
+
|
|
84085
|
+
|
|
84086
|
+
Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
|
|
84087
|
+
Served asset /bootstrapSwitch.js - 304 Not Modified (0ms)
|
|
84088
|
+
|
|
84089
|
+
|
|
84090
|
+
Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
|
|
84091
|
+
Served asset /flms/admin.js - 304 Not Modified (0ms)
|
|
84092
|
+
|
|
84093
|
+
|
|
84094
|
+
Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-18 10:57:36 -0700
|
|
84095
|
+
Processing by Flms::BlocksController#show as HTML
|
|
84096
|
+
Parameters: {"page_id"=>"home", "id"=>"1"}
|
|
84097
|
+
[1m[35mFlms::User Load (0.2ms)[0m SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
|
|
84098
|
+
[1m[36mFlms::Page Load (0.1ms)[0m [1mSELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1[0m
|
|
84099
|
+
[1m[35mFlms::Block Load (0.1ms)[0m SELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1 [["id", "1"]]
|
|
84100
|
+
[1m[36mFlms::Layer Load (0.1ms)[0m [1mSELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1[0m
|
|
84101
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (81.9ms)
|
|
84102
|
+
Completed 200 OK in 129ms (Views: 126.5ms | ActiveRecord: 0.7ms)
|
|
84103
|
+
|
|
84104
|
+
|
|
84105
|
+
Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
|
|
84106
|
+
Served asset /flms/blocks/show.css - 304 Not Modified (0ms)
|
|
84107
|
+
|
|
84108
|
+
|
|
84109
|
+
Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
|
|
84110
|
+
Served asset /flms/blocks/index.css - 304 Not Modified (0ms)
|
|
84111
|
+
|
|
84112
|
+
|
|
84113
|
+
Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
|
|
84114
|
+
Served asset /flms/home.css - 304 Not Modified (0ms)
|
|
84115
|
+
|
|
84116
|
+
|
|
84117
|
+
Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
|
|
84118
|
+
Served asset /jquery-ui.css - 304 Not Modified (0ms)
|
|
84119
|
+
|
|
84120
|
+
|
|
84121
|
+
Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
|
|
84122
|
+
Served asset /flms/login.css - 304 Not Modified (0ms)
|
|
84123
|
+
|
|
84124
|
+
|
|
84125
|
+
Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
|
|
84126
|
+
Served asset /flms/layout.css - 304 Not Modified (0ms)
|
|
84127
|
+
|
|
84128
|
+
|
|
84129
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
|
|
84130
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84131
|
+
|
|
84132
|
+
|
|
84133
|
+
Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
|
|
84134
|
+
Served asset /bootstrapSwitch.css - 304 Not Modified (0ms)
|
|
84135
|
+
|
|
84136
|
+
|
|
84137
|
+
Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
|
|
84138
|
+
Served asset /flms/admin.css - 304 Not Modified (0ms)
|
|
84139
|
+
|
|
84140
|
+
|
|
84141
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
|
|
84142
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
84143
|
+
|
|
84144
|
+
|
|
84145
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
|
|
84146
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
84147
|
+
|
|
84148
|
+
|
|
84149
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
|
|
84150
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
|
84151
|
+
|
|
84152
|
+
|
|
84153
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
|
|
84154
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
84155
|
+
|
|
84156
|
+
|
|
84157
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
|
|
84158
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
84159
|
+
|
|
84160
|
+
|
|
84161
|
+
Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
|
|
84162
|
+
Served asset /flms/blocks/index/block.js - 304 Not Modified (0ms)
|
|
84163
|
+
|
|
84164
|
+
|
|
84165
|
+
Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
|
|
84166
|
+
Served asset /flms/blocks/index/block_list.js - 304 Not Modified (0ms)
|
|
84167
|
+
|
|
84168
|
+
|
|
84169
|
+
Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
|
|
84170
|
+
Served asset /flms/blocks/index/index.js - 304 Not Modified (0ms)
|
|
84171
|
+
|
|
84172
|
+
|
|
84173
|
+
Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
|
|
84174
|
+
Served asset /flms/bootstrap.js - 304 Not Modified (0ms)
|
|
84175
|
+
|
|
84176
|
+
|
|
84177
|
+
Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
|
|
84178
|
+
Served asset /flms/layout.js - 304 Not Modified (0ms)
|
|
84179
|
+
|
|
84180
|
+
|
|
84181
|
+
Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
|
|
84182
|
+
Served asset /bootstrapSwitch.js - 304 Not Modified (0ms)
|
|
84183
|
+
|
|
84184
|
+
|
|
84185
|
+
Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
|
|
84186
|
+
Served asset /flms/admin.js - 304 Not Modified (0ms)
|
|
84187
|
+
Connecting to database specified by database.yml
|
|
84188
|
+
|
|
84189
|
+
|
|
84190
|
+
Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 11:43:00 -0700
|
|
84191
|
+
Processing by Flms::BlocksController#show as HTML
|
|
84192
|
+
Parameters: {"page_id"=>"home", "id"=>"1"}
|
|
84193
|
+
[1m[36mFlms::User Load (0.6ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
84194
|
+
[1m[35mFlms::Page Load (0.6ms)[0m SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
|
|
84195
|
+
[1m[36mFlms::Block Load (0.5ms)[0m [1mSELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
84196
|
+
[1m[35mFlms::Layer Load (0.6ms)[0m SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
|
|
84197
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (161.9ms)
|
|
84198
|
+
Compiled flms/blocks/index.css (318ms) (pid 1100)
|
|
84199
|
+
Compiled flms/blocks/show.css (1ms) (pid 1100)
|
|
84200
|
+
Compiled flms/home.css (3ms) (pid 1100)
|
|
84201
|
+
Compiled flms/layout.css (3ms) (pid 1100)
|
|
84202
|
+
Compiled flms/login.css (5ms) (pid 1100)
|
|
84203
|
+
Compiled jquery-ui.css (0ms) (pid 1100)
|
|
84204
|
+
Compiled bootstrap.css (0ms) (pid 1100)
|
|
84205
|
+
Compiled bootstrapSwitch.css (0ms) (pid 1100)
|
|
84206
|
+
Compiled flms/admin.css (384ms) (pid 1100)
|
|
84207
|
+
Compiled jquery.js (2ms) (pid 1100)
|
|
84208
|
+
Compiled jquery_ujs.js (0ms) (pid 1100)
|
|
84209
|
+
Compiled jquery-ui.js (44ms) (pid 1100)
|
|
84210
|
+
Compiled modularity/tools/string_tools.js (156ms) (pid 1100)
|
|
84211
|
+
Compiled modularity/modularity.js (491ms) (pid 1100)
|
|
84212
|
+
Compiled flms/blocks/index/block.js (214ms) (pid 1100)
|
|
84213
|
+
Compiled flms/blocks/index/block_list.js (125ms) (pid 1100)
|
|
84214
|
+
Compiled flms/blocks/index/index.js (198ms) (pid 1100)
|
|
84215
|
+
Compiled flms/bootstrap.js (0ms) (pid 1100)
|
|
84216
|
+
Compiled flms/layout.js (145ms) (pid 1100)
|
|
84217
|
+
Compiled bootstrapSwitch.js (0ms) (pid 1100)
|
|
84218
|
+
Compiled flms/admin.js (1300ms) (pid 1100)
|
|
84219
|
+
Completed 200 OK in 2274ms (Views: 2156.3ms | ActiveRecord: 5.4ms)
|
|
84220
|
+
|
|
84221
|
+
|
|
84222
|
+
Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 11:43:02 -0700
|
|
84223
|
+
Processing by Flms::BlocksController#show as HTML
|
|
84224
|
+
Parameters: {"page_id"=>"home", "id"=>"1"}
|
|
84225
|
+
[1m[36mFlms::User Load (0.3ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
84226
|
+
[1m[35mFlms::Page Load (0.2ms)[0m SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
|
|
84227
|
+
[1m[36mFlms::Block Load (0.1ms)[0m [1mSELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
84228
|
+
[1m[35mFlms::Layer Load (0.1ms)[0m SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
|
|
84229
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (3.0ms)
|
|
84230
|
+
Completed 200 OK in 124ms (Views: 120.0ms | ActiveRecord: 0.7ms)
|
|
84231
|
+
|
|
84232
|
+
|
|
84233
|
+
Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
|
|
84234
|
+
Served asset /flms/blocks/index.css - 304 Not Modified (4ms)
|
|
84235
|
+
|
|
84236
|
+
|
|
84237
|
+
Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
|
|
84238
|
+
Served asset /flms/home.css - 304 Not Modified (49ms)
|
|
84239
|
+
|
|
84240
|
+
|
|
84241
|
+
Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
|
|
84242
|
+
Served asset /flms/layout.css - 304 Not Modified (2ms)
|
|
84243
|
+
|
|
84244
|
+
|
|
84245
|
+
Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
|
|
84246
|
+
Served asset /flms/blocks/show.css - 304 Not Modified (4ms)
|
|
84247
|
+
|
|
84248
|
+
|
|
84249
|
+
Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
|
|
84250
|
+
Served asset /flms/login.css - 304 Not Modified (2ms)
|
|
84251
|
+
|
|
84252
|
+
|
|
84253
|
+
Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
|
|
84254
|
+
Served asset /jquery-ui.css - 304 Not Modified (1ms)
|
|
84255
|
+
|
|
84256
|
+
|
|
84257
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
|
|
84258
|
+
Served asset /bootstrap.css - 200 OK (3ms)
|
|
84259
|
+
|
|
84260
|
+
|
|
84261
|
+
Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
|
|
84262
|
+
Served asset /bootstrapSwitch.css - 304 Not Modified (4ms)
|
|
84263
|
+
|
|
84264
|
+
|
|
84265
|
+
Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
|
|
84266
|
+
Served asset /flms/admin.css - 304 Not Modified (10ms)
|
|
84267
|
+
|
|
84268
|
+
|
|
84269
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
|
|
84270
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
84271
|
+
|
|
84272
|
+
|
|
84273
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
|
|
84274
|
+
Served asset /jquery_ujs.js - 304 Not Modified (3ms)
|
|
84275
|
+
|
|
84276
|
+
|
|
84277
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
|
|
84278
|
+
Served asset /jquery-ui.js - 304 Not Modified (4ms)
|
|
84279
|
+
|
|
84280
|
+
|
|
84281
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
|
|
84282
|
+
Served asset /modularity/modularity.js - 304 Not Modified (4ms)
|
|
84283
|
+
|
|
84284
|
+
|
|
84285
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
|
|
84286
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (2ms)
|
|
84287
|
+
|
|
84288
|
+
|
|
84289
|
+
Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
|
|
84290
|
+
Served asset /flms/blocks/index/block.js - 304 Not Modified (2ms)
|
|
84291
|
+
|
|
84292
|
+
|
|
84293
|
+
Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
|
|
84294
|
+
Served asset /flms/blocks/index/block_list.js - 304 Not Modified (2ms)
|
|
84295
|
+
|
|
84296
|
+
|
|
84297
|
+
Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
|
|
84298
|
+
Served asset /flms/blocks/index/index.js - 304 Not Modified (2ms)
|
|
84299
|
+
|
|
84300
|
+
|
|
84301
|
+
Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
|
|
84302
|
+
Served asset /flms/bootstrap.js - 304 Not Modified (1ms)
|
|
84303
|
+
|
|
84304
|
+
|
|
84305
|
+
Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
|
|
84306
|
+
Served asset /flms/layout.js - 304 Not Modified (1ms)
|
|
84307
|
+
|
|
84308
|
+
|
|
84309
|
+
Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
|
|
84310
|
+
Served asset /bootstrapSwitch.js - 304 Not Modified (38ms)
|
|
84311
|
+
|
|
84312
|
+
|
|
84313
|
+
Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
|
|
84314
|
+
Served asset /flms/admin.js - 304 Not Modified (11ms)
|
|
84315
|
+
|
|
84316
|
+
|
|
84317
|
+
Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 11:43:40 -0700
|
|
84318
|
+
Processing by Flms::BlocksController#show as HTML
|
|
84319
|
+
Parameters: {"page_id"=>"home", "id"=>"1"}
|
|
84320
|
+
[1m[36mFlms::User Load (0.2ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
84321
|
+
[1m[35mFlms::Page Load (0.1ms)[0m SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
|
|
84322
|
+
[1m[36mFlms::Block Load (0.1ms)[0m [1mSELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
84323
|
+
[1m[35mFlms::Layer Load (0.1ms)[0m SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
|
|
84324
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (2.1ms)
|
|
84325
|
+
Compiled bootstrap.css (1146ms) (pid 1100)
|
|
84326
|
+
Compiled flms/admin.css (1156ms) (pid 1100)
|
|
84327
|
+
Completed 200 OK in 1324ms (Views: 1322.2ms | ActiveRecord: 0.4ms)
|
|
84328
|
+
|
|
84329
|
+
|
|
84330
|
+
Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
|
|
84331
|
+
Served asset /flms/blocks/index.css - 304 Not Modified (0ms)
|
|
84332
|
+
|
|
84333
|
+
|
|
84334
|
+
Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
|
|
84335
|
+
Served asset /flms/home.css - 304 Not Modified (0ms)
|
|
84336
|
+
|
|
84337
|
+
|
|
84338
|
+
Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
|
|
84339
|
+
Served asset /flms/layout.css - 304 Not Modified (0ms)
|
|
84340
|
+
|
|
84341
|
+
|
|
84342
|
+
Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
|
|
84343
|
+
Served asset /flms/blocks/show.css - 304 Not Modified (0ms)
|
|
84344
|
+
|
|
84345
|
+
|
|
84346
|
+
Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
|
|
84347
|
+
Served asset /jquery-ui.css - 304 Not Modified (0ms)
|
|
84348
|
+
|
|
84349
|
+
|
|
84350
|
+
Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
|
|
84351
|
+
Served asset /flms/login.css - 304 Not Modified (0ms)
|
|
84352
|
+
|
|
84353
|
+
|
|
84354
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
|
|
84355
|
+
Served asset /bootstrap.css - 200 OK (3ms)
|
|
84356
|
+
|
|
84357
|
+
|
|
84358
|
+
Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
|
|
84359
|
+
Served asset /flms/admin.css - 304 Not Modified (13ms)
|
|
84360
|
+
|
|
84361
|
+
|
|
84362
|
+
Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
|
|
84363
|
+
Served asset /bootstrapSwitch.css - 304 Not Modified (0ms)
|
|
84364
|
+
|
|
84365
|
+
|
|
84366
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
|
|
84367
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
84368
|
+
|
|
84369
|
+
|
|
84370
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
|
|
84371
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
84372
|
+
|
|
84373
|
+
|
|
84374
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
|
|
84375
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
|
84376
|
+
|
|
84377
|
+
|
|
84378
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
|
|
84379
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
84380
|
+
|
|
84381
|
+
|
|
84382
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
|
|
84383
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
84384
|
+
|
|
84385
|
+
|
|
84386
|
+
Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
|
|
84387
|
+
Served asset /flms/blocks/index/block.js - 304 Not Modified (0ms)
|
|
84388
|
+
|
|
84389
|
+
|
|
84390
|
+
Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
|
|
84391
|
+
Served asset /flms/blocks/index/index.js - 304 Not Modified (0ms)
|
|
84392
|
+
|
|
84393
|
+
|
|
84394
|
+
Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
|
|
84395
|
+
Served asset /flms/blocks/index/block_list.js - 304 Not Modified (0ms)
|
|
84396
|
+
|
|
84397
|
+
|
|
84398
|
+
Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
|
|
84399
|
+
Served asset /flms/bootstrap.js - 304 Not Modified (0ms)
|
|
84400
|
+
|
|
84401
|
+
|
|
84402
|
+
Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
|
|
84403
|
+
Served asset /flms/layout.js - 304 Not Modified (0ms)
|
|
84404
|
+
|
|
84405
|
+
|
|
84406
|
+
Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
|
|
84407
|
+
Served asset /bootstrapSwitch.js - 304 Not Modified (0ms)
|
|
84408
|
+
|
|
84409
|
+
|
|
84410
|
+
Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
|
|
84411
|
+
Served asset /flms/admin.js - 304 Not Modified (0ms)
|
|
84412
|
+
|
|
84413
|
+
|
|
84414
|
+
Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
|
|
84415
|
+
Processing by Flms::BlocksController#show as HTML
|
|
84416
|
+
Parameters: {"page_id"=>"home", "id"=>"1"}
|
|
84417
|
+
[1m[36mFlms::User Load (0.1ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
84418
|
+
[1m[35mFlms::Page Load (0.1ms)[0m SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
|
|
84419
|
+
[1m[36mFlms::Block Load (0.1ms)[0m [1mSELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
84420
|
+
[1m[35mFlms::Layer Load (0.1ms)[0m SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
|
|
84421
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (2.1ms)
|
|
84422
|
+
Completed 200 OK in 104ms (Views: 101.8ms | ActiveRecord: 0.4ms)
|
|
84423
|
+
|
|
84424
|
+
|
|
84425
|
+
Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
|
|
84426
|
+
Served asset /flms/blocks/index.css - 304 Not Modified (0ms)
|
|
84427
|
+
|
|
84428
|
+
|
|
84429
|
+
Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
|
|
84430
|
+
Served asset /flms/blocks/show.css - 304 Not Modified (0ms)
|
|
84431
|
+
|
|
84432
|
+
|
|
84433
|
+
Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
|
|
84434
|
+
Served asset /flms/layout.css - 304 Not Modified (0ms)
|
|
84435
|
+
|
|
84436
|
+
|
|
84437
|
+
Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
|
|
84438
|
+
Served asset /flms/login.css - 304 Not Modified (0ms)
|
|
84439
|
+
|
|
84440
|
+
|
|
84441
|
+
Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
|
|
84442
|
+
Served asset /flms/home.css - 304 Not Modified (0ms)
|
|
84443
|
+
|
|
84444
|
+
|
|
84445
|
+
Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
|
|
84446
|
+
Served asset /jquery-ui.css - 304 Not Modified (0ms)
|
|
84447
|
+
|
|
84448
|
+
|
|
84449
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
|
|
84450
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84451
|
+
|
|
84452
|
+
|
|
84453
|
+
Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
|
|
84454
|
+
Served asset /bootstrapSwitch.css - 304 Not Modified (0ms)
|
|
84455
|
+
|
|
84456
|
+
|
|
84457
|
+
Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
|
|
84458
|
+
Served asset /flms/admin.css - 304 Not Modified (0ms)
|
|
84459
|
+
|
|
84460
|
+
|
|
84461
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
|
|
84462
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
84463
|
+
|
|
84464
|
+
|
|
84465
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
|
|
84466
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
84467
|
+
|
|
84468
|
+
|
|
84469
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
|
|
84470
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
|
84471
|
+
|
|
84472
|
+
|
|
84473
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
|
|
84474
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
84475
|
+
|
|
84476
|
+
|
|
84477
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
|
|
84478
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
84479
|
+
|
|
84480
|
+
|
|
84481
|
+
Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
|
|
84482
|
+
Served asset /flms/blocks/index/block.js - 304 Not Modified (0ms)
|
|
84483
|
+
|
|
84484
|
+
|
|
84485
|
+
Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
|
|
84486
|
+
Served asset /flms/blocks/index/block_list.js - 304 Not Modified (0ms)
|
|
84487
|
+
|
|
84488
|
+
|
|
84489
|
+
Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
|
|
84490
|
+
Served asset /flms/blocks/index/index.js - 304 Not Modified (0ms)
|
|
84491
|
+
|
|
84492
|
+
|
|
84493
|
+
Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
|
|
84494
|
+
Served asset /flms/bootstrap.js - 304 Not Modified (0ms)
|
|
84495
|
+
|
|
84496
|
+
|
|
84497
|
+
Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
|
|
84498
|
+
Served asset /flms/layout.js - 304 Not Modified (0ms)
|
|
84499
|
+
|
|
84500
|
+
|
|
84501
|
+
Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
|
|
84502
|
+
Served asset /bootstrapSwitch.js - 304 Not Modified (0ms)
|
|
84503
|
+
|
|
84504
|
+
|
|
84505
|
+
Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
|
|
84506
|
+
Served asset /flms/admin.js - 304 Not Modified (0ms)
|
|
84507
|
+
|
|
84508
|
+
|
|
84509
|
+
Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
|
|
84510
|
+
Processing by Flms::BlocksController#show as HTML
|
|
84511
|
+
Parameters: {"page_id"=>"home", "id"=>"1"}
|
|
84512
|
+
[1m[36mFlms::User Load (0.2ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
84513
|
+
[1m[35mFlms::Page Load (0.1ms)[0m SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
|
|
84514
|
+
[1m[36mFlms::Block Load (0.1ms)[0m [1mSELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
84515
|
+
[1m[35mFlms::Layer Load (0.1ms)[0m SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
|
|
84516
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (2.1ms)
|
|
84517
|
+
Completed 200 OK in 104ms (Views: 102.5ms | ActiveRecord: 0.4ms)
|
|
84518
|
+
|
|
84519
|
+
|
|
84520
|
+
Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
|
|
84521
|
+
Served asset /flms/blocks/show.css - 304 Not Modified (0ms)
|
|
84522
|
+
|
|
84523
|
+
|
|
84524
|
+
Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
|
|
84525
|
+
Served asset /flms/blocks/index.css - 304 Not Modified (0ms)
|
|
84526
|
+
|
|
84527
|
+
|
|
84528
|
+
Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
|
|
84529
|
+
Served asset /flms/layout.css - 304 Not Modified (0ms)
|
|
84530
|
+
|
|
84531
|
+
|
|
84532
|
+
Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
|
|
84533
|
+
Served asset /flms/home.css - 304 Not Modified (0ms)
|
|
84534
|
+
|
|
84535
|
+
|
|
84536
|
+
Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
|
|
84537
|
+
Served asset /flms/login.css - 304 Not Modified (0ms)
|
|
84538
|
+
|
|
84539
|
+
|
|
84540
|
+
Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
|
|
84541
|
+
Served asset /jquery-ui.css - 304 Not Modified (0ms)
|
|
84542
|
+
|
|
84543
|
+
|
|
84544
|
+
Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
|
|
84545
|
+
Served asset /bootstrapSwitch.css - 304 Not Modified (0ms)
|
|
84546
|
+
|
|
84547
|
+
|
|
84548
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
|
|
84549
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84550
|
+
|
|
84551
|
+
|
|
84552
|
+
Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
|
|
84553
|
+
Served asset /flms/admin.css - 304 Not Modified (0ms)
|
|
84554
|
+
|
|
84555
|
+
|
|
84556
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
|
|
84557
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
84558
|
+
|
|
84559
|
+
|
|
84560
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
|
|
84561
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
84562
|
+
|
|
84563
|
+
|
|
84564
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
|
|
84565
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
|
84566
|
+
|
|
84567
|
+
|
|
84568
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
|
|
84569
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
84570
|
+
|
|
84571
|
+
|
|
84572
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
|
|
84573
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
84574
|
+
|
|
84575
|
+
|
|
84576
|
+
Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
|
|
84577
|
+
Served asset /flms/blocks/index/block.js - 304 Not Modified (0ms)
|
|
84578
|
+
|
|
84579
|
+
|
|
84580
|
+
Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
|
|
84581
|
+
Served asset /flms/blocks/index/block_list.js - 304 Not Modified (0ms)
|
|
84582
|
+
|
|
84583
|
+
|
|
84584
|
+
Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
|
|
84585
|
+
Served asset /flms/blocks/index/index.js - 304 Not Modified (0ms)
|
|
84586
|
+
|
|
84587
|
+
|
|
84588
|
+
Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
|
|
84589
|
+
Served asset /flms/bootstrap.js - 304 Not Modified (0ms)
|
|
84590
|
+
|
|
84591
|
+
|
|
84592
|
+
Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
|
|
84593
|
+
Served asset /flms/layout.js - 304 Not Modified (0ms)
|
|
84594
|
+
|
|
84595
|
+
|
|
84596
|
+
Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
|
|
84597
|
+
Served asset /bootstrapSwitch.js - 304 Not Modified (0ms)
|
|
84598
|
+
|
|
84599
|
+
|
|
84600
|
+
Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
|
|
84601
|
+
Served asset /flms/admin.js - 304 Not Modified (0ms)
|
|
84602
|
+
|
|
84603
|
+
|
|
84604
|
+
Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 11:44:27 -0700
|
|
84605
|
+
Processing by Flms::BlocksController#show as HTML
|
|
84606
|
+
Parameters: {"page_id"=>"home", "id"=>"1"}
|
|
84607
|
+
[1m[36mFlms::User Load (0.2ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
84608
|
+
[1m[35mFlms::Page Load (0.1ms)[0m SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
|
|
84609
|
+
[1m[36mFlms::Block Load (0.1ms)[0m [1mSELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
84610
|
+
[1m[35mFlms::Layer Load (0.2ms)[0m SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
|
|
84611
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (3.3ms)
|
|
84612
|
+
Compiled bootstrap.css (1136ms) (pid 1100)
|
|
84613
|
+
Compiled flms/admin.css (4ms) (pid 1100)
|
|
84614
|
+
Completed 200 OK in 1313ms (Views: 1310.6ms | ActiveRecord: 0.5ms)
|
|
84615
|
+
|
|
84616
|
+
|
|
84617
|
+
Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
|
|
84618
|
+
Served asset /flms/blocks/index.css - 304 Not Modified (0ms)
|
|
84619
|
+
|
|
84620
|
+
|
|
84621
|
+
Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
|
|
84622
|
+
Served asset /flms/blocks/show.css - 304 Not Modified (0ms)
|
|
84623
|
+
|
|
84624
|
+
|
|
84625
|
+
Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
|
|
84626
|
+
Served asset /flms/home.css - 304 Not Modified (0ms)
|
|
84627
|
+
|
|
84628
|
+
|
|
84629
|
+
Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
|
|
84630
|
+
Served asset /flms/layout.css - 304 Not Modified (0ms)
|
|
84631
|
+
|
|
84632
|
+
|
|
84633
|
+
Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
|
|
84634
|
+
Served asset /flms/login.css - 304 Not Modified (0ms)
|
|
84635
|
+
|
|
84636
|
+
|
|
84637
|
+
Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
|
|
84638
|
+
Served asset /jquery-ui.css - 304 Not Modified (0ms)
|
|
84639
|
+
|
|
84640
|
+
|
|
84641
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
|
|
84642
|
+
Served asset /bootstrap.css - 200 OK (4ms)
|
|
84643
|
+
|
|
84644
|
+
|
|
84645
|
+
Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
|
|
84646
|
+
Served asset /bootstrapSwitch.css - 304 Not Modified (0ms)
|
|
84647
|
+
|
|
84648
|
+
|
|
84649
|
+
Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
|
|
84650
|
+
Served asset /flms/admin.css - 304 Not Modified (12ms)
|
|
84651
|
+
|
|
84652
|
+
|
|
84653
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
|
|
84654
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
84655
|
+
|
|
84656
|
+
|
|
84657
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
|
|
84658
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
84659
|
+
|
|
84660
|
+
|
|
84661
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
|
|
84662
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
|
84663
|
+
|
|
84664
|
+
|
|
84665
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
|
|
84666
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
84667
|
+
|
|
84668
|
+
|
|
84669
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
|
|
84670
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
84671
|
+
|
|
84672
|
+
|
|
84673
|
+
Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
|
|
84674
|
+
Served asset /flms/blocks/index/block.js - 304 Not Modified (0ms)
|
|
84675
|
+
|
|
84676
|
+
|
|
84677
|
+
Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
|
|
84678
|
+
Served asset /flms/blocks/index/block_list.js - 304 Not Modified (0ms)
|
|
84679
|
+
|
|
84680
|
+
|
|
84681
|
+
Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
|
|
84682
|
+
Served asset /flms/blocks/index/index.js - 304 Not Modified (0ms)
|
|
84683
|
+
|
|
84684
|
+
|
|
84685
|
+
Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
|
|
84686
|
+
Served asset /flms/bootstrap.js - 304 Not Modified (0ms)
|
|
84687
|
+
|
|
84688
|
+
|
|
84689
|
+
Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
|
|
84690
|
+
Served asset /flms/layout.js - 304 Not Modified (0ms)
|
|
84691
|
+
|
|
84692
|
+
|
|
84693
|
+
Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
|
|
84694
|
+
Served asset /bootstrapSwitch.js - 304 Not Modified (0ms)
|
|
84695
|
+
|
|
84696
|
+
|
|
84697
|
+
Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
|
|
84698
|
+
Served asset /flms/admin.js - 304 Not Modified (0ms)
|
|
84699
|
+
|
|
84700
|
+
|
|
84701
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:44:43 -0700
|
|
84702
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84703
|
+
|
|
84704
|
+
|
|
84705
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:44:51 -0700
|
|
84706
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84707
|
+
|
|
84708
|
+
|
|
84709
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:44:52 -0700
|
|
84710
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84711
|
+
Connecting to database specified by database.yml
|
|
84712
|
+
|
|
84713
|
+
|
|
84714
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:45:03 -0700
|
|
84715
|
+
Served asset /bootstrap.css - 200 OK (3ms)
|
|
84716
|
+
|
|
84717
|
+
|
|
84718
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:45:04 -0700
|
|
84719
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84720
|
+
|
|
84721
|
+
|
|
84722
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:45:05 -0700
|
|
84723
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84724
|
+
|
|
84725
|
+
|
|
84726
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:45:06 -0700
|
|
84727
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84728
|
+
|
|
84729
|
+
|
|
84730
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:45:07 -0700
|
|
84731
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84732
|
+
|
|
84733
|
+
|
|
84734
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:45:59 -0700
|
|
84735
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84736
|
+
|
|
84737
|
+
|
|
84738
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:46:00 -0700
|
|
84739
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84740
|
+
|
|
84741
|
+
|
|
84742
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:46:01 -0700
|
|
84743
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84744
|
+
|
|
84745
|
+
|
|
84746
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:46:01 -0700
|
|
84747
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84748
|
+
|
|
84749
|
+
|
|
84750
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:46:01 -0700
|
|
84751
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84752
|
+
|
|
84753
|
+
|
|
84754
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:46:01 -0700
|
|
84755
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84756
|
+
|
|
84757
|
+
|
|
84758
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:46:01 -0700
|
|
84759
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84760
|
+
|
|
84761
|
+
|
|
84762
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:46:01 -0700
|
|
84763
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84764
|
+
|
|
84765
|
+
|
|
84766
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:46:02 -0700
|
|
84767
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84768
|
+
|
|
84769
|
+
|
|
84770
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:46:02 -0700
|
|
84771
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84772
|
+
|
|
84773
|
+
|
|
84774
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:46:02 -0700
|
|
84775
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84776
|
+
|
|
84777
|
+
|
|
84778
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:46:02 -0700
|
|
84779
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84780
|
+
|
|
84781
|
+
|
|
84782
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:46:02 -0700
|
|
84783
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84784
|
+
|
|
84785
|
+
|
|
84786
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:47:49 -0700
|
|
84787
|
+
Served asset /bootstrap.css - 304 Not Modified (1ms)
|
|
84788
|
+
|
|
84789
|
+
|
|
84790
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:47:50 -0700
|
|
84791
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84792
|
+
|
|
84793
|
+
|
|
84794
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:47:51 -0700
|
|
84795
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84796
|
+
|
|
84797
|
+
|
|
84798
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:49:32 -0700
|
|
84799
|
+
Compiled bootstrap.css (1309ms) (pid 1202)
|
|
84800
|
+
Served asset /bootstrap.css - 200 OK (1317ms)
|
|
84801
|
+
|
|
84802
|
+
|
|
84803
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:49:33 -0700
|
|
84804
|
+
Served asset /bootstrap.css - 200 OK (0ms)
|
|
84805
|
+
|
|
84806
|
+
|
|
84807
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:49:33 -0700
|
|
84808
|
+
Served asset /bootstrap.css - 200 OK (0ms)
|
|
84809
|
+
|
|
84810
|
+
|
|
84811
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:49:33 -0700
|
|
84812
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84813
|
+
|
|
84814
|
+
|
|
84815
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:49:33 -0700
|
|
84816
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84817
|
+
|
|
84818
|
+
|
|
84819
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:49:33 -0700
|
|
84820
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84821
|
+
|
|
84822
|
+
|
|
84823
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:49:34 -0700
|
|
84824
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84825
|
+
|
|
84826
|
+
|
|
84827
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:49:34 -0700
|
|
84828
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84829
|
+
|
|
84830
|
+
|
|
84831
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:49:35 -0700
|
|
84832
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84833
|
+
|
|
84834
|
+
|
|
84835
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:49:37 -0700
|
|
84836
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84837
|
+
|
|
84838
|
+
|
|
84839
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:49:39 -0700
|
|
84840
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84841
|
+
|
|
84842
|
+
|
|
84843
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:50:30 -0700
|
|
84844
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84845
|
+
|
|
84846
|
+
|
|
84847
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:50:48 -0700
|
|
84848
|
+
Compiled bootstrap.css (1147ms) (pid 1202)
|
|
84849
|
+
Served asset /bootstrap.css - 200 OK (1152ms)
|
|
84850
|
+
|
|
84851
|
+
|
|
84852
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:50:51 -0700
|
|
84853
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84854
|
+
|
|
84855
|
+
|
|
84856
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:50:54 -0700
|
|
84857
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84858
|
+
|
|
84859
|
+
|
|
84860
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:51:09 -0700
|
|
84861
|
+
Compiled bootstrap.css (1234ms) (pid 1202)
|
|
84862
|
+
Served asset /bootstrap.css - 304 Not Modified (1239ms)
|
|
84863
|
+
|
|
84864
|
+
|
|
84865
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:51:11 -0700
|
|
84866
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84867
|
+
|
|
84868
|
+
|
|
84869
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:51:12 -0700
|
|
84870
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84871
|
+
|
|
84872
|
+
|
|
84873
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:51:13 -0700
|
|
84874
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84875
|
+
|
|
84876
|
+
|
|
84877
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:51:13 -0700
|
|
84878
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84879
|
+
|
|
84880
|
+
|
|
84881
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:51:43 -0700
|
|
84882
|
+
Compiled bootstrap.css (1097ms) (pid 1202)
|
|
84883
|
+
Served asset /bootstrap.css - 200 OK (1103ms)
|
|
84884
|
+
|
|
84885
|
+
|
|
84886
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:51:44 -0700
|
|
84887
|
+
Served asset /bootstrap.css - 200 OK (0ms)
|
|
84888
|
+
|
|
84889
|
+
|
|
84890
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:51:45 -0700
|
|
84891
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84892
|
+
|
|
84893
|
+
|
|
84894
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:51:46 -0700
|
|
84895
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84896
|
+
|
|
84897
|
+
|
|
84898
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:51:46 -0700
|
|
84899
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84900
|
+
|
|
84901
|
+
|
|
84902
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:51:51 -0700
|
|
84903
|
+
Compiled bootstrap.css (1090ms) (pid 1202)
|
|
84904
|
+
Served asset /bootstrap.css - 200 OK (1095ms)
|
|
84905
|
+
|
|
84906
|
+
|
|
84907
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:51:53 -0700
|
|
84908
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84909
|
+
|
|
84910
|
+
|
|
84911
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:51:54 -0700
|
|
84912
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84913
|
+
|
|
84914
|
+
|
|
84915
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:51:55 -0700
|
|
84916
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84917
|
+
|
|
84918
|
+
|
|
84919
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:52:20 -0700
|
|
84920
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84921
|
+
|
|
84922
|
+
|
|
84923
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:52:22 -0700
|
|
84924
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84925
|
+
|
|
84926
|
+
|
|
84927
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:52:23 -0700
|
|
84928
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84929
|
+
|
|
84930
|
+
|
|
84931
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:52:23 -0700
|
|
84932
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84933
|
+
|
|
84934
|
+
|
|
84935
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:53:14 -0700
|
|
84936
|
+
Compiled bootstrap.css (1130ms) (pid 1202)
|
|
84937
|
+
Served asset /bootstrap.css - 200 OK (1134ms)
|
|
84938
|
+
|
|
84939
|
+
|
|
84940
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:53:39 -0700
|
|
84941
|
+
Compiled bootstrap.css (1111ms) (pid 1202)
|
|
84942
|
+
Served asset /bootstrap.css - 200 OK (1115ms)
|
|
84943
|
+
|
|
84944
|
+
|
|
84945
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:53:53 -0700
|
|
84946
|
+
Compiled bootstrap.css (1102ms) (pid 1202)
|
|
84947
|
+
Served asset /bootstrap.css - 200 OK (1106ms)
|
|
84948
|
+
|
|
84949
|
+
|
|
84950
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:53:58 -0700
|
|
84951
|
+
Compiled bootstrap.css (1095ms) (pid 1202)
|
|
84952
|
+
Served asset /bootstrap.css - 200 OK (1100ms)
|
|
84953
|
+
|
|
84954
|
+
|
|
84955
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:54:51 -0700
|
|
84956
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84957
|
+
|
|
84958
|
+
|
|
84959
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:54:52 -0700
|
|
84960
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84961
|
+
|
|
84962
|
+
|
|
84963
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:54:56 -0700
|
|
84964
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84965
|
+
|
|
84966
|
+
|
|
84967
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:00:43 -0700
|
|
84968
|
+
Compiled bootstrap.css (1240ms) (pid 1202)
|
|
84969
|
+
Served asset /bootstrap.css - 200 OK (1245ms)
|
|
84970
|
+
|
|
84971
|
+
|
|
84972
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:00:46 -0700
|
|
84973
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84974
|
+
|
|
84975
|
+
|
|
84976
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:00:47 -0700
|
|
84977
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84978
|
+
|
|
84979
|
+
|
|
84980
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:00:48 -0700
|
|
84981
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84982
|
+
|
|
84983
|
+
|
|
84984
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:01:35 -0700
|
|
84985
|
+
Compiled bootstrap.css (1156ms) (pid 1202)
|
|
84986
|
+
Served asset /bootstrap.css - 200 OK (1160ms)
|
|
84987
|
+
|
|
84988
|
+
|
|
84989
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:01:38 -0700
|
|
84990
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
84991
|
+
|
|
84992
|
+
|
|
84993
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:06:30 -0700
|
|
84994
|
+
Error compiling asset bootstrap.css:
|
|
84995
|
+
Sass::SyntaxError: Invalid CSS after "...icons-halflings": expected ";", was ".png;"
|
|
84996
|
+
(in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.scss.erb)
|
|
84997
|
+
Served asset /bootstrap.css - 500 Internal Server Error
|
|
84998
|
+
|
|
84999
|
+
|
|
85000
|
+
|
|
85001
|
+
|
|
85002
|
+
Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 12:06:33 -0700
|
|
85003
|
+
Processing by Flms::BlocksController#show as HTML
|
|
85004
|
+
Parameters: {"page_id"=>"home", "id"=>"1"}
|
|
85005
|
+
[1m[36mFlms::User Load (0.1ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
85006
|
+
[1m[35mFlms::Page Load (0.1ms)[0m SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
|
|
85007
|
+
[1m[36mFlms::Block Load (0.2ms)[0m [1mSELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
85008
|
+
[1m[35mFlms::Layer Load (0.1ms)[0m SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
|
|
85009
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (136.1ms)
|
|
85010
|
+
Completed 500 Internal Server Error in 601ms
|
|
85011
|
+
|
|
85012
|
+
ActionView::Template::Error (Invalid CSS after "...icons-halflings": expected ";", was ".png;"
|
|
85013
|
+
(in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.scss.erb)):
|
|
85014
|
+
3: %head
|
|
85015
|
+
4: %title #{Flms.application_name} administration
|
|
85016
|
+
5: %meta{name:"viewport", content:"width=device-width, initial-scale=1.0"}
|
|
85017
|
+
6: = stylesheet_link_tag 'flms/admin', media: 'all'
|
|
85018
|
+
7: = csrf_meta_tags
|
|
85019
|
+
8:
|
|
85020
|
+
9: %body{class: "#{params[:controller].sub('/', ' ')} #{params[:action]}"}
|
|
85021
|
+
/Users/kevin/flms/vendor/assets/stylesheets/bootstrap.scss.erb:2288
|
|
85022
|
+
sass (3.2.7) lib/sass/scss/parser.rb:1148:in `expected'
|
|
85023
|
+
sass (3.2.7) lib/sass/scss/parser.rb:1084:in `expected'
|
|
85024
|
+
sass (3.2.7) lib/sass/scss/parser.rb:1079:in `tok!'
|
|
85025
|
+
sass (3.2.7) lib/sass/scss/parser.rb:586:in `block in declaration_or_ruleset'
|
|
85026
|
+
sass (3.2.7) lib/sass/scss/parser.rb:1122:in `call'
|
|
85027
|
+
sass (3.2.7) lib/sass/scss/parser.rb:1122:in `rethrow'
|
|
85028
|
+
sass (3.2.7) lib/sass/scss/parser.rb:592:in `declaration_or_ruleset'
|
|
85029
|
+
sass (3.2.7) lib/sass/scss/parser.rb:554:in `block_child'
|
|
85030
|
+
sass (3.2.7) lib/sass/scss/parser.rb:546:in `block_contents'
|
|
85031
|
+
sass (3.2.7) lib/sass/scss/parser.rb:535:in `block'
|
|
85032
|
+
sass (3.2.7) lib/sass/scss/parser.rb:529:in `ruleset'
|
|
85033
|
+
sass (3.2.7) lib/sass/scss/parser.rb:553:in `block_child'
|
|
85034
|
+
sass (3.2.7) lib/sass/scss/parser.rb:546:in `block_contents'
|
|
85035
|
+
sass (3.2.7) lib/sass/scss/parser.rb:82:in `stylesheet'
|
|
85036
|
+
sass (3.2.7) lib/sass/scss/parser.rb:27:in `parse'
|
|
85037
|
+
sass (3.2.7) lib/sass/engine.rb:342:in `_to_tree'
|
|
85038
|
+
sass (3.2.7) lib/sass/engine.rb:315:in `_render'
|
|
85039
|
+
sass (3.2.7) lib/sass/engine.rb:262:in `render'
|
|
85040
|
+
tilt (1.3.6) lib/tilt/css.rb:24:in `evaluate'
|
|
85041
|
+
tilt (1.3.6) lib/tilt/template.rb:77:in `render'
|
|
85042
|
+
sprockets (2.2.2) lib/sprockets/context.rb:193:in `block in evaluate'
|
|
85043
|
+
sprockets (2.2.2) lib/sprockets/context.rb:190:in `each'
|
|
85044
|
+
sprockets (2.2.2) lib/sprockets/context.rb:190:in `evaluate'
|
|
85045
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:12:in `initialize'
|
|
85046
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `new'
|
|
85047
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset'
|
|
85048
|
+
sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection'
|
|
85049
|
+
sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset'
|
|
85050
|
+
sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset'
|
|
85051
|
+
sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset'
|
|
85052
|
+
sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
|
|
85053
|
+
sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
|
|
85054
|
+
sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
|
|
85055
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies'
|
|
85056
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `each'
|
|
85057
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies'
|
|
85058
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:97:in `build_required_assets'
|
|
85059
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:16:in `initialize'
|
|
85060
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `new'
|
|
85061
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset'
|
|
85062
|
+
sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection'
|
|
85063
|
+
sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset'
|
|
85064
|
+
sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset'
|
|
85065
|
+
sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset'
|
|
85066
|
+
sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
|
|
85067
|
+
sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
|
|
85068
|
+
sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
|
|
85069
|
+
sprockets (2.2.2) lib/sprockets/bundled_asset.rb:38:in `init_with'
|
|
85070
|
+
sprockets (2.2.2) lib/sprockets/asset.rb:24:in `from_hash'
|
|
85071
|
+
sprockets (2.2.2) lib/sprockets/caching.rb:15:in `cache_asset'
|
|
85072
|
+
sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
|
|
85073
|
+
sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
|
|
85074
|
+
sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
|
|
85075
|
+
sprockets (2.2.2) lib/sprockets/environment.rb:78:in `find_asset'
|
|
85076
|
+
sprockets (2.2.2) lib/sprockets/base.rb:177:in `[]'
|
|
85077
|
+
actionpack (3.2.13) lib/sprockets/helpers/rails_helper.rb:126:in `asset_for'
|
|
85078
|
+
actionpack (3.2.13) lib/sprockets/helpers/rails_helper.rb:44:in `block in stylesheet_link_tag'
|
|
85079
|
+
actionpack (3.2.13) lib/sprockets/helpers/rails_helper.rb:43:in `collect'
|
|
85080
|
+
actionpack (3.2.13) lib/sprockets/helpers/rails_helper.rb:43:in `stylesheet_link_tag'
|
|
85081
|
+
/Users/kevin/flms/app/views/layouts/flms/admin.html.haml:6:in `___sers_kevin_flms_app_views_layouts_flms_admin_html_haml___511405204905627849_70246932893120'
|
|
85082
|
+
actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
|
|
85083
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
|
|
85084
|
+
actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
|
|
85085
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'
|
|
85086
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
|
85087
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
|
85088
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
|
85089
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
|
|
85090
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
|
85091
|
+
actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
|
85092
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
|
85093
|
+
actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
|
85094
|
+
actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
|
85095
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
|
|
85096
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
|
|
85097
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
|
85098
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
|
85099
|
+
/Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
|
85100
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
|
85101
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
|
85102
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
|
85103
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
|
85104
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
|
85105
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
|
85106
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
|
85107
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
|
85108
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
85109
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
|
85110
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:436:in `_run__2229620767807028384__process_action__4105642151654813033__callbacks'
|
|
85111
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
85112
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
|
85113
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
85114
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
|
85115
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
85116
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
|
85117
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
|
85118
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
85119
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
|
85120
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
|
85121
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
|
85122
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
85123
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
|
85124
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
|
85125
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
|
85126
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
|
85127
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
|
85128
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
|
85129
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
|
85130
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
|
85131
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
|
85132
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
|
85133
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
|
85134
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
|
85135
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
|
85136
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
|
85137
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
|
85138
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
|
85139
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
|
85140
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
|
85141
|
+
warden (1.2.1) lib/warden/manager.rb:35:in `block in call'
|
|
85142
|
+
warden (1.2.1) lib/warden/manager.rb:34:in `catch'
|
|
85143
|
+
warden (1.2.1) lib/warden/manager.rb:34:in `call'
|
|
85144
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
|
85145
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
|
85146
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
|
85147
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
|
85148
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
|
85149
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
|
85150
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
|
85151
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
|
85152
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
|
85153
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
|
85154
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
|
85155
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
|
85156
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__2731571581320401520__call__2379152223963507546__callbacks'
|
|
85157
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
85158
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
|
85159
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
85160
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
85161
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
|
85162
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
|
85163
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
|
85164
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
85165
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
|
85166
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
|
85167
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
85168
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
|
85169
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
85170
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
85171
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
85172
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
85173
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
85174
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
|
85175
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
|
85176
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
|
85177
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
85178
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
85179
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
85180
|
+
/Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
85181
|
+
/Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
85182
|
+
/Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
85183
|
+
|
|
85184
|
+
|
|
85185
|
+
Rendered /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
|
|
85186
|
+
Rendered /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
|
85187
|
+
Rendered /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.0ms)
|
|
85188
|
+
|
|
85189
|
+
|
|
85190
|
+
Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 12:06:35 -0700
|
|
85191
|
+
Processing by Flms::BlocksController#show as HTML
|
|
85192
|
+
Parameters: {"page_id"=>"home", "id"=>"1"}
|
|
85193
|
+
[1m[36mFlms::User Load (0.2ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
85194
|
+
[1m[35mFlms::Page Load (0.1ms)[0m SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
|
|
85195
|
+
[1m[36mFlms::Block Load (0.1ms)[0m [1mSELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
85196
|
+
[1m[35mFlms::Layer Load (0.1ms)[0m SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
|
|
85197
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (2.2ms)
|
|
85198
|
+
Completed 500 Internal Server Error in 322ms
|
|
85199
|
+
|
|
85200
|
+
ActionView::Template::Error (Invalid CSS after "...icons-halflings": expected ";", was ".png;"
|
|
85201
|
+
(in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.scss.erb)):
|
|
85202
|
+
3: %head
|
|
85203
|
+
4: %title #{Flms.application_name} administration
|
|
85204
|
+
5: %meta{name:"viewport", content:"width=device-width, initial-scale=1.0"}
|
|
85205
|
+
6: = stylesheet_link_tag 'flms/admin', media: 'all'
|
|
85206
|
+
7: = csrf_meta_tags
|
|
85207
|
+
8:
|
|
85208
|
+
9: %body{class: "#{params[:controller].sub('/', ' ')} #{params[:action]}"}
|
|
85209
|
+
/Users/kevin/flms/vendor/assets/stylesheets/bootstrap.scss.erb:2288
|
|
85210
|
+
sass (3.2.7) lib/sass/scss/parser.rb:1148:in `expected'
|
|
85211
|
+
sass (3.2.7) lib/sass/scss/parser.rb:1084:in `expected'
|
|
85212
|
+
sass (3.2.7) lib/sass/scss/parser.rb:1079:in `tok!'
|
|
85213
|
+
sass (3.2.7) lib/sass/scss/parser.rb:586:in `block in declaration_or_ruleset'
|
|
85214
|
+
sass (3.2.7) lib/sass/scss/parser.rb:1122:in `call'
|
|
85215
|
+
sass (3.2.7) lib/sass/scss/parser.rb:1122:in `rethrow'
|
|
85216
|
+
sass (3.2.7) lib/sass/scss/parser.rb:592:in `declaration_or_ruleset'
|
|
85217
|
+
sass (3.2.7) lib/sass/scss/parser.rb:554:in `block_child'
|
|
85218
|
+
sass (3.2.7) lib/sass/scss/parser.rb:546:in `block_contents'
|
|
85219
|
+
sass (3.2.7) lib/sass/scss/parser.rb:535:in `block'
|
|
85220
|
+
sass (3.2.7) lib/sass/scss/parser.rb:529:in `ruleset'
|
|
85221
|
+
sass (3.2.7) lib/sass/scss/parser.rb:553:in `block_child'
|
|
85222
|
+
sass (3.2.7) lib/sass/scss/parser.rb:546:in `block_contents'
|
|
85223
|
+
sass (3.2.7) lib/sass/scss/parser.rb:82:in `stylesheet'
|
|
85224
|
+
sass (3.2.7) lib/sass/scss/parser.rb:27:in `parse'
|
|
85225
|
+
sass (3.2.7) lib/sass/engine.rb:342:in `_to_tree'
|
|
85226
|
+
sass (3.2.7) lib/sass/engine.rb:315:in `_render'
|
|
85227
|
+
sass (3.2.7) lib/sass/engine.rb:262:in `render'
|
|
85228
|
+
tilt (1.3.6) lib/tilt/css.rb:24:in `evaluate'
|
|
85229
|
+
tilt (1.3.6) lib/tilt/template.rb:77:in `render'
|
|
85230
|
+
sprockets (2.2.2) lib/sprockets/context.rb:193:in `block in evaluate'
|
|
85231
|
+
sprockets (2.2.2) lib/sprockets/context.rb:190:in `each'
|
|
85232
|
+
sprockets (2.2.2) lib/sprockets/context.rb:190:in `evaluate'
|
|
85233
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:12:in `initialize'
|
|
85234
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `new'
|
|
85235
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset'
|
|
85236
|
+
sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection'
|
|
85237
|
+
sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset'
|
|
85238
|
+
sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset'
|
|
85239
|
+
sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset'
|
|
85240
|
+
sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
|
|
85241
|
+
sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
|
|
85242
|
+
sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
|
|
85243
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies'
|
|
85244
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `each'
|
|
85245
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies'
|
|
85246
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:97:in `build_required_assets'
|
|
85247
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:16:in `initialize'
|
|
85248
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `new'
|
|
85249
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset'
|
|
85250
|
+
sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection'
|
|
85251
|
+
sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset'
|
|
85252
|
+
sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset'
|
|
85253
|
+
sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset'
|
|
85254
|
+
sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
|
|
85255
|
+
sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
|
|
85256
|
+
sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
|
|
85257
|
+
sprockets (2.2.2) lib/sprockets/bundled_asset.rb:38:in `init_with'
|
|
85258
|
+
sprockets (2.2.2) lib/sprockets/asset.rb:24:in `from_hash'
|
|
85259
|
+
sprockets (2.2.2) lib/sprockets/caching.rb:15:in `cache_asset'
|
|
85260
|
+
sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
|
|
85261
|
+
sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
|
|
85262
|
+
sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
|
|
85263
|
+
sprockets (2.2.2) lib/sprockets/environment.rb:78:in `find_asset'
|
|
85264
|
+
sprockets (2.2.2) lib/sprockets/base.rb:177:in `[]'
|
|
85265
|
+
actionpack (3.2.13) lib/sprockets/helpers/rails_helper.rb:126:in `asset_for'
|
|
85266
|
+
actionpack (3.2.13) lib/sprockets/helpers/rails_helper.rb:44:in `block in stylesheet_link_tag'
|
|
85267
|
+
actionpack (3.2.13) lib/sprockets/helpers/rails_helper.rb:43:in `collect'
|
|
85268
|
+
actionpack (3.2.13) lib/sprockets/helpers/rails_helper.rb:43:in `stylesheet_link_tag'
|
|
85269
|
+
/Users/kevin/flms/app/views/layouts/flms/admin.html.haml:6:in `___sers_kevin_flms_app_views_layouts_flms_admin_html_haml___511405204905627849_70246932893120'
|
|
85270
|
+
actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
|
|
85271
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
|
|
85272
|
+
actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
|
|
85273
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'
|
|
85274
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
|
85275
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
|
85276
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
|
85277
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
|
|
85278
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
|
85279
|
+
actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
|
85280
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
|
85281
|
+
actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
|
85282
|
+
actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
|
85283
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
|
|
85284
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
|
|
85285
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
|
85286
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
|
85287
|
+
/Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
|
85288
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
|
85289
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
|
85290
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
|
85291
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
|
85292
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
|
85293
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
|
85294
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
|
85295
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
|
85296
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
85297
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
|
85298
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:436:in `_run__2229620767807028384__process_action__4105642151654813033__callbacks'
|
|
85299
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
85300
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
|
85301
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
85302
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
|
85303
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
85304
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
|
85305
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
|
85306
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
85307
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
|
85308
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
|
85309
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
|
85310
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
85311
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
|
85312
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
|
85313
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
|
85314
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
|
85315
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
|
85316
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
|
85317
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
|
85318
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
|
85319
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
|
85320
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
|
85321
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
|
85322
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
|
85323
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
|
85324
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
|
85325
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
|
85326
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
|
85327
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
|
85328
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
|
85329
|
+
warden (1.2.1) lib/warden/manager.rb:35:in `block in call'
|
|
85330
|
+
warden (1.2.1) lib/warden/manager.rb:34:in `catch'
|
|
85331
|
+
warden (1.2.1) lib/warden/manager.rb:34:in `call'
|
|
85332
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
|
85333
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
|
85334
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
|
85335
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
|
85336
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
|
85337
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
|
85338
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
|
85339
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
|
85340
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
|
85341
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
|
85342
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
|
85343
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
|
85344
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__2731571581320401520__call__2379152223963507546__callbacks'
|
|
85345
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
85346
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
|
85347
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
85348
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
85349
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
|
85350
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
|
85351
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
|
85352
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
85353
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
|
85354
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
|
85355
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
85356
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
|
85357
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
85358
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
85359
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
85360
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
85361
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
85362
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
|
85363
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
|
85364
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
|
85365
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
85366
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
85367
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
85368
|
+
/Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
85369
|
+
/Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
85370
|
+
/Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
85371
|
+
|
|
85372
|
+
|
|
85373
|
+
Rendered /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
|
85374
|
+
Rendered /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
|
85375
|
+
Rendered /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.5ms)
|
|
85376
|
+
|
|
85377
|
+
|
|
85378
|
+
Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 12:07:06 -0700
|
|
85379
|
+
Processing by Flms::BlocksController#show as HTML
|
|
85380
|
+
Parameters: {"page_id"=>"home", "id"=>"1"}
|
|
85381
|
+
[1m[36mFlms::User Load (0.2ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
85382
|
+
[1m[35mFlms::Page Load (0.1ms)[0m SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
|
|
85383
|
+
[1m[36mFlms::Block Load (0.1ms)[0m [1mSELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
85384
|
+
[1m[35mFlms::Layer Load (0.1ms)[0m SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
|
|
85385
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (2.6ms)
|
|
85386
|
+
Compiled bootstrap.css (1215ms) (pid 1202)
|
|
85387
|
+
Compiled flms/admin.css (1223ms) (pid 1202)
|
|
85388
|
+
Completed 200 OK in 1413ms (Views: 1410.6ms | ActiveRecord: 0.4ms)
|
|
85389
|
+
|
|
85390
|
+
|
|
85391
|
+
Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
|
|
85392
|
+
Served asset /flms/blocks/index.css - 200 OK (3ms)
|
|
85393
|
+
|
|
85394
|
+
|
|
85395
|
+
Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
|
|
85396
|
+
Served asset /flms/blocks/show.css - 200 OK (4ms)
|
|
85397
|
+
|
|
85398
|
+
|
|
85399
|
+
Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
|
|
85400
|
+
Served asset /flms/layout.css - 200 OK (1ms)
|
|
85401
|
+
|
|
85402
|
+
|
|
85403
|
+
Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
|
|
85404
|
+
Served asset /jquery-ui.css - 200 OK (1ms)
|
|
85405
|
+
|
|
85406
|
+
|
|
85407
|
+
Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
|
|
85408
|
+
Served asset /flms/home.css - 200 OK (38ms)
|
|
85409
|
+
|
|
85410
|
+
|
|
85411
|
+
Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
|
|
85412
|
+
Served asset /flms/login.css - 200 OK (2ms)
|
|
85413
|
+
|
|
85414
|
+
|
|
85415
|
+
Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
|
|
85416
|
+
Served asset /bootstrapSwitch.css - 200 OK (3ms)
|
|
85417
|
+
|
|
85418
|
+
|
|
85419
|
+
Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
|
|
85420
|
+
Served asset /flms/admin.css - 200 OK (9ms)
|
|
85421
|
+
|
|
85422
|
+
|
|
85423
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
|
|
85424
|
+
Served asset /jquery.js - 200 OK (2ms)
|
|
85425
|
+
|
|
85426
|
+
|
|
85427
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
|
|
85428
|
+
Served asset /jquery_ujs.js - 200 OK (1ms)
|
|
85429
|
+
|
|
85430
|
+
|
|
85431
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
|
|
85432
|
+
Served asset /bootstrap.css - 200 OK (5ms)
|
|
85433
|
+
|
|
85434
|
+
|
|
85435
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
|
|
85436
|
+
Served asset /jquery-ui.js - 200 OK (5ms)
|
|
85437
|
+
|
|
85438
|
+
|
|
85439
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
|
|
85440
|
+
Served asset /modularity/modularity.js - 200 OK (4ms)
|
|
85441
|
+
|
|
85442
|
+
|
|
85443
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
|
|
85444
|
+
Served asset /modularity/tools/string_tools.js - 200 OK (2ms)
|
|
85445
|
+
|
|
85446
|
+
|
|
85447
|
+
Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
|
|
85448
|
+
Served asset /flms/blocks/index/block.js - 200 OK (2ms)
|
|
85449
|
+
|
|
85450
|
+
|
|
85451
|
+
Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
|
|
85452
|
+
Served asset /flms/blocks/index/block_list.js - 200 OK (2ms)
|
|
85453
|
+
|
|
85454
|
+
|
|
85455
|
+
Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:08 -0700
|
|
85456
|
+
Served asset /flms/blocks/index/index.js - 200 OK (2ms)
|
|
85457
|
+
|
|
85458
|
+
|
|
85459
|
+
Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:08 -0700
|
|
85460
|
+
Served asset /flms/bootstrap.js - 200 OK (1ms)
|
|
85461
|
+
|
|
85462
|
+
|
|
85463
|
+
Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:08 -0700
|
|
85464
|
+
Served asset /flms/layout.js - 200 OK (1ms)
|
|
85465
|
+
|
|
85466
|
+
|
|
85467
|
+
Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:08 -0700
|
|
85468
|
+
Served asset /bootstrapSwitch.js - 200 OK (2ms)
|
|
85469
|
+
|
|
85470
|
+
|
|
85471
|
+
Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:08 -0700
|
|
85472
|
+
Served asset /flms/admin.js - 200 OK (52ms)
|
|
85473
|
+
|
|
85474
|
+
|
|
85475
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:10 -0700
|
|
85476
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
85477
|
+
|
|
85478
|
+
|
|
85479
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:24 -0700
|
|
85480
|
+
Compiled bootstrap.css (1228ms) (pid 1202)
|
|
85481
|
+
Served asset /bootstrap.css - 200 OK (1232ms)
|
|
85482
|
+
|
|
85483
|
+
|
|
85484
|
+
Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 12:07:27 -0700
|
|
85485
|
+
Processing by Flms::BlocksController#show as HTML
|
|
85486
|
+
Parameters: {"page_id"=>"home", "id"=>"1"}
|
|
85487
|
+
[1m[36mFlms::User Load (0.2ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
85488
|
+
[1m[35mFlms::Page Load (0.1ms)[0m SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
|
|
85489
|
+
[1m[36mFlms::Block Load (0.1ms)[0m [1mSELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
85490
|
+
[1m[35mFlms::Layer Load (0.1ms)[0m SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
|
|
85491
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (2.1ms)
|
|
85492
|
+
Compiled flms/admin.css (4ms) (pid 1202)
|
|
85493
|
+
Completed 200 OK in 167ms (Views: 165.0ms | ActiveRecord: 0.4ms)
|
|
85494
|
+
|
|
85495
|
+
|
|
85496
|
+
Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
|
|
85497
|
+
Served asset /flms/blocks/index.css - 304 Not Modified (0ms)
|
|
85498
|
+
|
|
85499
|
+
|
|
85500
|
+
Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
|
|
85501
|
+
Served asset /flms/blocks/show.css - 304 Not Modified (0ms)
|
|
85502
|
+
|
|
85503
|
+
|
|
85504
|
+
Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
|
|
85505
|
+
Served asset /flms/layout.css - 304 Not Modified (0ms)
|
|
85506
|
+
|
|
85507
|
+
|
|
85508
|
+
Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
|
|
85509
|
+
Served asset /flms/home.css - 304 Not Modified (0ms)
|
|
85510
|
+
|
|
85511
|
+
|
|
85512
|
+
Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
|
|
85513
|
+
Served asset /flms/login.css - 304 Not Modified (0ms)
|
|
85514
|
+
|
|
85515
|
+
|
|
85516
|
+
Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
|
|
85517
|
+
Served asset /jquery-ui.css - 304 Not Modified (0ms)
|
|
85518
|
+
|
|
85519
|
+
|
|
85520
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
|
|
85521
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
85522
|
+
|
|
85523
|
+
|
|
85524
|
+
Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
|
|
85525
|
+
Served asset /bootstrapSwitch.css - 304 Not Modified (0ms)
|
|
85526
|
+
|
|
85527
|
+
|
|
85528
|
+
Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
|
|
85529
|
+
Served asset /flms/admin.css - 304 Not Modified (16ms)
|
|
85530
|
+
|
|
85531
|
+
|
|
85532
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
|
|
85533
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
85534
|
+
|
|
85535
|
+
|
|
85536
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
|
|
85537
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
85538
|
+
|
|
85539
|
+
|
|
85540
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
|
|
85541
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
|
85542
|
+
|
|
85543
|
+
|
|
85544
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
|
|
85545
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
85546
|
+
|
|
85547
|
+
|
|
85548
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
|
|
85549
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
85550
|
+
|
|
85551
|
+
|
|
85552
|
+
Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
|
|
85553
|
+
Served asset /flms/blocks/index/block.js - 304 Not Modified (0ms)
|
|
85554
|
+
|
|
85555
|
+
|
|
85556
|
+
Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
|
|
85557
|
+
Served asset /flms/blocks/index/block_list.js - 304 Not Modified (0ms)
|
|
85558
|
+
|
|
85559
|
+
|
|
85560
|
+
Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
|
|
85561
|
+
Served asset /flms/blocks/index/index.js - 304 Not Modified (0ms)
|
|
85562
|
+
|
|
85563
|
+
|
|
85564
|
+
Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
|
|
85565
|
+
Served asset /flms/bootstrap.js - 304 Not Modified (0ms)
|
|
85566
|
+
|
|
85567
|
+
|
|
85568
|
+
Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
|
|
85569
|
+
Served asset /flms/layout.js - 304 Not Modified (0ms)
|
|
85570
|
+
|
|
85571
|
+
|
|
85572
|
+
Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
|
|
85573
|
+
Served asset /bootstrapSwitch.js - 304 Not Modified (0ms)
|
|
85574
|
+
|
|
85575
|
+
|
|
85576
|
+
Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
|
|
85577
|
+
Served asset /flms/admin.js - 304 Not Modified (0ms)
|
|
85578
|
+
|
|
85579
|
+
|
|
85580
|
+
Started GET "/assets/glyphicons-halflings" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
|
|
85581
|
+
Served asset /glyphicons-halflings - 404 Not Found (2ms)
|
|
85582
|
+
|
|
85583
|
+
ActionController::RoutingError (No route matches [GET] "/assets/glyphicons-halflings"):
|
|
85584
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
85585
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
85586
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
|
85587
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
|
85588
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
85589
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
|
85590
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
85591
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
85592
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
85593
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
85594
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
85595
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
|
85596
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
|
85597
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
|
85598
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
85599
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
85600
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
85601
|
+
/Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
85602
|
+
/Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
85603
|
+
/Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
85604
|
+
|
|
85605
|
+
|
|
85606
|
+
Rendered /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
|
85607
|
+
|
|
85608
|
+
|
|
85609
|
+
Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 12:07:29 -0700
|
|
85610
|
+
Processing by Flms::BlocksController#show as HTML
|
|
85611
|
+
Parameters: {"page_id"=>"home", "id"=>"1"}
|
|
85612
|
+
[1m[36mFlms::User Load (0.1ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
85613
|
+
[1m[35mFlms::Page Load (0.1ms)[0m SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
|
|
85614
|
+
[1m[36mFlms::Block Load (0.1ms)[0m [1mSELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
85615
|
+
[1m[35mFlms::Layer Load (0.1ms)[0m SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
|
|
85616
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (2.1ms)
|
|
85617
|
+
Completed 200 OK in 111ms (Views: 108.7ms | ActiveRecord: 0.4ms)
|
|
85618
|
+
|
|
85619
|
+
|
|
85620
|
+
Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:29 -0700
|
|
85621
|
+
Served asset /flms/blocks/show.css - 304 Not Modified (0ms)
|
|
85622
|
+
|
|
85623
|
+
|
|
85624
|
+
Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:29 -0700
|
|
85625
|
+
Served asset /flms/blocks/index.css - 304 Not Modified (0ms)
|
|
85626
|
+
|
|
85627
|
+
|
|
85628
|
+
Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:29 -0700
|
|
85629
|
+
Served asset /flms/home.css - 304 Not Modified (0ms)
|
|
85630
|
+
|
|
85631
|
+
|
|
85632
|
+
Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:29 -0700
|
|
85633
|
+
Served asset /flms/layout.css - 304 Not Modified (0ms)
|
|
85634
|
+
|
|
85635
|
+
|
|
85636
|
+
Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:29 -0700
|
|
85637
|
+
Served asset /flms/login.css - 304 Not Modified (0ms)
|
|
85638
|
+
|
|
85639
|
+
|
|
85640
|
+
Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:29 -0700
|
|
85641
|
+
Served asset /jquery-ui.css - 304 Not Modified (0ms)
|
|
85642
|
+
|
|
85643
|
+
|
|
85644
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:29 -0700
|
|
85645
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
85646
|
+
|
|
85647
|
+
|
|
85648
|
+
Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:29 -0700
|
|
85649
|
+
Served asset /bootstrapSwitch.css - 304 Not Modified (0ms)
|
|
85650
|
+
|
|
85651
|
+
|
|
85652
|
+
Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:29 -0700
|
|
85653
|
+
Served asset /flms/admin.css - 304 Not Modified (0ms)
|
|
85654
|
+
|
|
85655
|
+
|
|
85656
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:29 -0700
|
|
85657
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
85658
|
+
|
|
85659
|
+
|
|
85660
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:29 -0700
|
|
85661
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
85662
|
+
|
|
85663
|
+
|
|
85664
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:29 -0700
|
|
85665
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
|
85666
|
+
|
|
85667
|
+
|
|
85668
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:30 -0700
|
|
85669
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
85670
|
+
|
|
85671
|
+
|
|
85672
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:30 -0700
|
|
85673
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
85674
|
+
|
|
85675
|
+
|
|
85676
|
+
Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:30 -0700
|
|
85677
|
+
Served asset /flms/blocks/index/block.js - 304 Not Modified (0ms)
|
|
85678
|
+
|
|
85679
|
+
|
|
85680
|
+
Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:30 -0700
|
|
85681
|
+
Served asset /flms/blocks/index/block_list.js - 304 Not Modified (0ms)
|
|
85682
|
+
|
|
85683
|
+
|
|
85684
|
+
Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:30 -0700
|
|
85685
|
+
Served asset /flms/blocks/index/index.js - 304 Not Modified (0ms)
|
|
85686
|
+
|
|
85687
|
+
|
|
85688
|
+
Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:30 -0700
|
|
85689
|
+
Served asset /flms/layout.js - 304 Not Modified (0ms)
|
|
85690
|
+
|
|
85691
|
+
|
|
85692
|
+
Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:30 -0700
|
|
85693
|
+
Served asset /flms/bootstrap.js - 304 Not Modified (0ms)
|
|
85694
|
+
|
|
85695
|
+
|
|
85696
|
+
Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:30 -0700
|
|
85697
|
+
Served asset /bootstrapSwitch.js - 304 Not Modified (0ms)
|
|
85698
|
+
|
|
85699
|
+
|
|
85700
|
+
Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:30 -0700
|
|
85701
|
+
Served asset /flms/admin.js - 304 Not Modified (0ms)
|
|
85702
|
+
|
|
85703
|
+
|
|
85704
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:32 -0700
|
|
85705
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
85706
|
+
|
|
85707
|
+
|
|
85708
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:54 -0700
|
|
85709
|
+
Compiled bootstrap.css (1192ms) (pid 1202)
|
|
85710
|
+
Served asset /bootstrap.css - 200 OK (1196ms)
|
|
85711
|
+
|
|
85712
|
+
|
|
85713
|
+
Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 12:07:57 -0700
|
|
85714
|
+
Processing by Flms::BlocksController#show as HTML
|
|
85715
|
+
Parameters: {"page_id"=>"home", "id"=>"1"}
|
|
85716
|
+
[1m[36mFlms::User Load (0.2ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
85717
|
+
[1m[35mFlms::Page Load (0.1ms)[0m SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
|
|
85718
|
+
[1m[36mFlms::Block Load (0.1ms)[0m [1mSELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
85719
|
+
[1m[35mFlms::Layer Load (0.1ms)[0m SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
|
|
85720
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (2.1ms)
|
|
85721
|
+
Compiled flms/admin.css (4ms) (pid 1202)
|
|
85722
|
+
Completed 200 OK in 167ms (Views: 165.4ms | ActiveRecord: 0.4ms)
|
|
85723
|
+
|
|
85724
|
+
|
|
85725
|
+
Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
|
|
85726
|
+
Served asset /flms/blocks/index.css - 304 Not Modified (0ms)
|
|
85727
|
+
|
|
85728
|
+
|
|
85729
|
+
Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
|
|
85730
|
+
Served asset /flms/blocks/show.css - 304 Not Modified (0ms)
|
|
85731
|
+
|
|
85732
|
+
|
|
85733
|
+
Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
|
|
85734
|
+
Served asset /flms/layout.css - 304 Not Modified (0ms)
|
|
85735
|
+
|
|
85736
|
+
|
|
85737
|
+
Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
|
|
85738
|
+
Served asset /flms/home.css - 304 Not Modified (0ms)
|
|
85739
|
+
|
|
85740
|
+
|
|
85741
|
+
Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
|
|
85742
|
+
Served asset /flms/login.css - 304 Not Modified (0ms)
|
|
85743
|
+
|
|
85744
|
+
|
|
85745
|
+
Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
|
|
85746
|
+
Served asset /jquery-ui.css - 304 Not Modified (0ms)
|
|
85747
|
+
|
|
85748
|
+
|
|
85749
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
|
|
85750
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
85751
|
+
|
|
85752
|
+
|
|
85753
|
+
Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
|
|
85754
|
+
Served asset /bootstrapSwitch.css - 304 Not Modified (0ms)
|
|
85755
|
+
|
|
85756
|
+
|
|
85757
|
+
Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
|
|
85758
|
+
Served asset /flms/admin.css - 304 Not Modified (13ms)
|
|
85759
|
+
|
|
85760
|
+
|
|
85761
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
|
|
85762
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
85763
|
+
|
|
85764
|
+
|
|
85765
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
|
|
85766
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
85767
|
+
|
|
85768
|
+
|
|
85769
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
|
|
85770
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
|
85771
|
+
|
|
85772
|
+
|
|
85773
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
|
|
85774
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
85775
|
+
|
|
85776
|
+
|
|
85777
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
|
|
85778
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
85779
|
+
|
|
85780
|
+
|
|
85781
|
+
Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
|
|
85782
|
+
Served asset /flms/blocks/index/block.js - 304 Not Modified (0ms)
|
|
85783
|
+
|
|
85784
|
+
|
|
85785
|
+
Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
|
|
85786
|
+
Served asset /flms/blocks/index/block_list.js - 304 Not Modified (0ms)
|
|
85787
|
+
|
|
85788
|
+
|
|
85789
|
+
Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
|
|
85790
|
+
Served asset /flms/blocks/index/index.js - 304 Not Modified (0ms)
|
|
85791
|
+
|
|
85792
|
+
|
|
85793
|
+
Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
|
|
85794
|
+
Served asset /flms/bootstrap.js - 304 Not Modified (0ms)
|
|
85795
|
+
|
|
85796
|
+
|
|
85797
|
+
Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
|
|
85798
|
+
Served asset /flms/layout.js - 304 Not Modified (0ms)
|
|
85799
|
+
|
|
85800
|
+
|
|
85801
|
+
Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
|
|
85802
|
+
Served asset /bootstrapSwitch.js - 304 Not Modified (0ms)
|
|
85803
|
+
|
|
85804
|
+
|
|
85805
|
+
Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
|
|
85806
|
+
Served asset /flms/admin.js - 304 Not Modified (0ms)
|
|
85807
|
+
|
|
85808
|
+
|
|
85809
|
+
Started GET "/assets/glyphicons-halflings.png" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
|
|
85810
|
+
Served asset /glyphicons-halflings.png - 200 OK (6ms)
|
|
85811
|
+
|
|
85812
|
+
|
|
85813
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:08:38 -0700
|
|
85814
|
+
Error compiling asset bootstrap.css:
|
|
85815
|
+
Sass::SyntaxError: Invalid CSS after "...halflings-white": expected ";", was ".png;"
|
|
85816
|
+
(in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.scss.erb)
|
|
85817
|
+
Served asset /bootstrap.css - 500 Internal Server Error
|
|
85818
|
+
|
|
85819
|
+
|
|
85820
|
+
|
|
85821
|
+
|
|
85822
|
+
Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 12:08:42 -0700
|
|
85823
|
+
Processing by Flms::BlocksController#show as HTML
|
|
85824
|
+
Parameters: {"page_id"=>"home", "id"=>"1"}
|
|
85825
|
+
[1m[36mFlms::User Load (0.1ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
85826
|
+
[1m[35mFlms::Page Load (0.1ms)[0m SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
|
|
85827
|
+
[1m[36mFlms::Block Load (0.1ms)[0m [1mSELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
85828
|
+
[1m[35mFlms::Layer Load (0.1ms)[0m SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
|
|
85829
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (2.2ms)
|
|
85830
|
+
Completed 500 Internal Server Error in 371ms
|
|
85831
|
+
|
|
85832
|
+
ActionView::Template::Error (Invalid CSS after "...halflings-white": expected ";", was ".png;"
|
|
85833
|
+
(in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.scss.erb)):
|
|
85834
|
+
3: %head
|
|
85835
|
+
4: %title #{Flms.application_name} administration
|
|
85836
|
+
5: %meta{name:"viewport", content:"width=device-width, initial-scale=1.0"}
|
|
85837
|
+
6: = stylesheet_link_tag 'flms/admin', media: 'all'
|
|
85838
|
+
7: = csrf_meta_tags
|
|
85839
|
+
8:
|
|
85840
|
+
9: %body{class: "#{params[:controller].sub('/', ' ')} #{params[:action]}"}
|
|
85841
|
+
/Users/kevin/flms/vendor/assets/stylesheets/bootstrap.scss.erb:2310
|
|
85842
|
+
sass (3.2.7) lib/sass/scss/parser.rb:1148:in `expected'
|
|
85843
|
+
sass (3.2.7) lib/sass/scss/parser.rb:1084:in `expected'
|
|
85844
|
+
sass (3.2.7) lib/sass/scss/parser.rb:1079:in `tok!'
|
|
85845
|
+
sass (3.2.7) lib/sass/scss/parser.rb:586:in `block in declaration_or_ruleset'
|
|
85846
|
+
sass (3.2.7) lib/sass/scss/parser.rb:1122:in `call'
|
|
85847
|
+
sass (3.2.7) lib/sass/scss/parser.rb:1122:in `rethrow'
|
|
85848
|
+
sass (3.2.7) lib/sass/scss/parser.rb:592:in `declaration_or_ruleset'
|
|
85849
|
+
sass (3.2.7) lib/sass/scss/parser.rb:554:in `block_child'
|
|
85850
|
+
sass (3.2.7) lib/sass/scss/parser.rb:543:in `block_contents'
|
|
85851
|
+
sass (3.2.7) lib/sass/scss/parser.rb:535:in `block'
|
|
85852
|
+
sass (3.2.7) lib/sass/scss/parser.rb:529:in `ruleset'
|
|
85853
|
+
sass (3.2.7) lib/sass/scss/parser.rb:553:in `block_child'
|
|
85854
|
+
sass (3.2.7) lib/sass/scss/parser.rb:546:in `block_contents'
|
|
85855
|
+
sass (3.2.7) lib/sass/scss/parser.rb:82:in `stylesheet'
|
|
85856
|
+
sass (3.2.7) lib/sass/scss/parser.rb:27:in `parse'
|
|
85857
|
+
sass (3.2.7) lib/sass/engine.rb:342:in `_to_tree'
|
|
85858
|
+
sass (3.2.7) lib/sass/engine.rb:315:in `_render'
|
|
85859
|
+
sass (3.2.7) lib/sass/engine.rb:262:in `render'
|
|
85860
|
+
tilt (1.3.6) lib/tilt/css.rb:24:in `evaluate'
|
|
85861
|
+
tilt (1.3.6) lib/tilt/template.rb:77:in `render'
|
|
85862
|
+
sprockets (2.2.2) lib/sprockets/context.rb:193:in `block in evaluate'
|
|
85863
|
+
sprockets (2.2.2) lib/sprockets/context.rb:190:in `each'
|
|
85864
|
+
sprockets (2.2.2) lib/sprockets/context.rb:190:in `evaluate'
|
|
85865
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:12:in `initialize'
|
|
85866
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `new'
|
|
85867
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset'
|
|
85868
|
+
sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection'
|
|
85869
|
+
sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset'
|
|
85870
|
+
sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset'
|
|
85871
|
+
sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset'
|
|
85872
|
+
sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
|
|
85873
|
+
sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
|
|
85874
|
+
sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
|
|
85875
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:44:in `block in init_with'
|
|
85876
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:37:in `map'
|
|
85877
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:37:in `init_with'
|
|
85878
|
+
sprockets (2.2.2) lib/sprockets/asset.rb:24:in `from_hash'
|
|
85879
|
+
sprockets (2.2.2) lib/sprockets/caching.rb:15:in `cache_asset'
|
|
85880
|
+
sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
|
|
85881
|
+
sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
|
|
85882
|
+
sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
|
|
85883
|
+
sprockets (2.2.2) lib/sprockets/bundled_asset.rb:38:in `init_with'
|
|
85884
|
+
sprockets (2.2.2) lib/sprockets/asset.rb:24:in `from_hash'
|
|
85885
|
+
sprockets (2.2.2) lib/sprockets/caching.rb:15:in `cache_asset'
|
|
85886
|
+
sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
|
|
85887
|
+
sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
|
|
85888
|
+
sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
|
|
85889
|
+
sprockets (2.2.2) lib/sprockets/environment.rb:78:in `find_asset'
|
|
85890
|
+
sprockets (2.2.2) lib/sprockets/base.rb:177:in `[]'
|
|
85891
|
+
actionpack (3.2.13) lib/sprockets/helpers/rails_helper.rb:126:in `asset_for'
|
|
85892
|
+
actionpack (3.2.13) lib/sprockets/helpers/rails_helper.rb:44:in `block in stylesheet_link_tag'
|
|
85893
|
+
actionpack (3.2.13) lib/sprockets/helpers/rails_helper.rb:43:in `collect'
|
|
85894
|
+
actionpack (3.2.13) lib/sprockets/helpers/rails_helper.rb:43:in `stylesheet_link_tag'
|
|
85895
|
+
/Users/kevin/flms/app/views/layouts/flms/admin.html.haml:6:in `___sers_kevin_flms_app_views_layouts_flms_admin_html_haml___511405204905627849_70246932893120'
|
|
85896
|
+
actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
|
|
85897
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
|
|
85898
|
+
actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
|
|
85899
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'
|
|
85900
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
|
85901
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
|
85902
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
|
85903
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
|
|
85904
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
|
85905
|
+
actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
|
85906
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
|
85907
|
+
actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
|
85908
|
+
actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
|
85909
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
|
|
85910
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
|
|
85911
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
|
85912
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
|
85913
|
+
/Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
|
85914
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
|
85915
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
|
85916
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
|
85917
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
|
85918
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
|
85919
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
|
85920
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
|
85921
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
|
85922
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
85923
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
|
85924
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:436:in `_run__2229620767807028384__process_action__4105642151654813033__callbacks'
|
|
85925
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
85926
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
|
85927
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
85928
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
|
85929
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
85930
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
|
85931
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
|
85932
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
85933
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
|
85934
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
|
85935
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
|
85936
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
85937
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
|
85938
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
|
85939
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
|
85940
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
|
85941
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
|
85942
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
|
85943
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
|
85944
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
|
85945
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
|
85946
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
|
85947
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
|
85948
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
|
85949
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
|
85950
|
+
railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
|
85951
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
|
85952
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
|
85953
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
|
85954
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
|
85955
|
+
warden (1.2.1) lib/warden/manager.rb:35:in `block in call'
|
|
85956
|
+
warden (1.2.1) lib/warden/manager.rb:34:in `catch'
|
|
85957
|
+
warden (1.2.1) lib/warden/manager.rb:34:in `call'
|
|
85958
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
|
85959
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
|
85960
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
|
85961
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
|
85962
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
|
85963
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
|
85964
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
|
85965
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
|
85966
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
|
85967
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
|
85968
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
|
85969
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
|
85970
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__2731571581320401520__call__2379152223963507546__callbacks'
|
|
85971
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
85972
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
|
85973
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
85974
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
85975
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
|
85976
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
|
85977
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
|
85978
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
85979
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
|
85980
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
|
85981
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
85982
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
|
85983
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
85984
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
85985
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
85986
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
85987
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
85988
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
|
85989
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
|
85990
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
|
85991
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
85992
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
85993
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
85994
|
+
/Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
85995
|
+
/Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
85996
|
+
/Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
85997
|
+
|
|
85998
|
+
|
|
85999
|
+
Rendered /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
|
86000
|
+
Rendered /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
|
86001
|
+
Rendered /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.6ms)
|
|
86002
|
+
|
|
86003
|
+
|
|
86004
|
+
Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 12:08:56 -0700
|
|
86005
|
+
Processing by Flms::BlocksController#show as HTML
|
|
86006
|
+
Parameters: {"page_id"=>"home", "id"=>"1"}
|
|
86007
|
+
[1m[36mFlms::User Load (0.2ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
86008
|
+
[1m[35mFlms::Page Load (0.1ms)[0m SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
|
|
86009
|
+
[1m[36mFlms::Block Load (0.1ms)[0m [1mSELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
86010
|
+
[1m[35mFlms::Layer Load (0.1ms)[0m SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
|
|
86011
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (2.1ms)
|
|
86012
|
+
Compiled bootstrap.css (1189ms) (pid 1202)
|
|
86013
|
+
Compiled flms/admin.css (4ms) (pid 1202)
|
|
86014
|
+
Completed 200 OK in 1361ms (Views: 1358.6ms | ActiveRecord: 0.4ms)
|
|
86015
|
+
|
|
86016
|
+
|
|
86017
|
+
Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 12:08:57 -0700
|
|
86018
|
+
Processing by Flms::BlocksController#show as HTML
|
|
86019
|
+
Parameters: {"page_id"=>"home", "id"=>"1"}
|
|
86020
|
+
[1m[36mFlms::User Load (0.1ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
86021
|
+
[1m[35mFlms::Page Load (0.1ms)[0m SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
|
|
86022
|
+
[1m[36mFlms::Block Load (0.1ms)[0m [1mSELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
86023
|
+
[1m[35mFlms::Layer Load (0.1ms)[0m SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
|
|
86024
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (2.1ms)
|
|
86025
|
+
Completed 200 OK in 106ms (Views: 104.2ms | ActiveRecord: 0.4ms)
|
|
86026
|
+
|
|
86027
|
+
|
|
86028
|
+
Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-03-19 12:08:57 -0700
|
|
86029
|
+
Served asset /flms/blocks/index.css - 304 Not Modified (0ms)
|
|
86030
|
+
|
|
86031
|
+
|
|
86032
|
+
Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-03-19 12:08:57 -0700
|
|
86033
|
+
Served asset /flms/blocks/show.css - 304 Not Modified (0ms)
|
|
86034
|
+
|
|
86035
|
+
|
|
86036
|
+
Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-03-19 12:08:57 -0700
|
|
86037
|
+
Served asset /flms/login.css - 304 Not Modified (0ms)
|
|
86038
|
+
|
|
86039
|
+
|
|
86040
|
+
Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-03-19 12:08:57 -0700
|
|
86041
|
+
Served asset /flms/layout.css - 304 Not Modified (0ms)
|
|
86042
|
+
|
|
86043
|
+
|
|
86044
|
+
Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-03-19 12:08:57 -0700
|
|
86045
|
+
Served asset /flms/home.css - 304 Not Modified (0ms)
|
|
86046
|
+
|
|
86047
|
+
|
|
86048
|
+
Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-03-19 12:08:57 -0700
|
|
86049
|
+
Served asset /jquery-ui.css - 304 Not Modified (0ms)
|
|
86050
|
+
|
|
86051
|
+
|
|
86052
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:08:57 -0700
|
|
86053
|
+
Served asset /bootstrap.css - 200 OK (4ms)
|
|
86054
|
+
|
|
86055
|
+
|
|
86056
|
+
Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-03-19 12:08:57 -0700
|
|
86057
|
+
Served asset /bootstrapSwitch.css - 304 Not Modified (0ms)
|
|
86058
|
+
|
|
86059
|
+
|
|
86060
|
+
Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-03-19 12:08:57 -0700
|
|
86061
|
+
Served asset /flms/admin.css - 304 Not Modified (49ms)
|
|
86062
|
+
|
|
86063
|
+
|
|
86064
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-19 12:08:58 -0700
|
|
86065
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
86066
|
+
|
|
86067
|
+
|
|
86068
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-19 12:08:58 -0700
|
|
86069
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
86070
|
+
|
|
86071
|
+
|
|
86072
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-03-19 12:08:58 -0700
|
|
86073
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
|
86074
|
+
|
|
86075
|
+
|
|
86076
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-19 12:08:58 -0700
|
|
86077
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
86078
|
+
|
|
86079
|
+
|
|
86080
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-19 12:08:58 -0700
|
|
86081
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
86082
|
+
|
|
86083
|
+
|
|
86084
|
+
Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-03-19 12:08:58 -0700
|
|
86085
|
+
Served asset /flms/blocks/index/block.js - 304 Not Modified (0ms)
|
|
86086
|
+
|
|
86087
|
+
|
|
86088
|
+
Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-03-19 12:08:58 -0700
|
|
86089
|
+
Served asset /flms/blocks/index/block_list.js - 304 Not Modified (0ms)
|
|
86090
|
+
|
|
86091
|
+
|
|
86092
|
+
Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-03-19 12:08:58 -0700
|
|
86093
|
+
Served asset /flms/blocks/index/index.js - 304 Not Modified (0ms)
|
|
86094
|
+
|
|
86095
|
+
|
|
86096
|
+
Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-03-19 12:08:58 -0700
|
|
86097
|
+
Served asset /flms/bootstrap.js - 304 Not Modified (0ms)
|
|
86098
|
+
|
|
86099
|
+
|
|
86100
|
+
Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-03-19 12:08:58 -0700
|
|
86101
|
+
Served asset /flms/layout.js - 304 Not Modified (0ms)
|
|
86102
|
+
|
|
86103
|
+
|
|
86104
|
+
Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-03-19 12:08:58 -0700
|
|
86105
|
+
Served asset /bootstrapSwitch.js - 304 Not Modified (0ms)
|
|
86106
|
+
|
|
86107
|
+
|
|
86108
|
+
Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-19 12:08:58 -0700
|
|
86109
|
+
Served asset /flms/admin.js - 304 Not Modified (0ms)
|
|
86110
|
+
|
|
86111
|
+
|
|
86112
|
+
Started GET "/assets/glyphicons-halflings.png" for 127.0.0.1 at 2013-03-19 12:08:58 -0700
|
|
86113
|
+
Served asset /glyphicons-halflings.png - 304 Not Modified (2ms)
|
|
86114
|
+
|
|
86115
|
+
|
|
86116
|
+
Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 12:08:59 -0700
|
|
86117
|
+
Processing by Flms::BlocksController#show as HTML
|
|
86118
|
+
Parameters: {"page_id"=>"home", "id"=>"1"}
|
|
86119
|
+
[1m[36mFlms::User Load (0.2ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
86120
|
+
[1m[35mFlms::Page Load (0.1ms)[0m SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
|
|
86121
|
+
[1m[36mFlms::Block Load (0.1ms)[0m [1mSELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1[0m [["id", "1"]]
|
|
86122
|
+
[1m[35mFlms::Layer Load (0.1ms)[0m SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
|
|
86123
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (2.1ms)
|
|
86124
|
+
Completed 200 OK in 108ms (Views: 106.1ms | ActiveRecord: 0.4ms)
|
|
86125
|
+
|
|
86126
|
+
|
|
86127
|
+
Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
|
|
86128
|
+
Served asset /flms/blocks/index.css - 304 Not Modified (0ms)
|
|
86129
|
+
|
|
86130
|
+
|
|
86131
|
+
Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
|
|
86132
|
+
Served asset /flms/blocks/show.css - 304 Not Modified (0ms)
|
|
86133
|
+
|
|
86134
|
+
|
|
86135
|
+
Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
|
|
86136
|
+
Served asset /flms/home.css - 304 Not Modified (0ms)
|
|
86137
|
+
|
|
86138
|
+
|
|
86139
|
+
Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
|
|
86140
|
+
Served asset /flms/layout.css - 304 Not Modified (0ms)
|
|
86141
|
+
|
|
86142
|
+
|
|
86143
|
+
Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
|
|
86144
|
+
Served asset /flms/login.css - 304 Not Modified (0ms)
|
|
86145
|
+
|
|
86146
|
+
|
|
86147
|
+
Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
|
|
86148
|
+
Served asset /jquery-ui.css - 304 Not Modified (0ms)
|
|
86149
|
+
|
|
86150
|
+
|
|
86151
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
|
|
86152
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
86153
|
+
|
|
86154
|
+
|
|
86155
|
+
Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
|
|
86156
|
+
Served asset /bootstrapSwitch.css - 304 Not Modified (0ms)
|
|
86157
|
+
|
|
86158
|
+
|
|
86159
|
+
Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
|
|
86160
|
+
Served asset /flms/admin.css - 304 Not Modified (0ms)
|
|
86161
|
+
|
|
86162
|
+
|
|
86163
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
|
|
86164
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
86165
|
+
|
|
86166
|
+
|
|
86167
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
|
|
86168
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
|
86169
|
+
|
|
86170
|
+
|
|
86171
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
|
|
86172
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
86173
|
+
|
|
86174
|
+
|
|
86175
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
|
|
86176
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
86177
|
+
|
|
86178
|
+
|
|
86179
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
|
|
86180
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
86181
|
+
|
|
86182
|
+
|
|
86183
|
+
Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
|
|
86184
|
+
Served asset /flms/blocks/index/block.js - 304 Not Modified (0ms)
|
|
86185
|
+
|
|
86186
|
+
|
|
86187
|
+
Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
|
|
86188
|
+
Served asset /flms/blocks/index/block_list.js - 304 Not Modified (0ms)
|
|
86189
|
+
|
|
86190
|
+
|
|
86191
|
+
Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
|
|
86192
|
+
Served asset /flms/blocks/index/index.js - 304 Not Modified (0ms)
|
|
86193
|
+
|
|
86194
|
+
|
|
86195
|
+
Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
|
|
86196
|
+
Served asset /flms/bootstrap.js - 304 Not Modified (0ms)
|
|
86197
|
+
|
|
86198
|
+
|
|
86199
|
+
Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
|
|
86200
|
+
Served asset /flms/layout.js - 304 Not Modified (0ms)
|
|
86201
|
+
|
|
86202
|
+
|
|
86203
|
+
Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
|
|
86204
|
+
Served asset /bootstrapSwitch.js - 304 Not Modified (0ms)
|
|
86205
|
+
|
|
86206
|
+
|
|
86207
|
+
Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
|
|
86208
|
+
Served asset /flms/admin.js - 304 Not Modified (0ms)
|
|
86209
|
+
|
|
86210
|
+
|
|
86211
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:09:01 -0700
|
|
86212
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
86213
|
+
|
|
86214
|
+
|
|
86215
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:09:33 -0700
|
|
86216
|
+
Compiled bootstrap.css (1208ms) (pid 1202)
|
|
86217
|
+
Served asset /bootstrap.css - 200 OK (1258ms)
|
|
86218
|
+
|
|
86219
|
+
|
|
86220
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:09:48 -0700
|
|
86221
|
+
Compiled bootstrap.css (1222ms) (pid 1202)
|
|
86222
|
+
Served asset /bootstrap.css - 200 OK (1227ms)
|
|
86223
|
+
|
|
86224
|
+
|
|
86225
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:11:50 -0700
|
|
86226
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
86227
|
+
|
|
86228
|
+
|
|
86229
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 15:16:28 -0700
|
|
86230
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
86231
|
+
Connecting to database specified by database.yml
|
|
86232
|
+
Connecting to database specified by database.yml
|
|
86233
|
+
[1m[36m (1.8ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
86234
|
+
Migrating to FlmsDeviseCreateUsers (20130208224914)
|
|
86235
|
+
Migrating to FlmsCreatePages (20130216032241)
|
|
86236
|
+
Migrating to CreateFlmsBlocks (20130302011705)
|
|
86237
|
+
Migrating to CreateFlmsBlocksPages (20130302015459)
|
|
86238
|
+
Migrating to CreateFlmsLayers (20130312220011)
|
|
86239
|
+
Migrating to AddImageToLayers (20130313002421)
|
|
86240
|
+
Migrating to CreateFlmsKeyframes (20130327183815)
|
|
86241
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
86242
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
86243
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "flms_keyframes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "layer_id" integer, "type" varchar(255), "scroll_start" integer, "scroll_duration" integer, "width" float, "height" float, "position_x" float, "position_y" float, "opacity" float, "scale" float, "blur" float)
|
|
86244
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130327183815')[0m
|
|
86245
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
86246
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
86247
|
+
Connecting to database specified by database.yml
|
|
86248
|
+
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
86249
|
+
Migrating to FlmsDeviseCreateUsers (20130208224914)
|
|
86250
|
+
Migrating to FlmsCreatePages (20130216032241)
|
|
86251
|
+
Migrating to CreateFlmsBlocks (20130302011705)
|
|
86252
|
+
Migrating to CreateFlmsBlocksPages (20130302015459)
|
|
86253
|
+
Migrating to CreateFlmsLayers (20130312220011)
|
|
86254
|
+
Migrating to AddImageToLayers (20130313002421)
|
|
86255
|
+
Migrating to CreateFlmsKeyframes (20130327183815)
|
|
86256
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
|
86257
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
86258
|
+
Connecting to database specified by database.yml
|
|
86259
|
+
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
86260
|
+
Migrating to FlmsDeviseCreateUsers (20130208224914)
|
|
86261
|
+
Migrating to FlmsCreatePages (20130216032241)
|
|
86262
|
+
Migrating to CreateFlmsBlocks (20130302011705)
|
|
86263
|
+
Migrating to CreateFlmsBlocksPages (20130302015459)
|
|
86264
|
+
Migrating to CreateFlmsLayers (20130312220011)
|
|
86265
|
+
Migrating to AddImageToLayers (20130313002421)
|
|
86266
|
+
Migrating to CreateFlmsKeyframes (20130327183815)
|
|
86267
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
|
86268
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
86269
|
+
Connecting to database specified by database.yml
|
|
86270
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
|
86271
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
86272
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
86273
|
+
[1m[35m (1.4ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
|
86274
|
+
Migrating to FlmsDeviseCreateUsers (20130208224914)
|
|
86275
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
86276
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "flms_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
86277
|
+
[1m[36m (0.3ms)[0m [1mCREATE UNIQUE INDEX "index_flms_users_on_email" ON "flms_users" ("email")[0m
|
|
86278
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "index_flms_users_on_reset_password_token" ON "flms_users" ("reset_password_token")
|
|
86279
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130208224914')[0m
|
|
86280
|
+
[1m[35m (0.7ms)[0m commit transaction
|
|
86281
|
+
Migrating to FlmsCreatePages (20130216032241)
|
|
86282
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
86283
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "flms_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
86284
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_flms_pages_on_url" ON "flms_pages" ("url")[0m
|
|
86285
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20130216032241')
|
|
86286
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
|
86287
|
+
Migrating to CreateFlmsBlocks (20130302011705)
|
|
86288
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
86289
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "flms_blocks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
86290
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20130302011705')
|
|
86291
|
+
[1m[36m (0.4ms)[0m [1mcommit transaction[0m
|
|
86292
|
+
Migrating to CreateFlmsBlocksPages (20130302015459)
|
|
86293
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
86294
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "flms_blocks_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "block_id" integer, "page_id" integer, "ordering" integer, "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
86295
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_flms_blocks_pages_on_block_id" ON "flms_blocks_pages" ("block_id")
|
|
86296
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_flms_blocks_pages_on_page_id" ON "flms_blocks_pages" ("page_id")[0m
|
|
86297
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20130302015459')
|
|
86298
|
+
[1m[36m (0.5ms)[0m [1mcommit transaction[0m
|
|
86299
|
+
Migrating to CreateFlmsLayers (20130312220011)
|
|
86300
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
86301
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "flms_layers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "block_id" integer, "ordering" integer, "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
86302
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_flms_layers_on_block_id" ON "flms_layers" ("block_id")
|
|
86303
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130312220011')[0m
|
|
86304
|
+
[1m[35m (0.6ms)[0m commit transaction
|
|
86305
|
+
Migrating to AddImageToLayers (20130313002421)
|
|
86306
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
86307
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "flms_layers" ADD "image" varchar(255)
|
|
86308
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130313002421')[0m
|
|
86309
|
+
[1m[35m (0.5ms)[0m commit transaction
|
|
86310
|
+
Migrating to CreateFlmsKeyframes (20130327183815)
|
|
86311
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
86312
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "flms_keyframes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "layer_id" integer, "type" varchar(255), "scroll_start" integer, "scroll_duration" integer, "width" float, "height" float, "position_x" float, "position_y" float, "opacity" float, "scale" float, "blur" float)
|
|
86313
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130327183815')[0m
|
|
86314
|
+
[1m[35m (1.0ms)[0m commit transaction
|
|
86315
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
86316
|
+
Connecting to database specified by database.yml
|
|
86317
|
+
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
86318
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
86319
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "flms_blocks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
86320
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "flms_blocks_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "block_id" integer, "page_id" integer, "ordering" integer, "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
86321
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_flms_blocks_pages_on_block_id" ON "flms_blocks_pages" ("block_id")[0m
|
|
86322
|
+
[1m[35m (1.0ms)[0m CREATE INDEX "index_flms_blocks_pages_on_page_id" ON "flms_blocks_pages" ("page_id")
|
|
86323
|
+
[1m[36m (0.7ms)[0m [1mCREATE TABLE "flms_keyframes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "layer_id" integer, "type" varchar(255), "scroll_start" integer, "scroll_duration" integer, "width" float, "height" float, "position_x" float, "position_y" float, "opacity" float, "scale" float, "blur" float) [0m
|
|
86324
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "flms_layers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "block_id" integer, "ordering" integer, "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "image" varchar(255))
|
|
86325
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_flms_layers_on_block_id" ON "flms_layers" ("block_id")[0m
|
|
86326
|
+
[1m[35m (0.6ms)[0m CREATE TABLE "flms_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
86327
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_flms_pages_on_url" ON "flms_pages" ("url")[0m
|
|
86328
|
+
[1m[35m (1.2ms)[0m CREATE TABLE "flms_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
86329
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_flms_users_on_email" ON "flms_users" ("email")[0m
|
|
86330
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_flms_users_on_reset_password_token" ON "flms_users" ("reset_password_token")
|
|
86331
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
86332
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
86333
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
86334
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130327183815')
|
|
86335
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130208224914')[0m
|
|
86336
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130216032241')
|
|
86337
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130302011705')[0m
|
|
86338
|
+
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130302015459')
|
|
86339
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130312220011')[0m
|
|
86340
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130313002421')
|
|
86341
|
+
Connecting to database specified by database.yml
|
|
86342
|
+
|
|
86343
|
+
|
|
86344
|
+
Started GET "/?q=cof" for 127.0.0.1 at 2013-04-09 10:10:36 -0700
|
|
86345
|
+
Processing by HomeController#index as HTML
|
|
86346
|
+
Parameters: {"q"=>"cof"}
|
|
86347
|
+
Rendered home/index.html.haml (3.8ms)
|
|
86348
|
+
Completed 200 OK in 55ms (Views: 54.7ms | ActiveRecord: 0.0ms)
|
|
86349
|
+
|
|
86350
|
+
|
|
86351
|
+
Started GET "/" for 127.0.0.1 at 2013-04-09 10:10:53 -0700
|
|
86352
|
+
Processing by HomeController#index as HTML
|
|
86353
|
+
Rendered home/index.html.haml (0.1ms)
|
|
86354
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
|
86355
|
+
|
|
86356
|
+
|
|
86357
|
+
Started GET "/admin" for 127.0.0.1 at 2013-04-09 10:11:01 -0700
|
|
86358
|
+
|
|
86359
|
+
ActionController::RoutingError (No route matches [GET] "/admin"):
|
|
86360
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
86361
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
86362
|
+
railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
|
|
86363
|
+
railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
|
|
86364
|
+
activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
86365
|
+
railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
|
|
86366
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
86367
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
86368
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
86369
|
+
activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
86370
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
86371
|
+
actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
|
|
86372
|
+
railties (3.2.12) lib/rails/engine.rb:479:in `call'
|
|
86373
|
+
railties (3.2.12) lib/rails/application.rb:223:in `call'
|
|
86374
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
86375
|
+
railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
86376
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
86377
|
+
/Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
86378
|
+
/Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
86379
|
+
/Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
86380
|
+
|
|
86381
|
+
|
|
86382
|
+
Rendered /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/gems/1.9.1/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
|
|
86383
|
+
|
|
86384
|
+
|
|
86385
|
+
Started GET "/flms/login" for 127.0.0.1 at 2013-04-09 10:11:06 -0700
|
|
86386
|
+
Processing by Flms::SessionsController#new as HTML
|
|
86387
|
+
[1m[36mFlms::User Load (0.6ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
86388
|
+
Rendered /Users/kevin/flms/app/views/flms/sessions/new.html.haml within layouts/flms/admin_login (2.6ms)
|
|
86389
|
+
Compiled flms/blocks/index.css (164ms) (pid 29208)
|
|
86390
|
+
Compiled flms/blocks/show.css (1ms) (pid 29208)
|
|
86391
|
+
Compiled flms/home.css (3ms) (pid 29208)
|
|
86392
|
+
Compiled flms/layout.css (2ms) (pid 29208)
|
|
86393
|
+
Compiled flms/login.css (3ms) (pid 29208)
|
|
86394
|
+
Compiled jquery-ui.css (0ms) (pid 29208)
|
|
86395
|
+
Compiled bootstrap.css (0ms) (pid 29208)
|
|
86396
|
+
Compiled bootstrapSwitch.css (0ms) (pid 29208)
|
|
86397
|
+
Compiled flms/admin.css (245ms) (pid 29208)
|
|
86398
|
+
Compiled jquery.js (40ms) (pid 29208)
|
|
86399
|
+
Compiled jquery_ujs.js (0ms) (pid 29208)
|
|
86400
|
+
Compiled jquery-ui.js (5ms) (pid 29208)
|
|
86401
|
+
Compiled modularity/modularity.js (189ms) (pid 29208)
|
|
86402
|
+
Compiled flms/blocks/index/block.js (118ms) (pid 29208)
|
|
86403
|
+
Compiled flms/blocks/index/block_list.js (120ms) (pid 29208)
|
|
86404
|
+
Compiled flms/blocks/index/index.js (130ms) (pid 29208)
|
|
86405
|
+
Compiled flms/bootstrap.js (0ms) (pid 29208)
|
|
86406
|
+
Compiled flms/layout.js (113ms) (pid 29208)
|
|
86407
|
+
Compiled bootstrapSwitch.js (0ms) (pid 29208)
|
|
86408
|
+
Compiled flms/admin.js (806ms) (pid 29208)
|
|
86409
|
+
Completed 200 OK in 1181ms (Views: 1166.2ms | ActiveRecord: 2.7ms)
|
|
86410
|
+
|
|
86411
|
+
|
|
86412
|
+
Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
|
|
86413
|
+
Served asset /flms/blocks/index.css - 200 OK (2ms)
|
|
86414
|
+
|
|
86415
|
+
|
|
86416
|
+
Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
|
|
86417
|
+
Served asset /flms/blocks/show.css - 200 OK (2ms)
|
|
86418
|
+
|
|
86419
|
+
|
|
86420
|
+
Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
|
|
86421
|
+
Served asset /flms/layout.css - 200 OK (5ms)
|
|
86422
|
+
|
|
86423
|
+
|
|
86424
|
+
Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
|
|
86425
|
+
Served asset /flms/home.css - 200 OK (1ms)
|
|
86426
|
+
|
|
86427
|
+
|
|
86428
|
+
Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
|
|
86429
|
+
Served asset /flms/login.css - 200 OK (1ms)
|
|
86430
|
+
|
|
86431
|
+
|
|
86432
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
|
|
86433
|
+
Served asset /bootstrap.css - 200 OK (2ms)
|
|
86434
|
+
|
|
86435
|
+
|
|
86436
|
+
Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
|
|
86437
|
+
Served asset /jquery-ui.css - 200 OK (2ms)
|
|
86438
|
+
|
|
86439
|
+
|
|
86440
|
+
Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
|
|
86441
|
+
Served asset /bootstrapSwitch.css - 200 OK (2ms)
|
|
86442
|
+
|
|
86443
|
+
|
|
86444
|
+
Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
|
|
86445
|
+
Served asset /flms/admin.css - 200 OK (8ms)
|
|
86446
|
+
|
|
86447
|
+
|
|
86448
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
|
|
86449
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
|
86450
|
+
|
|
86451
|
+
|
|
86452
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
|
|
86453
|
+
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
|
86454
|
+
|
|
86455
|
+
|
|
86456
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
|
|
86457
|
+
Served asset /jquery-ui.js - 304 Not Modified (4ms)
|
|
86458
|
+
|
|
86459
|
+
|
|
86460
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
|
|
86461
|
+
Served asset /modularity/modularity.js - 200 OK (3ms)
|
|
86462
|
+
|
|
86463
|
+
|
|
86464
|
+
Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
|
|
86465
|
+
Served asset /flms/blocks/index/block.js - 200 OK (3ms)
|
|
86466
|
+
|
|
86467
|
+
|
|
86468
|
+
Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
|
|
86469
|
+
Served asset /flms/blocks/index/block_list.js - 200 OK (3ms)
|
|
86470
|
+
|
|
86471
|
+
|
|
86472
|
+
Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
|
|
86473
|
+
Served asset /flms/blocks/index/index.js - 200 OK (3ms)
|
|
86474
|
+
|
|
86475
|
+
|
|
86476
|
+
Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
|
|
86477
|
+
Served asset /flms/bootstrap.js - 200 OK (1ms)
|
|
86478
|
+
|
|
86479
|
+
|
|
86480
|
+
Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
|
|
86481
|
+
Served asset /flms/layout.js - 200 OK (1ms)
|
|
86482
|
+
|
|
86483
|
+
|
|
86484
|
+
Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
|
|
86485
|
+
Served asset /bootstrapSwitch.js - 200 OK (1ms)
|
|
86486
|
+
|
|
86487
|
+
|
|
86488
|
+
Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
|
|
86489
|
+
Served asset /flms/admin.js - 200 OK (56ms)
|
|
86490
|
+
|
|
86491
|
+
|
|
86492
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 10:11:12 -0700
|
|
86493
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
86494
|
+
|
|
86495
|
+
|
|
86496
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 10:11:27 -0700
|
|
86497
|
+
Compiled bootstrap.css (0ms) (pid 29208)
|
|
86498
|
+
Served asset /bootstrap.css - 200 OK (6ms)
|
|
86499
|
+
|
|
86500
|
+
|
|
86501
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 10:11:44 -0700
|
|
86502
|
+
Compiled bootstrap.css (1121ms) (pid 29208)
|
|
86503
|
+
Served asset /bootstrap.css - 200 OK (1129ms)
|
|
86504
|
+
|
|
86505
|
+
|
|
86506
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 10:13:03 -0700
|
|
86507
|
+
Error compiling asset bootstrap.css:
|
|
86508
|
+
Sass::SyntaxError: Invalid CSS after "...kground-image: ": expected expression (e.g. 1px, bold), was "<%= image_url "..."
|
|
86509
|
+
(in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.scss)
|
|
86510
|
+
Served asset /bootstrap.css - 500 Internal Server Error
|
|
86511
|
+
|
|
86512
|
+
|
|
86513
|
+
|
|
86514
|
+
|
|
86515
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 10:13:16 -0700
|
|
86516
|
+
Error compiling asset bootstrap.css:
|
|
86517
|
+
NoMethodError: undefined method `image_url' for #<#<Class:0x007fadad32d360>:0x007fadad768c68>
|
|
86518
|
+
(in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb)
|
|
86519
|
+
Served asset /bootstrap.css - 500 Internal Server Error
|
|
86520
|
+
|
|
86521
|
+
|
|
86522
|
+
|
|
86523
|
+
|
|
86524
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 10:14:16 -0700
|
|
86525
|
+
Error compiling asset bootstrap.css:
|
|
86526
|
+
NoMethodError: undefined method `image_url' for #<#<Class:0x007fadad32d360>:0x007fadae048d38>
|
|
86527
|
+
(in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb)
|
|
86528
|
+
Served asset /bootstrap.css - 500 Internal Server Error
|
|
86529
|
+
|
|
86530
|
+
|
|
86531
|
+
|
|
86532
|
+
|
|
86533
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 10:14:17 -0700
|
|
86534
|
+
Error compiling asset bootstrap.css:
|
|
86535
|
+
NoMethodError: undefined method `image_url' for #<#<Class:0x007fadad32d360>:0x007fadae5838c0>
|
|
86536
|
+
(in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb)
|
|
86537
|
+
Served asset /bootstrap.css - 500 Internal Server Error
|
|
86538
|
+
|
|
86539
|
+
|
|
86540
|
+
|
|
86541
|
+
|
|
86542
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 10:14:46 -0700
|
|
86543
|
+
Error compiling asset bootstrap.css:
|
|
86544
|
+
NoMethodError: undefined method `image_url' for #<#<Class:0x007fadad32d360>:0x007fadae512c88>
|
|
86545
|
+
(in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb)
|
|
86546
|
+
Served asset /bootstrap.css - 500 Internal Server Error
|
|
86547
|
+
|
|
86548
|
+
|
|
86549
|
+
|
|
86550
|
+
|
|
86551
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 10:14:47 -0700
|
|
86552
|
+
Error compiling asset bootstrap.css:
|
|
86553
|
+
NoMethodError: undefined method `image_url' for #<#<Class:0x007fadad32d360>:0x007fadaba35f10>
|
|
86554
|
+
(in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb)
|
|
86555
|
+
Served asset /bootstrap.css - 500 Internal Server Error
|
|
86556
|
+
|
|
86557
|
+
|
|
86558
|
+
|
|
86559
|
+
|
|
86560
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 11:18:42 -0700
|
|
86561
|
+
Error compiling asset bootstrap.css:
|
|
86562
|
+
SyntaxError: /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb:2286: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '('
|
|
86563
|
+
..."; _erbout.concat(( image-url "/glyphicons-halflings.png" )....
|
|
86564
|
+
... ^
|
|
86565
|
+
(in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb)
|
|
86566
|
+
Served asset /bootstrap.css - 500 Internal Server Error
|
|
86567
|
+
|
|
86568
|
+
|
|
86569
|
+
|
|
86570
|
+
|
|
86571
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 11:18:55 -0700
|
|
86572
|
+
Error compiling asset bootstrap.css:
|
|
86573
|
+
SyntaxError: /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb:2286: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '('
|
|
86574
|
+
..."; _erbout.concat(( asset-url "/glyphicons-halflings.png" )....
|
|
86575
|
+
... ^
|
|
86576
|
+
(in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb)
|
|
86577
|
+
Served asset /bootstrap.css - 500 Internal Server Error
|
|
86578
|
+
|
|
86579
|
+
|
|
86580
|
+
|
|
86581
|
+
|
|
86582
|
+
Started GET "/?q=cof" for 127.0.0.1 at 2013-04-09 11:19:42 -0700
|
|
86583
|
+
Processing by HomeController#index as HTML
|
|
86584
|
+
Parameters: {"q"=>"cof"}
|
|
86585
|
+
Rendered home/index.html.haml (0.2ms)
|
|
86586
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
|
86587
|
+
|
|
86588
|
+
|
|
86589
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 11:23:15 -0700
|
|
86590
|
+
Error compiling asset bootstrap.css:
|
|
86591
|
+
SyntaxError: /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb:2286: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '('
|
|
86592
|
+
..."; _erbout.concat(( asset-url "/glyphicons-halflings.png", i...
|
|
86593
|
+
... ^
|
|
86594
|
+
/Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb:2286: syntax error, unexpected ',', expecting ')'
|
|
86595
|
+
...rl "/glyphicons-halflings.png", image ).to_s); _erbout.conca...
|
|
86596
|
+
... ^
|
|
86597
|
+
(in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb)
|
|
86598
|
+
Served asset /bootstrap.css - 500 Internal Server Error
|
|
86599
|
+
|
|
86600
|
+
|
|
86601
|
+
|
|
86602
|
+
|
|
86603
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 11:30:38 -0700
|
|
86604
|
+
Error compiling asset bootstrap.css:
|
|
86605
|
+
SyntaxError: /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb:2286: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '('
|
|
86606
|
+
..."; _erbout.concat(( asset-url "/glyphicons-halflings.png", i...
|
|
86607
|
+
... ^
|
|
86608
|
+
/Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb:2286: syntax error, unexpected ',', expecting ')'
|
|
86609
|
+
...rl "/glyphicons-halflings.png", image ).to_s); _erbout.conca...
|
|
86610
|
+
... ^
|
|
86611
|
+
(in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb)
|
|
86612
|
+
Served asset /bootstrap.css - 500 Internal Server Error
|
|
86613
|
+
|
|
86614
|
+
|
|
86615
|
+
|
|
86616
|
+
|
|
86617
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 11:30:38 -0700
|
|
86618
|
+
Error compiling asset bootstrap.css:
|
|
86619
|
+
SyntaxError: /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb:2286: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '('
|
|
86620
|
+
..."; _erbout.concat(( asset-url "/glyphicons-halflings.png", i...
|
|
86621
|
+
... ^
|
|
86622
|
+
/Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb:2286: syntax error, unexpected ',', expecting ')'
|
|
86623
|
+
...rl "/glyphicons-halflings.png", image ).to_s); _erbout.conca...
|
|
86624
|
+
... ^
|
|
86625
|
+
(in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb)
|
|
86626
|
+
Served asset /bootstrap.css - 500 Internal Server Error
|
|
86627
|
+
|
|
86628
|
+
|
|
86629
|
+
|
|
86630
|
+
|
|
86631
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 13:04:16 -0700
|
|
86632
|
+
Error compiling asset bootstrap.css:
|
|
86633
|
+
NameError: undefined local variable or method `image' for #<#<Class:0x007fadad32d360>:0x007fadb283dfa8>
|
|
86634
|
+
(in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb)
|
|
86635
|
+
Served asset /bootstrap.css - 500 Internal Server Error
|
|
86636
|
+
|
|
86637
|
+
|
|
86638
|
+
|
|
86639
|
+
|
|
86640
|
+
Started GET "/?q=cof" for 127.0.0.1 at 2013-04-09 13:04:24 -0700
|
|
86641
|
+
Processing by HomeController#index as HTML
|
|
86642
|
+
Parameters: {"q"=>"cof"}
|
|
86643
|
+
Rendered home/index.html.haml (0.1ms)
|
|
86644
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
|
86645
|
+
|
|
86646
|
+
|
|
86647
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 13:04:30 -0700
|
|
86648
|
+
Compiled bootstrap.css (105ms) (pid 29208)
|
|
86649
|
+
Served asset /bootstrap.css - 200 OK (111ms)
|
|
86650
|
+
|
|
86651
|
+
|
|
86652
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 13:05:18 -0700
|
|
86653
|
+
Compiled bootstrap.css (105ms) (pid 29208)
|
|
86654
|
+
Served asset /bootstrap.css - 200 OK (147ms)
|
|
86655
|
+
|
|
86656
|
+
|
|
86657
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 13:05:22 -0700
|
|
86658
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
86659
|
+
|
|
86660
|
+
|
|
86661
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 13:05:27 -0700
|
|
86662
|
+
Compiled bootstrap.css (104ms) (pid 29208)
|
|
86663
|
+
Served asset /bootstrap.css - 200 OK (109ms)
|
|
86664
|
+
|
|
86665
|
+
|
|
86666
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 13:05:36 -0700
|
|
86667
|
+
Compiled bootstrap.css (106ms) (pid 29208)
|
|
86668
|
+
Served asset /bootstrap.css - 200 OK (111ms)
|
|
86669
|
+
|
|
86670
|
+
|
|
86671
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 13:05:47 -0700
|
|
86672
|
+
Compiled bootstrap.css (103ms) (pid 29208)
|
|
86673
|
+
Served asset /bootstrap.css - 200 OK (108ms)
|
|
86674
|
+
|
|
86675
|
+
|
|
86676
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 13:05:51 -0700
|
|
86677
|
+
Compiled bootstrap.css (105ms) (pid 29208)
|
|
86678
|
+
Served asset /bootstrap.css - 200 OK (110ms)
|
|
86679
|
+
|
|
86680
|
+
|
|
86681
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 13:06:13 -0700
|
|
86682
|
+
Compiled bootstrap.css (107ms) (pid 29208)
|
|
86683
|
+
Served asset /bootstrap.css - 200 OK (113ms)
|
|
86684
|
+
|
|
86685
|
+
|
|
86686
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 13:06:23 -0700
|
|
86687
|
+
Compiled bootstrap.css (105ms) (pid 29208)
|
|
86688
|
+
Served asset /bootstrap.css - 304 Not Modified (110ms)
|
|
86689
|
+
|
|
86690
|
+
|
|
86691
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 13:06:28 -0700
|
|
86692
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
86693
|
+
|
|
86694
|
+
|
|
86695
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 13:06:29 -0700
|
|
86696
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
86697
|
+
|
|
86698
|
+
|
|
86699
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 13:06:30 -0700
|
|
86700
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
86701
|
+
|
|
86702
|
+
|
|
86703
|
+
Started GET "/?q=cof" for 127.0.0.1 at 2013-04-09 14:30:03 -0700
|
|
86704
|
+
Processing by HomeController#index as HTML
|
|
86705
|
+
Parameters: {"q"=>"cof"}
|
|
86706
|
+
Rendered home/index.html.haml (0.1ms)
|
|
86707
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
|
86708
|
+
Connecting to database specified by database.yml
|
|
86709
|
+
|
|
86710
|
+
|
|
86711
|
+
Started GET "/?q=cof" for 127.0.0.1 at 2013-04-10 13:00:13 -0700
|
|
86712
|
+
Processing by HomeController#index as HTML
|
|
86713
|
+
Parameters: {"q"=>"cof"}
|
|
86714
|
+
Rendered home/index.html.haml (15.2ms)
|
|
86715
|
+
Completed 200 OK in 97ms (Views: 76.5ms | ActiveRecord: 0.0ms)
|
|
86716
|
+
|
|
86717
|
+
|
|
86718
|
+
Started GET "/?q=cof" for 127.0.0.1 at 2013-04-11 10:35:58 -0700
|
|
86719
|
+
Processing by HomeController#index as HTML
|
|
86720
|
+
Parameters: {"q"=>"cof"}
|
|
86721
|
+
Rendered home/index.html.haml (0.1ms)
|
|
86722
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
|
86723
|
+
|
|
86724
|
+
|
|
86725
|
+
Started GET "/?q=cof" for 127.0.0.1 at 2013-04-11 11:42:25 -0700
|
|
86726
|
+
Processing by HomeController#index as HTML
|
|
86727
|
+
Parameters: {"q"=>"cof"}
|
|
86728
|
+
Rendered home/index.html.haml (0.1ms)
|
|
86729
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
|
86730
|
+
|
|
86731
|
+
|
|
86732
|
+
Started GET "/?q=cof" for 127.0.0.1 at 2013-04-11 13:02:18 -0700
|
|
86733
|
+
Processing by HomeController#index as HTML
|
|
86734
|
+
Parameters: {"q"=>"cof"}
|
|
86735
|
+
Rendered home/index.html.haml (0.1ms)
|
|
86736
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
|
86737
|
+
|
|
86738
|
+
|
|
86739
|
+
Started GET "/?q=cof" for 127.0.0.1 at 2013-04-11 14:45:14 -0700
|
|
86740
|
+
Processing by HomeController#index as HTML
|
|
86741
|
+
Parameters: {"q"=>"cof"}
|
|
86742
|
+
Rendered home/index.html.haml (0.1ms)
|
|
86743
|
+
Completed 200 OK in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
|
86744
|
+
|
|
86745
|
+
|
|
86746
|
+
Started GET "/?q=cof" for 127.0.0.1 at 2013-04-11 16:33:16 -0700
|
|
86747
|
+
Processing by HomeController#index as HTML
|
|
86748
|
+
Parameters: {"q"=>"cof"}
|
|
86749
|
+
Rendered home/index.html.haml (0.1ms)
|
|
86750
|
+
Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
|
86751
|
+
|
|
86752
|
+
|
|
86753
|
+
Started GET "/?q=cof" for 127.0.0.1 at 2013-04-11 20:12:13 -0700
|
|
86754
|
+
Processing by HomeController#index as HTML
|
|
86755
|
+
Parameters: {"q"=>"cof"}
|
|
86756
|
+
Rendered home/index.html.haml (0.2ms)
|
|
86757
|
+
Completed 200 OK in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
|
86758
|
+
|
|
86759
|
+
|
|
86760
|
+
Started GET "/?q=cof" for 127.0.0.1 at 2013-04-12 11:48:57 -0700
|
|
86761
|
+
Processing by HomeController#index as HTML
|
|
86762
|
+
Parameters: {"q"=>"cof"}
|
|
86763
|
+
Rendered home/index.html.haml (15.2ms)
|
|
86764
|
+
Completed 200 OK in 86ms (Views: 68.3ms | ActiveRecord: 0.0ms)
|
|
86765
|
+
|
|
86766
|
+
|
|
86767
|
+
Started GET "/?q=cof" for 127.0.0.1 at 2013-04-12 13:02:43 -0700
|
|
86768
|
+
Processing by HomeController#index as HTML
|
|
86769
|
+
Parameters: {"q"=>"cof"}
|
|
86770
|
+
Rendered home/index.html.haml (0.3ms)
|
|
86771
|
+
Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
|
|
86772
|
+
|
|
86773
|
+
|
|
86774
|
+
Started GET "/flms/login" for 127.0.0.1 at 2013-04-12 16:42:30 -0700
|
|
86775
|
+
Processing by Flms::SessionsController#new as HTML
|
|
86776
|
+
Rendered /Users/kevin/flms/app/views/flms/sessions/new.html.haml within layouts/flms/admin_login (15.9ms)
|
|
86777
|
+
Compiled flms/admin.css (157ms) (pid 29208)
|
|
86778
|
+
Completed 200 OK in 479ms (Views: 468.2ms | ActiveRecord: 0.0ms)
|
|
86779
|
+
|
|
86780
|
+
|
|
86781
|
+
Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
|
|
86782
|
+
Served asset /flms/blocks/index.css - 200 OK (0ms)
|
|
86783
|
+
|
|
86784
|
+
|
|
86785
|
+
Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
|
|
86786
|
+
Served asset /flms/blocks/show.css - 200 OK (0ms)
|
|
86787
|
+
|
|
86788
|
+
|
|
86789
|
+
Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
|
|
86790
|
+
Served asset /flms/home.css - 200 OK (0ms)
|
|
86791
|
+
|
|
86792
|
+
|
|
86793
|
+
Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
|
|
86794
|
+
Served asset /flms/login.css - 200 OK (0ms)
|
|
86795
|
+
|
|
86796
|
+
|
|
86797
|
+
Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
|
|
86798
|
+
Served asset /jquery-ui.css - 200 OK (0ms)
|
|
86799
|
+
|
|
86800
|
+
|
|
86801
|
+
Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
|
|
86802
|
+
Served asset /flms/layout.css - 200 OK (0ms)
|
|
86803
|
+
|
|
86804
|
+
|
|
86805
|
+
Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
|
|
86806
|
+
Served asset /flms/admin.css - 200 OK (114ms)
|
|
86807
|
+
|
|
86808
|
+
|
|
86809
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
|
|
86810
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
86811
|
+
|
|
86812
|
+
|
|
86813
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
|
|
86814
|
+
Served asset /jquery_ujs.js - 200 OK (0ms)
|
|
86815
|
+
|
|
86816
|
+
|
|
86817
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
|
|
86818
|
+
Served asset /jquery-ui.js - 200 OK (0ms)
|
|
86819
|
+
|
|
86820
|
+
|
|
86821
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
|
|
86822
|
+
Served asset /jquery.js - 200 OK (0ms)
|
|
86823
|
+
|
|
86824
|
+
|
|
86825
|
+
Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
|
|
86826
|
+
Served asset /bootstrapSwitch.css - 200 OK (0ms)
|
|
86827
|
+
|
|
86828
|
+
|
|
86829
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
|
|
86830
|
+
Served asset /modularity/modularity.js - 200 OK (0ms)
|
|
86831
|
+
|
|
86832
|
+
|
|
86833
|
+
Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
|
|
86834
|
+
Served asset /flms/blocks/index/block.js - 200 OK (0ms)
|
|
86835
|
+
|
|
86836
|
+
|
|
86837
|
+
Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
|
|
86838
|
+
Served asset /flms/blocks/index/block_list.js - 200 OK (0ms)
|
|
86839
|
+
|
|
86840
|
+
|
|
86841
|
+
Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
|
|
86842
|
+
Served asset /flms/bootstrap.js - 200 OK (0ms)
|
|
86843
|
+
|
|
86844
|
+
|
|
86845
|
+
Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
|
|
86846
|
+
Served asset /flms/blocks/index/index.js - 200 OK (0ms)
|
|
86847
|
+
|
|
86848
|
+
|
|
86849
|
+
Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
|
|
86850
|
+
Served asset /flms/admin.js - 200 OK (0ms)
|
|
86851
|
+
|
|
86852
|
+
|
|
86853
|
+
Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
|
|
86854
|
+
Served asset /flms/layout.js - 200 OK (0ms)
|
|
86855
|
+
|
|
86856
|
+
|
|
86857
|
+
Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
|
|
86858
|
+
Served asset /bootstrapSwitch.js - 200 OK (0ms)
|
|
86859
|
+
Connecting to database specified by database.yml
|
|
86860
|
+
[1m[36m (3.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
86861
|
+
Migrating to FlmsDeviseCreateUsers (20130208224914)
|
|
86862
|
+
Migrating to FlmsCreatePages (20130216032241)
|
|
86863
|
+
Migrating to CreateFlmsBlocks (20130302011705)
|
|
86864
|
+
Migrating to CreateFlmsBlocksPages (20130302015459)
|
|
86865
|
+
Migrating to CreateFlmsLayers (20130312220011)
|
|
86866
|
+
Migrating to AddImageToLayers (20130313002421)
|
|
86867
|
+
Migrating to CreateFlmsKeyframes (20130327183815)
|
|
86868
|
+
Migrating to RemoveOrderingFromLayers (20130404201756)
|
|
86869
|
+
[1m[35m (0.4ms)[0m select sqlite_version(*)
|
|
86870
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
86871
|
+
[1m[35m (0.5ms)[0m CREATE TEMPORARY TABLE "altered_flms_layers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "block_id" integer, "ordering" integer, "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "image" varchar(255))
|
|
86872
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "temp_index_altered_flms_layers_on_block_id" ON "altered_flms_layers" ("block_id")[0m
|
|
86873
|
+
[1m[35m (0.4ms)[0m SELECT * FROM "flms_layers"
|
|
86874
|
+
[1m[36m (1.6ms)[0m [1mDROP TABLE "flms_layers"[0m
|
|
86875
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "flms_layers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "block_id" integer, "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "image" varchar(255))
|
|
86876
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_flms_layers_on_block_id" ON "flms_layers" ("block_id")[0m
|
|
86877
|
+
[1m[35m (0.0ms)[0m SELECT * FROM "altered_flms_layers"
|
|
86878
|
+
[1m[36m (0.3ms)[0m [1mDROP TABLE "altered_flms_layers"[0m
|
|
86879
|
+
[1m[35m (0.4ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20130404201756')
|
|
86880
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
|
86881
|
+
Migrating to AddTextLayers (20130415185500)
|
|
86882
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
86883
|
+
[1m[36m (0.7ms)[0m [1mALTER TABLE "flms_layers" ADD "text" varchar(255)[0m
|
|
86884
|
+
[1m[35m (0.1ms)[0m ALTER TABLE "flms_layers" ADD "font_size" float
|
|
86885
|
+
[1m[36m (0.1ms)[0m [1mALTER TABLE "flms_layers" ADD "color" varchar(255)[0m
|
|
86886
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20130415185500')
|
|
86887
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
|
86888
|
+
Migrating to StoreSizeInLayers (20130417210408)
|
|
86889
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
86890
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "flms_layers" ADD "width" float[0m
|
|
86891
|
+
[1m[35m (0.1ms)[0m ALTER TABLE "flms_layers" ADD "height" float
|
|
86892
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130417210408')[0m
|
|
86893
|
+
[1m[35m (0.6ms)[0m commit transaction
|
|
86894
|
+
Migrating to StoreMarginInKeyframes (20130418191643)
|
|
86895
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
86896
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "flms_keyframes" ADD "margin_left" float DEFAULT 0
|
|
86897
|
+
[1m[36m (0.1ms)[0m [1mALTER TABLE "flms_keyframes" ADD "margin_top" float DEFAULT 0[0m
|
|
86898
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20130418191643')
|
|
86899
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
86900
|
+
Migrating to LayersRemoveFromDom (20130418222016)
|
|
86901
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
86902
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "flms_layers" ADD "dom_remove" boolean DEFAULT 't'[0m
|
|
86903
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20130418222016')
|
|
86904
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
86905
|
+
Migrating to AddParagraphLayers (20130422193150)
|
|
86906
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
86907
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "flms_layers" ADD "header" varchar(255)[0m
|
|
86908
|
+
[1m[35m (0.1ms)[0m ALTER TABLE "flms_layers" ADD "body" varchar(255)
|
|
86909
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130422193150')[0m
|
|
86910
|
+
[1m[35m (0.6ms)[0m commit transaction
|
|
86911
|
+
Migrating to LayersHaveZValue (20130426171058)
|
|
86912
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
86913
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "flms_layers" ADD "z_index" varchar(255) DEFAULT '0' NOT NULL
|
|
86914
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130426171058')[0m
|
|
86915
|
+
[1m[35m (0.9ms)[0m commit transaction
|
|
86916
|
+
Migrating to AddEmbedCodeToLayers (20130430224538)
|
|
86917
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
86918
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "flms_layers" ADD "embed_code" varchar(255)
|
|
86919
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130430224538')[0m
|
|
86920
|
+
[1m[35m (0.5ms)[0m commit transaction
|
|
86921
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
86922
|
+
Connecting to database specified by database.yml
|
|
86923
|
+
[1m[36m (1.9ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
86924
|
+
Migrating to FlmsDeviseCreateUsers (20130208224914)
|
|
86925
|
+
Migrating to FlmsCreatePages (20130216032241)
|
|
86926
|
+
Migrating to CreateFlmsBlocks (20130302011705)
|
|
86927
|
+
Migrating to CreateFlmsBlocksPages (20130302015459)
|
|
86928
|
+
Migrating to CreateFlmsLayers (20130312220011)
|
|
86929
|
+
Migrating to AddImageToLayers (20130313002421)
|
|
86930
|
+
Migrating to CreateFlmsKeyframes (20130327183815)
|
|
86931
|
+
Migrating to RemoveOrderingFromLayers (20130404201756)
|
|
86932
|
+
Migrating to AddTextLayers (20130415185500)
|
|
86933
|
+
Migrating to StoreSizeInLayers (20130417210408)
|
|
86934
|
+
Migrating to StoreMarginInKeyframes (20130418191643)
|
|
86935
|
+
Migrating to LayersRemoveFromDom (20130418222016)
|
|
86936
|
+
Migrating to AddParagraphLayers (20130422193150)
|
|
86937
|
+
Migrating to LayersHaveZValue (20130426171058)
|
|
86938
|
+
Migrating to AddEmbedCodeToLayers (20130430224538)
|
|
86939
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
86940
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
86941
|
+
Connecting to database specified by database.yml
|
|
86942
|
+
[1m[36m (1.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
86943
|
+
[1m[35m (0.4ms)[0m select sqlite_version(*)
|
|
86944
|
+
[1m[36m (0.9ms)[0m [1mDROP TABLE "flms_blocks"[0m
|
|
86945
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "flms_blocks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
86946
|
+
[1m[36m (0.8ms)[0m [1mDROP TABLE "flms_blocks_pages"[0m
|
|
86947
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "flms_blocks_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "block_id" integer, "page_id" integer, "ordering" integer, "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
86948
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_flms_blocks_pages_on_block_id" ON "flms_blocks_pages" ("block_id")[0m
|
|
86949
|
+
[1m[35m (1.1ms)[0m CREATE INDEX "index_flms_blocks_pages_on_page_id" ON "flms_blocks_pages" ("page_id")
|
|
86950
|
+
[1m[36m (1.0ms)[0m [1mDROP TABLE "flms_keyframes"[0m
|
|
86951
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "flms_keyframes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "layer_id" integer, "type" varchar(255), "scroll_start" integer, "scroll_duration" integer, "width" float, "height" float, "position_x" float, "position_y" float, "opacity" float, "scale" float, "blur" float, "margin_left" float DEFAULT 0.0, "margin_top" float DEFAULT 0.0)
|
|
86952
|
+
[1m[36m (0.9ms)[0m [1mDROP TABLE "flms_layers"[0m
|
|
86953
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "flms_layers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "block_id" integer, "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "image" varchar(255), "text" varchar(255), "font_size" float, "color" varchar(255), "width" float, "height" float, "dom_remove" boolean DEFAULT 't', "header" varchar(255), "body" varchar(255), "z_index" varchar(255) DEFAULT '0' NOT NULL, "embed_code" varchar(255))
|
|
86954
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_flms_layers_on_block_id" ON "flms_layers" ("block_id")[0m
|
|
86955
|
+
[1m[35m (0.6ms)[0m DROP TABLE "flms_pages"
|
|
86956
|
+
[1m[36m (0.6ms)[0m [1mCREATE TABLE "flms_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
86957
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_flms_pages_on_url" ON "flms_pages" ("url")
|
|
86958
|
+
[1m[36m (1.0ms)[0m [1mDROP TABLE "flms_users"[0m
|
|
86959
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "flms_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
86960
|
+
[1m[36m (0.6ms)[0m [1mCREATE UNIQUE INDEX "index_flms_users_on_email" ON "flms_users" ("email")[0m
|
|
86961
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_flms_users_on_reset_password_token" ON "flms_users" ("reset_password_token")
|
|
86962
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
86963
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130430224538')
|
|
86964
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130404201756')[0m
|
|
86965
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130415185500')
|
|
86966
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130417210408')[0m
|
|
86967
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130418191643')
|
|
86968
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130418222016')[0m
|
|
86969
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130422193150')
|
|
86970
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130426171058')[0m
|
|
86971
|
+
Connecting to database specified by database.yml
|
|
86972
|
+
|
|
86973
|
+
|
|
86974
|
+
Started GET "/" for 127.0.0.1 at 2013-05-06 10:34:35 -0700
|
|
86975
|
+
Processing by HomeController#index as HTML
|
|
86976
|
+
Rendered home/index.html.haml (2.3ms)
|
|
86977
|
+
Completed 200 OK in 47ms (Views: 47.2ms | ActiveRecord: 0.0ms)
|
|
86978
|
+
|
|
86979
|
+
|
|
86980
|
+
Started GET "/admin" for 127.0.0.1 at 2013-05-06 10:34:46 -0700
|
|
86981
|
+
|
|
86982
|
+
ActionController::RoutingError (No route matches [GET] "/admin"):
|
|
86983
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
86984
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
86985
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
|
86986
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
|
86987
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
86988
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
|
86989
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
86990
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
|
86991
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
|
86992
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
86993
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
|
86994
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
|
86995
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
|
86996
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
|
86997
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
|
86998
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
86999
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
|
87000
|
+
/Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
87001
|
+
/Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
87002
|
+
/Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
87003
|
+
|
|
87004
|
+
|
|
87005
|
+
Rendered /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
|
|
87006
|
+
|
|
87007
|
+
|
|
87008
|
+
Started GET "/flms/login" for 127.0.0.1 at 2013-05-06 10:34:49 -0700
|
|
87009
|
+
Processing by Flms::SessionsController#new as HTML
|
|
87010
|
+
Rendered /Users/kevin/flms/app/views/flms/sessions/new.html.haml within layouts/flms/admin_login (2.7ms)
|
|
87011
|
+
Compiled flms/admin/blocks/show.css (195ms) (pid 5810)
|
|
87012
|
+
Compiled flms/admin/home.css (5ms) (pid 5810)
|
|
87013
|
+
Compiled flms/admin/layers/form.css (1ms) (pid 5810)
|
|
87014
|
+
Compiled flms/admin/layout.css (4ms) (pid 5810)
|
|
87015
|
+
Compiled flms/admin/login.css (10ms) (pid 5810)
|
|
87016
|
+
Compiled flms/admin/pages/edit.css (5ms) (pid 5810)
|
|
87017
|
+
Compiled jquery-ui.css (0ms) (pid 5810)
|
|
87018
|
+
Compiled bootstrap.css (0ms) (pid 5810)
|
|
87019
|
+
Compiled bootstrapSwitch.css (0ms) (pid 5810)
|
|
87020
|
+
Compiled flms/admin.css (248ms) (pid 5810)
|
|
87021
|
+
Compiled jquery.js (1ms) (pid 5810)
|
|
87022
|
+
Compiled jquery_ujs.js (0ms) (pid 5810)
|
|
87023
|
+
Compiled jquery-ui.js (5ms) (pid 5810)
|
|
87024
|
+
Compiled modularity/tools/string_tools.js (136ms) (pid 5810)
|
|
87025
|
+
Compiled modularity/modularity.js (409ms) (pid 5810)
|
|
87026
|
+
Compiled flms/admin/bootstrap.js (0ms) (pid 5810)
|
|
87027
|
+
Compiled flms/admin/layout.js (137ms) (pid 5810)
|
|
87028
|
+
Compiled flms/admin/pages/edit/block.js (188ms) (pid 5810)
|
|
87029
|
+
Compiled flms/admin/pages/edit/block_list.js (141ms) (pid 5810)
|
|
87030
|
+
Compiled flms/admin/pages/edit/edit.js (151ms) (pid 5810)
|
|
87031
|
+
Compiled bootstrapSwitch.js (0ms) (pid 5810)
|
|
87032
|
+
Compiled flms/admin.js (1153ms) (pid 5810)
|
|
87033
|
+
Completed 200 OK in 1602ms (Views: 1600.9ms | ActiveRecord: 0.0ms)
|
|
87034
|
+
|
|
87035
|
+
|
|
87036
|
+
Started GET "/assets/flms/admin/blocks/show.css?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
|
|
87037
|
+
Served asset /flms/admin/blocks/show.css - 200 OK (4ms)
|
|
87038
|
+
|
|
87039
|
+
|
|
87040
|
+
Started GET "/assets/flms/admin/home.css?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
|
|
87041
|
+
Served asset /flms/admin/home.css - 200 OK (2ms)
|
|
87042
|
+
|
|
87043
|
+
|
|
87044
|
+
Started GET "/assets/flms/admin/layers/form.css?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
|
|
87045
|
+
Served asset /flms/admin/layers/form.css - 200 OK (2ms)
|
|
87046
|
+
|
|
87047
|
+
|
|
87048
|
+
Started GET "/assets/flms/admin/login.css?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
|
|
87049
|
+
Served asset /flms/admin/login.css - 200 OK (2ms)
|
|
87050
|
+
|
|
87051
|
+
|
|
87052
|
+
Started GET "/assets/flms/admin/layout.css?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
|
|
87053
|
+
Served asset /flms/admin/layout.css - 200 OK (2ms)
|
|
87054
|
+
|
|
87055
|
+
|
|
87056
|
+
Started GET "/assets/flms/admin/pages/edit.css?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
|
|
87057
|
+
Served asset /flms/admin/pages/edit.css - 200 OK (2ms)
|
|
87058
|
+
|
|
87059
|
+
|
|
87060
|
+
Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
|
|
87061
|
+
Served asset /jquery-ui.css - 200 OK (3ms)
|
|
87062
|
+
|
|
87063
|
+
|
|
87064
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
|
|
87065
|
+
Served asset /bootstrap.css - 200 OK (4ms)
|
|
87066
|
+
|
|
87067
|
+
|
|
87068
|
+
Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
|
|
87069
|
+
Served asset /bootstrapSwitch.css - 200 OK (2ms)
|
|
87070
|
+
|
|
87071
|
+
|
|
87072
|
+
Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
|
|
87073
|
+
Served asset /flms/admin.css - 200 OK (10ms)
|
|
87074
|
+
|
|
87075
|
+
|
|
87076
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
|
|
87077
|
+
Served asset /jquery.js - 304 Not Modified (2ms)
|
|
87078
|
+
|
|
87079
|
+
|
|
87080
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
|
|
87081
|
+
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
|
87082
|
+
|
|
87083
|
+
|
|
87084
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
|
|
87085
|
+
Served asset /jquery-ui.js - 304 Not Modified (5ms)
|
|
87086
|
+
|
|
87087
|
+
|
|
87088
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
|
|
87089
|
+
Served asset /modularity/modularity.js - 304 Not Modified (6ms)
|
|
87090
|
+
|
|
87091
|
+
|
|
87092
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
|
|
87093
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (1ms)
|
|
87094
|
+
|
|
87095
|
+
|
|
87096
|
+
Started GET "/assets/flms/admin/bootstrap.js?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
|
|
87097
|
+
Served asset /flms/admin/bootstrap.js - 200 OK (2ms)
|
|
87098
|
+
|
|
87099
|
+
|
|
87100
|
+
Started GET "/assets/flms/admin/layout.js?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
|
|
87101
|
+
Served asset /flms/admin/layout.js - 200 OK (3ms)
|
|
87102
|
+
|
|
87103
|
+
|
|
87104
|
+
Started GET "/assets/flms/admin/pages/edit/block.js?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
|
|
87105
|
+
Served asset /flms/admin/pages/edit/block.js - 200 OK (1ms)
|
|
87106
|
+
|
|
87107
|
+
|
|
87108
|
+
Started GET "/assets/flms/admin/pages/edit/block_list.js?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
|
|
87109
|
+
Served asset /flms/admin/pages/edit/block_list.js - 200 OK (2ms)
|
|
87110
|
+
|
|
87111
|
+
|
|
87112
|
+
Started GET "/assets/flms/admin/pages/edit/edit.js?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
|
|
87113
|
+
Served asset /flms/admin/pages/edit/edit.js - 200 OK (2ms)
|
|
87114
|
+
|
|
87115
|
+
|
|
87116
|
+
Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
|
|
87117
|
+
Served asset /bootstrapSwitch.js - 200 OK (2ms)
|
|
87118
|
+
|
|
87119
|
+
|
|
87120
|
+
Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-05-06 10:34:51 -0700
|
|
87121
|
+
Served asset /flms/admin.js - 200 OK (14ms)
|
|
87122
|
+
|
|
87123
|
+
|
|
87124
|
+
Started POST "/flms/login" for 127.0.0.1 at 2013-05-06 10:35:36 -0700
|
|
87125
|
+
Processing by Flms::SessionsController#create as HTML
|
|
87126
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"s4DMvE93KVaHsKXVv9Ji7tDWjTZryjFh4xPHfInwZ30=", "user"=>{"email"=>"kevin.goslar@originate.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"}
|
|
87127
|
+
[1m[36mFlms::User Load (0.5ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."email" = 'kevin.goslar@originate.com' LIMIT 1[0m
|
|
87128
|
+
Completed 401 Unauthorized in 11ms
|
|
87129
|
+
Processing by Flms::SessionsController#new as HTML
|
|
87130
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"s4DMvE93KVaHsKXVv9Ji7tDWjTZryjFh4xPHfInwZ30=", "user"=>{"email"=>"kevin.goslar@originate.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"}
|
|
87131
|
+
Rendered /Users/kevin/flms/app/views/flms/sessions/new.html.haml within layouts/flms/admin_login (1.3ms)
|
|
87132
|
+
Completed 200 OK in 166ms (Views: 165.3ms | ActiveRecord: 0.0ms)
|
|
87133
|
+
|
|
87134
|
+
|
|
87135
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:35:36 -0700
|
|
87136
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
87137
|
+
|
|
87138
|
+
|
|
87139
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:35:36 -0700
|
|
87140
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
|
87141
|
+
|
|
87142
|
+
|
|
87143
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:35:36 -0700
|
|
87144
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
87145
|
+
|
|
87146
|
+
|
|
87147
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:35:36 -0700
|
|
87148
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
87149
|
+
|
|
87150
|
+
|
|
87151
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:35:36 -0700
|
|
87152
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
87153
|
+
|
|
87154
|
+
|
|
87155
|
+
Started POST "/flms/login" for 127.0.0.1 at 2013-05-06 10:35:39 -0700
|
|
87156
|
+
Processing by Flms::SessionsController#create as HTML
|
|
87157
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"s4DMvE93KVaHsKXVv9Ji7tDWjTZryjFh4xPHfInwZ30=", "user"=>{"email"=>"kevin.goslar@originate.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"}
|
|
87158
|
+
[1m[35mFlms::User Load (0.2ms)[0m SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."email" = 'kevin.goslar@originate.com' LIMIT 1
|
|
87159
|
+
Completed 401 Unauthorized in 1ms
|
|
87160
|
+
Processing by Flms::SessionsController#new as HTML
|
|
87161
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"s4DMvE93KVaHsKXVv9Ji7tDWjTZryjFh4xPHfInwZ30=", "user"=>{"email"=>"kevin.goslar@originate.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"}
|
|
87162
|
+
Rendered /Users/kevin/flms/app/views/flms/sessions/new.html.haml within layouts/flms/admin_login (1.1ms)
|
|
87163
|
+
Completed 200 OK in 165ms (Views: 165.1ms | ActiveRecord: 0.0ms)
|
|
87164
|
+
|
|
87165
|
+
|
|
87166
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:35:40 -0700
|
|
87167
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
87168
|
+
|
|
87169
|
+
|
|
87170
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:35:40 -0700
|
|
87171
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
|
87172
|
+
|
|
87173
|
+
|
|
87174
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:35:40 -0700
|
|
87175
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
87176
|
+
|
|
87177
|
+
|
|
87178
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:35:40 -0700
|
|
87179
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
87180
|
+
|
|
87181
|
+
|
|
87182
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:35:40 -0700
|
|
87183
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
87184
|
+
|
|
87185
|
+
|
|
87186
|
+
Started POST "/flms/login" for 127.0.0.1 at 2013-05-06 10:35:43 -0700
|
|
87187
|
+
Processing by Flms::SessionsController#create as HTML
|
|
87188
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"s4DMvE93KVaHsKXVv9Ji7tDWjTZryjFh4xPHfInwZ30=", "user"=>{"email"=>"kevin.goslar@originate.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"}
|
|
87189
|
+
[1m[36mFlms::User Load (0.1ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."email" = 'kevin.goslar@originate.com' LIMIT 1[0m
|
|
87190
|
+
Completed 401 Unauthorized in 1ms
|
|
87191
|
+
Processing by Flms::SessionsController#new as HTML
|
|
87192
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"s4DMvE93KVaHsKXVv9Ji7tDWjTZryjFh4xPHfInwZ30=", "user"=>{"email"=>"kevin.goslar@originate.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"}
|
|
87193
|
+
Rendered /Users/kevin/flms/app/views/flms/sessions/new.html.haml within layouts/flms/admin_login (0.9ms)
|
|
87194
|
+
Completed 200 OK in 154ms (Views: 153.5ms | ActiveRecord: 0.0ms)
|
|
87195
|
+
|
|
87196
|
+
|
|
87197
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:35:43 -0700
|
|
87198
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
87199
|
+
|
|
87200
|
+
|
|
87201
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:35:43 -0700
|
|
87202
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
87203
|
+
|
|
87204
|
+
|
|
87205
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:35:43 -0700
|
|
87206
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
87207
|
+
|
|
87208
|
+
|
|
87209
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:35:43 -0700
|
|
87210
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
87211
|
+
|
|
87212
|
+
|
|
87213
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:35:43 -0700
|
|
87214
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
|
87215
|
+
Connecting to database specified by database.yml
|
|
87216
|
+
Connecting to database specified by database.yml
|
|
87217
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
87218
|
+
[1m[35mFlms::User Exists (1.6ms)[0m SELECT 1 AS one FROM "flms_users" WHERE "flms_users"."email" = 'kevin.goslar@originate.com' LIMIT 1
|
|
87219
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
87220
|
+
|
|
87221
|
+
|
|
87222
|
+
Started POST "/flms/login" for 127.0.0.1 at 2013-05-06 10:36:51 -0700
|
|
87223
|
+
Processing by Flms::SessionsController#create as HTML
|
|
87224
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"s4DMvE93KVaHsKXVv9Ji7tDWjTZryjFh4xPHfInwZ30=", "user"=>{"email"=>"kevin.goslar@originate.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"}
|
|
87225
|
+
[1m[35mFlms::User Load (0.2ms)[0m SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."email" = 'kevin.goslar@originate.com' LIMIT 1
|
|
87226
|
+
Completed 401 Unauthorized in 1ms
|
|
87227
|
+
Processing by Flms::SessionsController#new as HTML
|
|
87228
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"s4DMvE93KVaHsKXVv9Ji7tDWjTZryjFh4xPHfInwZ30=", "user"=>{"email"=>"kevin.goslar@originate.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"}
|
|
87229
|
+
Rendered /Users/kevin/flms/app/views/flms/sessions/new.html.haml within layouts/flms/admin_login (1.1ms)
|
|
87230
|
+
Completed 200 OK in 158ms (Views: 157.4ms | ActiveRecord: 0.0ms)
|
|
87231
|
+
|
|
87232
|
+
|
|
87233
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-05-06 10:36:51 -0700
|
|
87234
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
87235
|
+
|
|
87236
|
+
|
|
87237
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:36:51 -0700
|
|
87238
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
87239
|
+
|
|
87240
|
+
|
|
87241
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:36:51 -0700
|
|
87242
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
87243
|
+
|
|
87244
|
+
|
|
87245
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:36:51 -0700
|
|
87246
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
|
87247
|
+
|
|
87248
|
+
|
|
87249
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:36:51 -0700
|
|
87250
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
87251
|
+
|
|
87252
|
+
|
|
87253
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:36:51 -0700
|
|
87254
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
87255
|
+
Connecting to database specified by database.yml
|
|
87256
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
87257
|
+
[1m[35mFlms::User Exists (1.7ms)[0m SELECT 1 AS one FROM "flms_users" WHERE "flms_users"."email" = 'kevin.goslar@originate.com' LIMIT 1
|
|
87258
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
87259
|
+
[1m[36mSQL (4.3ms)[0m [1mINSERT INTO "flms_users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["created_at", Mon, 06 May 2013 17:37:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "kevin.goslar@originate.com"], ["encrypted_password", "$2a$10$GmHvWm4YPL/M6qYyEbzSuuwtPjvn9mQcyPH/0vGkMlrm1U/kBcikG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 06 May 2013 17:37:01 UTC +00:00]]
|
|
87260
|
+
[1m[35m (1.0ms)[0m commit transaction
|
|
87261
|
+
|
|
87262
|
+
|
|
87263
|
+
Started POST "/flms/login" for 127.0.0.1 at 2013-05-06 10:37:06 -0700
|
|
87264
|
+
Processing by Flms::SessionsController#create as HTML
|
|
87265
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"s4DMvE93KVaHsKXVv9Ji7tDWjTZryjFh4xPHfInwZ30=", "user"=>{"email"=>"kevin.goslar@originate.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"}
|
|
87266
|
+
[1m[36mFlms::User Load (0.2ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."email" = 'kevin.goslar@originate.com' LIMIT 1[0m
|
|
87267
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
87268
|
+
[1m[36m (0.4ms)[0m [1mUPDATE "flms_users" SET "last_sign_in_at" = '2013-05-06 17:37:06.799179', "current_sign_in_at" = '2013-05-06 17:37:06.799179', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2013-05-06 17:37:06.800200' WHERE "flms_users"."id" = 1[0m
|
|
87269
|
+
[1m[35m (1.3ms)[0m commit transaction
|
|
87270
|
+
Redirected to http://localhost:3000/flms/pages
|
|
87271
|
+
Completed 302 Found in 89ms (ActiveRecord: 0.0ms)
|
|
87272
|
+
|
|
87273
|
+
|
|
87274
|
+
Started GET "/flms/pages" for 127.0.0.1 at 2013-05-06 10:37:06 -0700
|
|
87275
|
+
Processing by Flms::PagesController#index as HTML
|
|
87276
|
+
[1m[36mFlms::User Load (0.2ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
87277
|
+
[1m[35mFlms::Page Load (0.1ms)[0m SELECT "flms_pages".* FROM "flms_pages"
|
|
87278
|
+
Rendered /Users/kevin/flms/app/views/flms/pages/index.html.haml within layouts/flms/admin (2.6ms)
|
|
87279
|
+
Completed 200 OK in 164ms (Views: 161.7ms | ActiveRecord: 0.4ms)
|
|
87280
|
+
|
|
87281
|
+
|
|
87282
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-05-06 10:37:07 -0700
|
|
87283
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
87284
|
+
|
|
87285
|
+
|
|
87286
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:07 -0700
|
|
87287
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
87288
|
+
|
|
87289
|
+
|
|
87290
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:07 -0700
|
|
87291
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
87292
|
+
|
|
87293
|
+
|
|
87294
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:07 -0700
|
|
87295
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
|
87296
|
+
|
|
87297
|
+
|
|
87298
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:07 -0700
|
|
87299
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
87300
|
+
|
|
87301
|
+
|
|
87302
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:07 -0700
|
|
87303
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
87304
|
+
|
|
87305
|
+
|
|
87306
|
+
Started GET "/assets/glyphicons-halflings.png" for 127.0.0.1 at 2013-05-06 10:37:07 -0700
|
|
87307
|
+
Served asset /glyphicons-halflings.png - 200 OK (3ms)
|
|
87308
|
+
|
|
87309
|
+
|
|
87310
|
+
Started GET "/assets/glyphicons-halflings-white.png" for 127.0.0.1 at 2013-05-06 10:37:07 -0700
|
|
87311
|
+
Served asset /glyphicons-halflings-white.png - 200 OK (3ms)
|
|
87312
|
+
|
|
87313
|
+
|
|
87314
|
+
Started GET "/flms/pages/new" for 127.0.0.1 at 2013-05-06 10:37:09 -0700
|
|
87315
|
+
Processing by Flms::PagesController#new as HTML
|
|
87316
|
+
[1m[36mFlms::User Load (0.2ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
87317
|
+
Rendered /Users/kevin/flms/app/views/flms/pages/_form.html.haml (6.2ms)
|
|
87318
|
+
Rendered /Users/kevin/flms/app/views/flms/pages/new.html.haml within layouts/flms/admin (10.1ms)
|
|
87319
|
+
Completed 200 OK in 174ms (Views: 125.7ms | ActiveRecord: 0.2ms)
|
|
87320
|
+
|
|
87321
|
+
|
|
87322
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-05-06 10:37:09 -0700
|
|
87323
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
87324
|
+
|
|
87325
|
+
|
|
87326
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:09 -0700
|
|
87327
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
87328
|
+
|
|
87329
|
+
|
|
87330
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:09 -0700
|
|
87331
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
|
87332
|
+
|
|
87333
|
+
|
|
87334
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:09 -0700
|
|
87335
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
87336
|
+
|
|
87337
|
+
|
|
87338
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:09 -0700
|
|
87339
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
87340
|
+
|
|
87341
|
+
|
|
87342
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:09 -0700
|
|
87343
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
87344
|
+
|
|
87345
|
+
|
|
87346
|
+
Started POST "/flms/pages" for 127.0.0.1 at 2013-05-06 10:37:16 -0700
|
|
87347
|
+
Processing by Flms::PagesController#create as HTML
|
|
87348
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"s4DMvE93KVaHsKXVv9Ji7tDWjTZryjFh4xPHfInwZ30=", "page"=>{"title"=>"page1", "url"=>"oeu"}, "commit"=>"Create Page"}
|
|
87349
|
+
[1m[35mFlms::User Load (0.2ms)[0m SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
|
|
87350
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
87351
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "flms_pages" ("created_at", "title", "updated_at", "url") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 May 2013 17:37:16 UTC +00:00], ["title", "page1"], ["updated_at", Mon, 06 May 2013 17:37:16 UTC +00:00], ["url", "oeu"]]
|
|
87352
|
+
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
|
87353
|
+
Redirected to http://localhost:3000/flms/pages
|
|
87354
|
+
Completed 302 Found in 5ms (ActiveRecord: 1.3ms)
|
|
87355
|
+
|
|
87356
|
+
|
|
87357
|
+
Started GET "/flms/pages" for 127.0.0.1 at 2013-05-06 10:37:16 -0700
|
|
87358
|
+
Processing by Flms::PagesController#index as HTML
|
|
87359
|
+
[1m[35mFlms::User Load (0.2ms)[0m SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
|
|
87360
|
+
[1m[36mFlms::Page Load (0.1ms)[0m [1mSELECT "flms_pages".* FROM "flms_pages" [0m
|
|
87361
|
+
Rendered /Users/kevin/flms/app/views/flms/pages/index.html.haml within layouts/flms/admin (1.0ms)
|
|
87362
|
+
Completed 200 OK in 118ms (Views: 116.3ms | ActiveRecord: 0.2ms)
|
|
87363
|
+
|
|
87364
|
+
|
|
87365
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-05-06 10:37:16 -0700
|
|
87366
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
87367
|
+
|
|
87368
|
+
|
|
87369
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:16 -0700
|
|
87370
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
87371
|
+
|
|
87372
|
+
|
|
87373
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:16 -0700
|
|
87374
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
87375
|
+
|
|
87376
|
+
|
|
87377
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:16 -0700
|
|
87378
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
|
87379
|
+
|
|
87380
|
+
|
|
87381
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:16 -0700
|
|
87382
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
87383
|
+
|
|
87384
|
+
|
|
87385
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:16 -0700
|
|
87386
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
87387
|
+
|
|
87388
|
+
|
|
87389
|
+
Started GET "/flms/blocks" for 127.0.0.1 at 2013-05-06 10:37:19 -0700
|
|
87390
|
+
Processing by Flms::BlocksController#index as HTML
|
|
87391
|
+
[1m[35mFlms::User Load (0.2ms)[0m SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
|
|
87392
|
+
[1m[36mFlms::Block Load (0.1ms)[0m [1mSELECT "flms_blocks".* FROM "flms_blocks" [0m
|
|
87393
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/index.html.haml within layouts/flms/admin (4.7ms)
|
|
87394
|
+
Completed 200 OK in 166ms (Views: 162.8ms | ActiveRecord: 0.6ms)
|
|
87395
|
+
|
|
87396
|
+
|
|
87397
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-05-06 10:37:19 -0700
|
|
87398
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
87399
|
+
|
|
87400
|
+
|
|
87401
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:19 -0700
|
|
87402
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
87403
|
+
|
|
87404
|
+
|
|
87405
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:19 -0700
|
|
87406
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
|
87407
|
+
|
|
87408
|
+
|
|
87409
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:19 -0700
|
|
87410
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
87411
|
+
|
|
87412
|
+
|
|
87413
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:19 -0700
|
|
87414
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
87415
|
+
|
|
87416
|
+
|
|
87417
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:19 -0700
|
|
87418
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
87419
|
+
|
|
87420
|
+
|
|
87421
|
+
Started GET "/flms/blocks/new" for 127.0.0.1 at 2013-05-06 10:37:20 -0700
|
|
87422
|
+
Processing by Flms::BlocksController#new as HTML
|
|
87423
|
+
[1m[35mFlms::User Load (0.2ms)[0m SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
|
|
87424
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/_form.html.haml (5.1ms)
|
|
87425
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/new.html.haml within layouts/flms/admin (7.0ms)
|
|
87426
|
+
Completed 200 OK in 168ms (Views: 163.8ms | ActiveRecord: 0.2ms)
|
|
87427
|
+
|
|
87428
|
+
|
|
87429
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-05-06 10:37:20 -0700
|
|
87430
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
87431
|
+
|
|
87432
|
+
|
|
87433
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:21 -0700
|
|
87434
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
87435
|
+
|
|
87436
|
+
|
|
87437
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:21 -0700
|
|
87438
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
|
87439
|
+
|
|
87440
|
+
|
|
87441
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:21 -0700
|
|
87442
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
87443
|
+
|
|
87444
|
+
|
|
87445
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:21 -0700
|
|
87446
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
87447
|
+
|
|
87448
|
+
|
|
87449
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:21 -0700
|
|
87450
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
87451
|
+
|
|
87452
|
+
|
|
87453
|
+
Started POST "/flms/blocks" for 127.0.0.1 at 2013-05-06 10:37:24 -0700
|
|
87454
|
+
Processing by Flms::BlocksController#create as HTML
|
|
87455
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"s4DMvE93KVaHsKXVv9Ji7tDWjTZryjFh4xPHfInwZ30=", "block"=>{"name"=>"block 1"}, "commit"=>"Create Block"}
|
|
87456
|
+
[1m[36mFlms::User Load (0.2ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
87457
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
87458
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
87459
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/_form.html.haml (2.3ms)
|
|
87460
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/new.html.haml within layouts/flms/admin (3.1ms)
|
|
87461
|
+
Completed 200 OK in 169ms (Views: 166.4ms | ActiveRecord: 0.3ms)
|
|
87462
|
+
|
|
87463
|
+
|
|
87464
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-05-06 10:37:24 -0700
|
|
87465
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
87466
|
+
|
|
87467
|
+
|
|
87468
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:24 -0700
|
|
87469
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
87470
|
+
|
|
87471
|
+
|
|
87472
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:24 -0700
|
|
87473
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
87474
|
+
|
|
87475
|
+
|
|
87476
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:24 -0700
|
|
87477
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
|
87478
|
+
|
|
87479
|
+
|
|
87480
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:24 -0700
|
|
87481
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
87482
|
+
|
|
87483
|
+
|
|
87484
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:24 -0700
|
|
87485
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
87486
|
+
|
|
87487
|
+
|
|
87488
|
+
Started POST "/flms/blocks" for 127.0.0.1 at 2013-05-06 10:37:28 -0700
|
|
87489
|
+
Processing by Flms::BlocksController#create as HTML
|
|
87490
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"s4DMvE93KVaHsKXVv9Ji7tDWjTZryjFh4xPHfInwZ30=", "block"=>{"name"=>"block1"}, "commit"=>"Create Block"}
|
|
87491
|
+
[1m[35mFlms::User Load (0.2ms)[0m SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
|
|
87492
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
87493
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "flms_blocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 06 May 2013 17:37:28 UTC +00:00], ["name", "block1"], ["updated_at", Mon, 06 May 2013 17:37:28 UTC +00:00]]
|
|
87494
|
+
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
|
87495
|
+
Redirected to http://localhost:3000/flms/blocks
|
|
87496
|
+
Completed 302 Found in 4ms (ActiveRecord: 1.1ms)
|
|
87497
|
+
|
|
87498
|
+
|
|
87499
|
+
Started GET "/flms/blocks" for 127.0.0.1 at 2013-05-06 10:37:28 -0700
|
|
87500
|
+
Processing by Flms::BlocksController#index as HTML
|
|
87501
|
+
[1m[35mFlms::User Load (0.3ms)[0m SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
|
|
87502
|
+
[1m[36mFlms::Block Load (0.1ms)[0m [1mSELECT "flms_blocks".* FROM "flms_blocks" [0m
|
|
87503
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/index.html.haml within layouts/flms/admin (1.4ms)
|
|
87504
|
+
Completed 200 OK in 162ms (Views: 160.2ms | ActiveRecord: 0.4ms)
|
|
87505
|
+
|
|
87506
|
+
|
|
87507
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-05-06 10:37:28 -0700
|
|
87508
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
87509
|
+
|
|
87510
|
+
|
|
87511
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:28 -0700
|
|
87512
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
87513
|
+
|
|
87514
|
+
|
|
87515
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:28 -0700
|
|
87516
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
87517
|
+
|
|
87518
|
+
|
|
87519
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:28 -0700
|
|
87520
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
87521
|
+
|
|
87522
|
+
|
|
87523
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:28 -0700
|
|
87524
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
87525
|
+
|
|
87526
|
+
|
|
87527
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:28 -0700
|
|
87528
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
|
87529
|
+
|
|
87530
|
+
|
|
87531
|
+
Started GET "/flms/blocks/new" for 127.0.0.1 at 2013-05-06 10:37:30 -0700
|
|
87532
|
+
Processing by Flms::BlocksController#new as HTML
|
|
87533
|
+
[1m[35mFlms::User Load (0.2ms)[0m SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
|
|
87534
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/_form.html.haml (2.1ms)
|
|
87535
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/new.html.haml within layouts/flms/admin (3.1ms)
|
|
87536
|
+
Completed 200 OK in 167ms (Views: 166.1ms | ActiveRecord: 0.2ms)
|
|
87537
|
+
|
|
87538
|
+
|
|
87539
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-05-06 10:37:30 -0700
|
|
87540
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
87541
|
+
|
|
87542
|
+
|
|
87543
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:30 -0700
|
|
87544
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
87545
|
+
|
|
87546
|
+
|
|
87547
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:30 -0700
|
|
87548
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
87549
|
+
|
|
87550
|
+
|
|
87551
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:30 -0700
|
|
87552
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
|
87553
|
+
|
|
87554
|
+
|
|
87555
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:30 -0700
|
|
87556
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
87557
|
+
|
|
87558
|
+
|
|
87559
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:30 -0700
|
|
87560
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
87561
|
+
|
|
87562
|
+
|
|
87563
|
+
Started POST "/flms/blocks" for 127.0.0.1 at 2013-05-06 10:37:33 -0700
|
|
87564
|
+
Processing by Flms::BlocksController#create as HTML
|
|
87565
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"s4DMvE93KVaHsKXVv9Ji7tDWjTZryjFh4xPHfInwZ30=", "block"=>{"name"=>"block2"}, "commit"=>"Create Block"}
|
|
87566
|
+
[1m[36mFlms::User Load (0.2ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
87567
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
87568
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "flms_blocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Mon, 06 May 2013 17:37:33 UTC +00:00], ["name", "block2"], ["updated_at", Mon, 06 May 2013 17:37:33 UTC +00:00]]
|
|
87569
|
+
[1m[35m (2.2ms)[0m commit transaction
|
|
87570
|
+
Redirected to http://localhost:3000/flms/blocks
|
|
87571
|
+
Completed 302 Found in 5ms (ActiveRecord: 2.7ms)
|
|
87572
|
+
|
|
87573
|
+
|
|
87574
|
+
Started GET "/flms/blocks" for 127.0.0.1 at 2013-05-06 10:37:33 -0700
|
|
87575
|
+
Processing by Flms::BlocksController#index as HTML
|
|
87576
|
+
[1m[36mFlms::User Load (0.2ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
87577
|
+
[1m[35mFlms::Block Load (0.1ms)[0m SELECT "flms_blocks".* FROM "flms_blocks"
|
|
87578
|
+
Rendered /Users/kevin/flms/app/views/flms/blocks/index.html.haml within layouts/flms/admin (2.0ms)
|
|
87579
|
+
Completed 200 OK in 164ms (Views: 162.8ms | ActiveRecord: 0.3ms)
|
|
87580
|
+
|
|
87581
|
+
|
|
87582
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-05-06 10:37:34 -0700
|
|
87583
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
87584
|
+
|
|
87585
|
+
|
|
87586
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:34 -0700
|
|
87587
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
87588
|
+
|
|
87589
|
+
|
|
87590
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:34 -0700
|
|
87591
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
87592
|
+
|
|
87593
|
+
|
|
87594
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:34 -0700
|
|
87595
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
|
87596
|
+
|
|
87597
|
+
|
|
87598
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:34 -0700
|
|
87599
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
87600
|
+
|
|
87601
|
+
|
|
87602
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:34 -0700
|
|
87603
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
87604
|
+
|
|
87605
|
+
|
|
87606
|
+
Started GET "/flms/pages" for 127.0.0.1 at 2013-05-06 10:37:58 -0700
|
|
87607
|
+
Processing by Flms::PagesController#index as HTML
|
|
87608
|
+
[1m[36mFlms::User Load (0.1ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
87609
|
+
[1m[35mFlms::Page Load (0.1ms)[0m SELECT "flms_pages".* FROM "flms_pages"
|
|
87610
|
+
Rendered /Users/kevin/flms/app/views/flms/pages/index.html.haml within layouts/flms/admin (0.9ms)
|
|
87611
|
+
Completed 200 OK in 114ms (Views: 112.4ms | ActiveRecord: 0.2ms)
|
|
87612
|
+
|
|
87613
|
+
|
|
87614
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-05-06 10:37:58 -0700
|
|
87615
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
87616
|
+
|
|
87617
|
+
|
|
87618
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:58 -0700
|
|
87619
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
87620
|
+
|
|
87621
|
+
|
|
87622
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:58 -0700
|
|
87623
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
87624
|
+
|
|
87625
|
+
|
|
87626
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:58 -0700
|
|
87627
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
87628
|
+
|
|
87629
|
+
|
|
87630
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:58 -0700
|
|
87631
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
|
87632
|
+
|
|
87633
|
+
|
|
87634
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:58 -0700
|
|
87635
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
87636
|
+
|
|
87637
|
+
|
|
87638
|
+
Started GET "/flms/pages/oeu/edit" for 127.0.0.1 at 2013-05-06 10:38:00 -0700
|
|
87639
|
+
Processing by Flms::PagesController#edit as HTML
|
|
87640
|
+
Parameters: {"id"=>"oeu"}
|
|
87641
|
+
[1m[36mFlms::User Load (0.2ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
87642
|
+
[1m[35mFlms::Page Load (0.1ms)[0m SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'oeu' LIMIT 1
|
|
87643
|
+
[1m[36mFlms::Block Load (0.1ms)[0m [1mSELECT "flms_blocks".* FROM "flms_blocks" [0m
|
|
87644
|
+
[1m[35mFlms::Block Load (0.1ms)[0m SELECT "flms_blocks".* FROM "flms_blocks" INNER JOIN "flms_blocks_pages" ON "flms_blocks"."id" = "flms_blocks_pages"."block_id" WHERE "flms_blocks_pages"."page_id" = 1
|
|
87645
|
+
Rendered /Users/kevin/flms/app/views/flms/pages/_form.html.haml (1.9ms)
|
|
87646
|
+
[1m[36mFlms::BlocksPage Load (0.1ms)[0m [1mSELECT "flms_blocks_pages".* FROM "flms_blocks_pages" WHERE "flms_blocks_pages"."page_id" = 1 ORDER BY ordering[0m
|
|
87647
|
+
Rendered /Users/kevin/flms/app/views/flms/pages/_block_list.html.haml (6.6ms)
|
|
87648
|
+
Rendered /Users/kevin/flms/app/views/flms/pages/_add_block.html.haml (2.6ms)
|
|
87649
|
+
Rendered /Users/kevin/flms/app/views/flms/pages/edit.html.haml within layouts/flms/admin (14.4ms)
|
|
87650
|
+
Completed 200 OK in 192ms (Views: 166.7ms | ActiveRecord: 0.8ms)
|
|
87651
|
+
|
|
87652
|
+
|
|
87653
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-05-06 10:38:00 -0700
|
|
87654
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
87655
|
+
|
|
87656
|
+
|
|
87657
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:38:00 -0700
|
|
87658
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
87659
|
+
|
|
87660
|
+
|
|
87661
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:38:00 -0700
|
|
87662
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
87663
|
+
|
|
87664
|
+
|
|
87665
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:38:00 -0700
|
|
87666
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
87667
|
+
|
|
87668
|
+
|
|
87669
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:38:00 -0700
|
|
87670
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
|
87671
|
+
|
|
87672
|
+
|
|
87673
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:38:00 -0700
|
|
87674
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
87675
|
+
|
|
87676
|
+
|
|
87677
|
+
Started PUT "/flms/pages/oeu/add_block" for 127.0.0.1 at 2013-05-06 10:38:03 -0700
|
|
87678
|
+
Processing by Flms::PagesController#add_block as HTML
|
|
87679
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"s4DMvE93KVaHsKXVv9Ji7tDWjTZryjFh4xPHfInwZ30=", "block"=>{"id"=>"1"}, "commit"=>"Add", "page_id"=>"oeu"}
|
|
87680
|
+
[1m[35mFlms::User Load (0.2ms)[0m SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
|
|
87681
|
+
[1m[36mFlms::Page Load (0.1ms)[0m [1mSELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" IS NULL LIMIT 1[0m
|
|
87682
|
+
[1m[35mFlms::Page Load (0.1ms)[0m SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'oeu' LIMIT 1
|
|
87683
|
+
[1m[36mFlms::Block Load (0.1ms)[0m [1mSELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = 1 LIMIT 1[0m
|
|
87684
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
87685
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "flms_blocks_pages" ("active", "block_id", "created_at", "ordering", "page_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?)[0m [["active", nil], ["block_id", 1], ["created_at", Mon, 06 May 2013 17:38:03 UTC +00:00], ["ordering", nil], ["page_id", 1], ["updated_at", Mon, 06 May 2013 17:38:03 UTC +00:00]]
|
|
87686
|
+
[1m[35m (2.0ms)[0m commit transaction
|
|
87687
|
+
Redirected to http://localhost:3000/flms/pages/oeu/edit
|
|
87688
|
+
Completed 302 Found in 17ms (ActiveRecord: 2.9ms)
|
|
87689
|
+
|
|
87690
|
+
|
|
87691
|
+
Started GET "/flms/pages/oeu/edit" for 127.0.0.1 at 2013-05-06 10:38:03 -0700
|
|
87692
|
+
Processing by Flms::PagesController#edit as HTML
|
|
87693
|
+
Parameters: {"id"=>"oeu"}
|
|
87694
|
+
[1m[36mFlms::User Load (0.2ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
87695
|
+
[1m[35mFlms::Page Load (0.1ms)[0m SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'oeu' LIMIT 1
|
|
87696
|
+
[1m[36mFlms::Block Load (0.1ms)[0m [1mSELECT "flms_blocks".* FROM "flms_blocks" [0m
|
|
87697
|
+
[1m[35mFlms::Block Load (0.1ms)[0m SELECT "flms_blocks".* FROM "flms_blocks" INNER JOIN "flms_blocks_pages" ON "flms_blocks"."id" = "flms_blocks_pages"."block_id" WHERE "flms_blocks_pages"."page_id" = 1
|
|
87698
|
+
Rendered /Users/kevin/flms/app/views/flms/pages/_form.html.haml (2.3ms)
|
|
87699
|
+
[1m[36mFlms::BlocksPage Load (0.2ms)[0m [1mSELECT "flms_blocks_pages".* FROM "flms_blocks_pages" WHERE "flms_blocks_pages"."page_id" = 1 ORDER BY ordering[0m
|
|
87700
|
+
[1m[35mFlms::Block Load (0.2ms)[0m SELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" IN (1)
|
|
87701
|
+
Rendered /Users/kevin/flms/app/views/flms/pages/_block_list.html.haml (6.1ms)
|
|
87702
|
+
Rendered /Users/kevin/flms/app/views/flms/pages/_add_block.html.haml (1.4ms)
|
|
87703
|
+
Rendered /Users/kevin/flms/app/views/flms/pages/edit.html.haml within layouts/flms/admin (12.2ms)
|
|
87704
|
+
Completed 200 OK in 175ms (Views: 170.7ms | ActiveRecord: 1.0ms)
|
|
87705
|
+
|
|
87706
|
+
|
|
87707
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-05-06 10:38:03 -0700
|
|
87708
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
87709
|
+
|
|
87710
|
+
|
|
87711
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:38:03 -0700
|
|
87712
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
87713
|
+
|
|
87714
|
+
|
|
87715
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:38:03 -0700
|
|
87716
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
87717
|
+
|
|
87718
|
+
|
|
87719
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:38:03 -0700
|
|
87720
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
|
87721
|
+
|
|
87722
|
+
|
|
87723
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:38:03 -0700
|
|
87724
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
87725
|
+
|
|
87726
|
+
|
|
87727
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:38:03 -0700
|
|
87728
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
87729
|
+
|
|
87730
|
+
|
|
87731
|
+
Started PUT "/flms/pages/oeu/add_block" for 127.0.0.1 at 2013-05-06 10:38:05 -0700
|
|
87732
|
+
Processing by Flms::PagesController#add_block as HTML
|
|
87733
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"s4DMvE93KVaHsKXVv9Ji7tDWjTZryjFh4xPHfInwZ30=", "block"=>{"id"=>"2"}, "commit"=>"Add", "page_id"=>"oeu"}
|
|
87734
|
+
[1m[36mFlms::User Load (0.2ms)[0m [1mSELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1[0m
|
|
87735
|
+
[1m[35mFlms::Page Load (0.1ms)[0m SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" IS NULL LIMIT 1
|
|
87736
|
+
[1m[36mFlms::Page Load (0.1ms)[0m [1mSELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'oeu' LIMIT 1[0m
|
|
87737
|
+
[1m[35mFlms::Block Load (0.1ms)[0m SELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = 2 LIMIT 1
|
|
87738
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
87739
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "flms_blocks_pages" ("active", "block_id", "created_at", "ordering", "page_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["active", nil], ["block_id", 2], ["created_at", Mon, 06 May 2013 17:38:05 UTC +00:00], ["ordering", nil], ["page_id", 1], ["updated_at", Mon, 06 May 2013 17:38:05 UTC +00:00]]
|
|
87740
|
+
[1m[36m (2.3ms)[0m [1mcommit transaction[0m
|
|
87741
|
+
Redirected to http://localhost:3000/flms/pages/oeu/edit
|
|
87742
|
+
Completed 302 Found in 7ms (ActiveRecord: 3.2ms)
|
|
87743
|
+
|
|
87744
|
+
|
|
87745
|
+
Started GET "/flms/pages/oeu/edit" for 127.0.0.1 at 2013-05-06 10:38:05 -0700
|
|
87746
|
+
Processing by Flms::PagesController#edit as HTML
|
|
87747
|
+
Parameters: {"id"=>"oeu"}
|
|
87748
|
+
[1m[35mFlms::User Load (0.2ms)[0m SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
|
|
87749
|
+
[1m[36mFlms::Page Load (0.1ms)[0m [1mSELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'oeu' LIMIT 1[0m
|
|
87750
|
+
[1m[35mFlms::Block Load (0.1ms)[0m SELECT "flms_blocks".* FROM "flms_blocks"
|
|
87751
|
+
[1m[36mFlms::Block Load (0.1ms)[0m [1mSELECT "flms_blocks".* FROM "flms_blocks" INNER JOIN "flms_blocks_pages" ON "flms_blocks"."id" = "flms_blocks_pages"."block_id" WHERE "flms_blocks_pages"."page_id" = 1[0m
|
|
87752
|
+
Rendered /Users/kevin/flms/app/views/flms/pages/_form.html.haml (2.1ms)
|
|
87753
|
+
[1m[35mFlms::BlocksPage Load (0.1ms)[0m SELECT "flms_blocks_pages".* FROM "flms_blocks_pages" WHERE "flms_blocks_pages"."page_id" = 1 ORDER BY ordering
|
|
87754
|
+
[1m[36mFlms::Block Load (0.2ms)[0m [1mSELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" IN (1, 2)[0m
|
|
87755
|
+
Rendered /Users/kevin/flms/app/views/flms/pages/_block_list.html.haml (4.2ms)
|
|
87756
|
+
Rendered /Users/kevin/flms/app/views/flms/pages/_add_block.html.haml (1.4ms)
|
|
87757
|
+
Rendered /Users/kevin/flms/app/views/flms/pages/edit.html.haml within layouts/flms/admin (10.1ms)
|
|
87758
|
+
Completed 200 OK in 176ms (Views: 173.4ms | ActiveRecord: 0.8ms)
|
|
87759
|
+
|
|
87760
|
+
|
|
87761
|
+
Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-05-06 10:38:05 -0700
|
|
87762
|
+
Served asset /bootstrap.css - 304 Not Modified (0ms)
|
|
87763
|
+
|
|
87764
|
+
|
|
87765
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:38:05 -0700
|
|
87766
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
87767
|
+
|
|
87768
|
+
|
|
87769
|
+
Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:38:05 -0700
|
|
87770
|
+
Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
|
|
87771
|
+
|
|
87772
|
+
|
|
87773
|
+
Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:38:05 -0700
|
|
87774
|
+
Served asset /modularity/modularity.js - 304 Not Modified (0ms)
|
|
87775
|
+
|
|
87776
|
+
|
|
87777
|
+
Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:38:05 -0700
|
|
87778
|
+
Served asset /jquery-ui.js - 304 Not Modified (0ms)
|
|
87779
|
+
|
|
87780
|
+
|
|
87781
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:38:05 -0700
|
|
87782
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
87783
|
+
Connecting to database specified by database.yml
|
|
87784
|
+
Connecting to database specified by database.yml
|
|
87785
|
+
[1m[36m (4.7ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
87786
|
+
Migrating to FlmsDeviseCreateUsers (20130208224914)
|
|
87787
|
+
Migrating to FlmsCreatePages (20130216032241)
|
|
87788
|
+
Migrating to CreateFlmsBlocks (20130302011705)
|
|
87789
|
+
Migrating to CreateFlmsBlocksPages (20130302015459)
|
|
87790
|
+
Migrating to CreateFlmsLayers (20130312220011)
|
|
87791
|
+
Migrating to AddImageToLayers (20130313002421)
|
|
87792
|
+
Migrating to CreateFlmsKeyframes (20130327183815)
|
|
87793
|
+
Migrating to RemoveOrderingFromLayers (20130404201756)
|
|
87794
|
+
Migrating to AddTextLayers (20130415185500)
|
|
87795
|
+
Migrating to StoreSizeInLayers (20130417210408)
|
|
87796
|
+
Migrating to StoreMarginInKeyframes (20130418191643)
|
|
87797
|
+
Migrating to LayersRemoveFromDom (20130418222016)
|
|
87798
|
+
Migrating to AddParagraphLayers (20130422193150)
|
|
87799
|
+
Migrating to LayersHaveZValue (20130426171058)
|
|
87800
|
+
Migrating to AddEmbedCodeToLayers (20130430224538)
|
|
87801
|
+
Migrating to MakeParagraphLayerBodyText (20130506204547)
|
|
87802
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
87803
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
87804
|
+
[1m[35m (1.0ms)[0m CREATE TEMPORARY TABLE "altered_flms_layers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "block_id" integer, "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "image" varchar(255), "text" varchar(255), "font_size" float, "color" varchar(255), "width" float, "height" float, "dom_remove" boolean DEFAULT 't', "header" varchar(255), "body" varchar(255), "z_index" varchar(255) DEFAULT '0' NOT NULL, "embed_code" varchar(255))
|
|
87805
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "temp_index_altered_flms_layers_on_block_id" ON "altered_flms_layers" ("block_id")[0m
|
|
87806
|
+
[1m[35m (3.1ms)[0m SELECT * FROM "flms_layers"
|
|
87807
|
+
[1m[36m (8.3ms)[0m [1mDROP TABLE "flms_layers"[0m
|
|
87808
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "flms_layers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "block_id" integer, "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "image" varchar(255), "text" varchar(255), "font_size" float, "color" varchar(255), "width" float, "height" float, "dom_remove" boolean DEFAULT 't', "header" varchar(255), "body" text, "z_index" varchar(255) DEFAULT '0' NOT NULL, "embed_code" varchar(255))
|
|
87809
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_flms_layers_on_block_id" ON "flms_layers" ("block_id")[0m
|
|
87810
|
+
[1m[35m (0.1ms)[0m SELECT * FROM "altered_flms_layers"
|
|
87811
|
+
[1m[36m (0.6ms)[0m [1mDROP TABLE "altered_flms_layers"[0m
|
|
87812
|
+
[1m[35m (0.4ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20130506204547')
|
|
87813
|
+
[1m[36m (1.2ms)[0m [1mcommit transaction[0m
|
|
87814
|
+
Migrating to AddActiveToFlmsLayers (20130506232533)
|
|
87815
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
87816
|
+
[1m[36m (0.9ms)[0m [1mALTER TABLE "flms_layers" ADD "active" boolean DEFAULT 't'[0m
|
|
87817
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20130506232533')
|
|
87818
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
87819
|
+
Migrating to RemoveSizeLimitForEmbedCode (20130507222721)
|
|
87820
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
87821
|
+
[1m[36m (0.2ms)[0m [1mCREATE TEMPORARY TABLE "altered_flms_layers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "block_id" integer, "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "image" varchar(255), "text" varchar(255), "font_size" float, "color" varchar(255), "width" float, "height" float, "dom_remove" boolean DEFAULT 't', "header" varchar(255), "body" text, "z_index" varchar(255) DEFAULT '0' NOT NULL, "embed_code" varchar(255), "active" boolean DEFAULT 't') [0m
|
|
87822
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "temp_index_altered_flms_layers_on_block_id" ON "altered_flms_layers" ("block_id")
|
|
87823
|
+
[1m[36m (0.1ms)[0m [1mSELECT * FROM "flms_layers"[0m
|
|
87824
|
+
[1m[35m (0.3ms)[0m DROP TABLE "flms_layers"
|
|
87825
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "flms_layers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "block_id" integer, "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "image" varchar(255), "text" varchar(255), "font_size" float, "color" varchar(255), "width" float, "height" float, "dom_remove" boolean DEFAULT 't', "header" varchar(255), "body" text, "z_index" varchar(255) DEFAULT '0' NOT NULL, "embed_code" text, "active" boolean DEFAULT 't') [0m
|
|
87826
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_flms_layers_on_block_id" ON "flms_layers" ("block_id")
|
|
87827
|
+
[1m[36m (0.0ms)[0m [1mSELECT * FROM "altered_flms_layers"[0m
|
|
87828
|
+
[1m[35m (0.1ms)[0m DROP TABLE "altered_flms_layers"
|
|
87829
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130507222721')[0m
|
|
87830
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
87831
|
+
Migrating to AddImageDisplayModeToImageLayer (20130508002138)
|
|
87832
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
87833
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "flms_layers" ADD "image_display_mode" varchar(255) DEFAULT 'cover'
|
|
87834
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130508002138')[0m
|
|
87835
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
87836
|
+
Migrating to AddAnimationAttributes (20130508174355)
|
|
87837
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
87838
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "flms_layers" ADD "frame_rate" integer
|
|
87839
|
+
[1m[36m (0.1ms)[0m [1mALTER TABLE "flms_layers" ADD "frame_count" integer[0m
|
|
87840
|
+
[1m[35m (0.1ms)[0m ALTER TABLE "flms_layers" ADD "image_width" integer
|
|
87841
|
+
[1m[36m (0.1ms)[0m [1mALTER TABLE "flms_layers" ADD "image_height" integer[0m
|
|
87842
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20130508174355')
|
|
87843
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
|
87844
|
+
Migrating to AddThumbnailToBlock (20130508234709)
|
|
87845
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
87846
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "flms_blocks" ADD "thumbnail" varchar(255)[0m
|
|
87847
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20130508234709')
|
|
87848
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
|
87849
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
|
87850
|
+
Connecting to database specified by database.yml
|
|
87851
|
+
Connecting to database specified by database.yml
|
|
87852
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
|
87853
|
+
[1m[35m (1.5ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
|
87854
|
+
Connecting to database specified by database.yml
|
|
87855
|
+
[1m[36m (1.9ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
87856
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
|
87857
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "flms_blocks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "thumbnail" varchar(255)) [0m
|
|
87858
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "flms_blocks_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "block_id" integer, "page_id" integer, "ordering" integer, "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
87859
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_flms_blocks_pages_on_block_id" ON "flms_blocks_pages" ("block_id")[0m
|
|
87860
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_flms_blocks_pages_on_page_id" ON "flms_blocks_pages" ("page_id")
|
|
87861
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "flms_keyframes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "layer_id" integer, "type" varchar(255), "scroll_start" integer, "scroll_duration" integer, "width" float, "height" float, "position_x" float, "position_y" float, "opacity" float, "scale" float, "blur" float, "margin_left" float DEFAULT 0.0, "margin_top" float DEFAULT 0.0) [0m
|
|
87862
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "flms_layers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "block_id" integer, "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "image" varchar(255), "text" varchar(255), "font_size" float, "color" varchar(255), "width" float, "height" float, "dom_remove" boolean DEFAULT 't', "header" varchar(255), "body" text, "z_index" varchar(255) DEFAULT '0' NOT NULL, "embed_code" text, "active" boolean DEFAULT 't', "image_display_mode" varchar(255) DEFAULT 'cover', "frame_rate" integer, "frame_count" integer, "image_width" integer, "image_height" integer)
|
|
87863
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_flms_layers_on_block_id" ON "flms_layers" ("block_id")[0m
|
|
87864
|
+
[1m[35m (0.6ms)[0m CREATE TABLE "flms_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
87865
|
+
[1m[36m (0.6ms)[0m [1mCREATE INDEX "index_flms_pages_on_url" ON "flms_pages" ("url")[0m
|
|
87866
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "flms_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
87867
|
+
[1m[36m (0.6ms)[0m [1mCREATE UNIQUE INDEX "index_flms_users_on_email" ON "flms_users" ("email")[0m
|
|
87868
|
+
[1m[35m (0.6ms)[0m CREATE UNIQUE INDEX "index_flms_users_on_reset_password_token" ON "flms_users" ("reset_password_token")
|
|
87869
|
+
[1m[36m (0.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
87870
|
+
[1m[35m (0.5ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
87871
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
87872
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130508234709')
|
|
87873
|
+
Connecting to database specified by database.yml
|
|
87874
|
+
[1m[36m (1.5ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
87875
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
87876
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "flms_blocks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "thumbnail" varchar(255)) [0m
|
|
87877
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "flms_blocks_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "block_id" integer, "page_id" integer, "ordering" integer, "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
87878
|
+
[1m[36m (1.0ms)[0m [1mCREATE INDEX "index_flms_blocks_pages_on_block_id" ON "flms_blocks_pages" ("block_id")[0m
|
|
87879
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_flms_blocks_pages_on_page_id" ON "flms_blocks_pages" ("page_id")
|
|
87880
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "flms_keyframes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "layer_id" integer, "type" varchar(255), "scroll_start" integer, "scroll_duration" integer, "width" float, "height" float, "position_x" float, "position_y" float, "opacity" float, "scale" float, "blur" float, "margin_left" float DEFAULT 0.0, "margin_top" float DEFAULT 0.0) [0m
|
|
87881
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "flms_layers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "block_id" integer, "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "image" varchar(255), "text" varchar(255), "font_size" float, "color" varchar(255), "width" float, "height" float, "dom_remove" boolean DEFAULT 't', "header" varchar(255), "body" text, "z_index" varchar(255) DEFAULT '0' NOT NULL, "embed_code" text, "active" boolean DEFAULT 't', "image_display_mode" varchar(255) DEFAULT 'cover', "frame_rate" integer, "frame_count" integer, "image_width" integer, "image_height" integer)
|
|
87882
|
+
[1m[36m (1.0ms)[0m [1mCREATE INDEX "index_flms_layers_on_block_id" ON "flms_layers" ("block_id")[0m
|
|
87883
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "flms_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
87884
|
+
[1m[36m (0.6ms)[0m [1mCREATE INDEX "index_flms_pages_on_url" ON "flms_pages" ("url")[0m
|
|
87885
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "flms_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
87886
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_flms_users_on_email" ON "flms_users" ("email")[0m
|
|
87887
|
+
[1m[35m (0.6ms)[0m CREATE UNIQUE INDEX "index_flms_users_on_reset_password_token" ON "flms_users" ("reset_password_token")
|
|
87888
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
87889
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
87890
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
87891
|
+
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130508234709')
|
|
87892
|
+
Connecting to database specified by database.yml
|
|
87893
|
+
[1m[36m (1.6ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
87894
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
|
87895
|
+
[1m[36m (2.9ms)[0m [1mCREATE TABLE "flms_blocks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "thumbnail" varchar(255)) [0m
|
|
87896
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "flms_blocks_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "block_id" integer, "page_id" integer, "ordering" integer, "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
87897
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_flms_blocks_pages_on_block_id" ON "flms_blocks_pages" ("block_id")[0m
|
|
87898
|
+
[1m[35m (0.6ms)[0m CREATE INDEX "index_flms_blocks_pages_on_page_id" ON "flms_blocks_pages" ("page_id")
|
|
87899
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "flms_keyframes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "layer_id" integer, "type" varchar(255), "scroll_start" integer, "scroll_duration" integer, "width" float, "height" float, "position_x" float, "position_y" float, "opacity" float, "scale" float, "blur" float, "margin_left" float DEFAULT 0.0, "margin_top" float DEFAULT 0.0) [0m
|
|
87900
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "flms_layers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "block_id" integer, "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "image" varchar(255), "text" varchar(255), "font_size" float, "color" varchar(255), "width" float, "height" float, "dom_remove" boolean DEFAULT 't', "header" varchar(255), "body" text, "z_index" varchar(255) DEFAULT '0' NOT NULL, "embed_code" text, "active" boolean DEFAULT 't', "image_display_mode" varchar(255) DEFAULT 'cover', "frame_rate" integer, "frame_count" integer, "image_width" integer, "image_height" integer)
|
|
87901
|
+
[1m[36m (0.6ms)[0m [1mCREATE INDEX "index_flms_layers_on_block_id" ON "flms_layers" ("block_id")[0m
|
|
87902
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "flms_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
87903
|
+
[1m[36m (0.6ms)[0m [1mCREATE INDEX "index_flms_pages_on_url" ON "flms_pages" ("url")[0m
|
|
87904
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "flms_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
87905
|
+
[1m[36m (0.6ms)[0m [1mCREATE UNIQUE INDEX "index_flms_users_on_email" ON "flms_users" ("email")[0m
|
|
87906
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_flms_users_on_reset_password_token" ON "flms_users" ("reset_password_token")
|
|
87907
|
+
[1m[36m (0.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
87908
|
+
[1m[35m (0.5ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
87909
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
87910
|
+
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130508234709')
|
|
87911
|
+
Connecting to database specified by database.yml
|
|
87912
|
+
[1m[36m (4.8ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
87913
|
+
Migrating to FlmsDeviseCreateUsers (20130208224914)
|
|
87914
|
+
Migrating to FlmsCreatePages (20130216032241)
|
|
87915
|
+
Migrating to CreateFlmsBlocks (20130302011705)
|
|
87916
|
+
Migrating to CreateFlmsBlocksPages (20130302015459)
|
|
87917
|
+
Migrating to CreateFlmsLayers (20130312220011)
|
|
87918
|
+
Migrating to AddImageToLayers (20130313002421)
|
|
87919
|
+
Migrating to CreateFlmsKeyframes (20130327183815)
|
|
87920
|
+
Migrating to RemoveOrderingFromLayers (20130404201756)
|
|
87921
|
+
Migrating to AddTextLayers (20130415185500)
|
|
87922
|
+
Migrating to StoreSizeInLayers (20130417210408)
|
|
87923
|
+
Migrating to StoreMarginInKeyframes (20130418191643)
|
|
87924
|
+
Migrating to LayersRemoveFromDom (20130418222016)
|
|
87925
|
+
Migrating to AddParagraphLayers (20130422193150)
|
|
87926
|
+
Migrating to LayersHaveZValue (20130426171058)
|
|
87927
|
+
Migrating to AddEmbedCodeToLayers (20130430224538)
|
|
87928
|
+
Migrating to MakeParagraphLayerBodyText (20130506204547)
|
|
87929
|
+
Migrating to AddActiveToFlmsLayers (20130506232533)
|
|
87930
|
+
Migrating to RemoveSizeLimitForEmbedCode (20130507222721)
|
|
87931
|
+
Migrating to AddImageDisplayModeToImageLayer (20130508002138)
|
|
87932
|
+
Migrating to AddAnimationAttributes (20130508174355)
|
|
87933
|
+
Migrating to AddThumbnailToBlock (20130508234709)
|
|
87934
|
+
Migrating to TitleForBlocks (20130514202128)
|
|
87935
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
87936
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
87937
|
+
[1m[35m (0.5ms)[0m ALTER TABLE "flms_blocks" ADD "title" varchar(255)
|
|
87938
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130514202128')[0m
|
|
87939
|
+
[1m[35m (0.6ms)[0m commit transaction
|
|
87940
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
87941
|
+
Connecting to database specified by database.yml
|
|
87942
|
+
[1m[36m (4.2ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
87943
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
87944
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "flms_blocks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "thumbnail" varchar(255), "title" varchar(255)) [0m
|
|
87945
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "flms_blocks_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "block_id" integer, "page_id" integer, "ordering" integer, "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
87946
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_flms_blocks_pages_on_block_id" ON "flms_blocks_pages" ("block_id")[0m
|
|
87947
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_flms_blocks_pages_on_page_id" ON "flms_blocks_pages" ("page_id")
|
|
87948
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "flms_keyframes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "layer_id" integer, "type" varchar(255), "scroll_start" integer, "scroll_duration" integer, "width" float, "height" float, "position_x" float, "position_y" float, "opacity" float, "scale" float, "blur" float, "margin_left" float DEFAULT 0.0, "margin_top" float DEFAULT 0.0) [0m
|
|
87949
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "flms_layers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "block_id" integer, "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "image" varchar(255), "text" varchar(255), "font_size" float, "color" varchar(255), "width" float, "height" float, "dom_remove" boolean DEFAULT 't', "header" varchar(255), "body" text, "z_index" varchar(255) DEFAULT '0' NOT NULL, "embed_code" text, "active" boolean DEFAULT 't', "image_display_mode" varchar(255) DEFAULT 'cover', "frame_rate" integer, "frame_count" integer, "image_width" integer, "image_height" integer)
|
|
87950
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_flms_layers_on_block_id" ON "flms_layers" ("block_id")[0m
|
|
87951
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "flms_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
87952
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_flms_pages_on_url" ON "flms_pages" ("url")[0m
|
|
87953
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "flms_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
87954
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_flms_users_on_email" ON "flms_users" ("email")[0m
|
|
87955
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "index_flms_users_on_reset_password_token" ON "flms_users" ("reset_password_token")
|
|
87956
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
87957
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
87958
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
87959
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130514202128')
|
|
87960
|
+
Connecting to database specified by database.yml
|
|
87961
|
+
[1m[36m (4.9ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
87962
|
+
Migrating to FlmsDeviseCreateUsers (20130208224914)
|
|
87963
|
+
Migrating to FlmsCreatePages (20130216032241)
|
|
87964
|
+
Migrating to CreateFlmsBlocks (20130302011705)
|
|
87965
|
+
Migrating to CreateFlmsBlocksPages (20130302015459)
|
|
87966
|
+
Migrating to CreateFlmsLayers (20130312220011)
|
|
87967
|
+
Migrating to AddImageToLayers (20130313002421)
|
|
87968
|
+
Migrating to CreateFlmsKeyframes (20130327183815)
|
|
87969
|
+
Migrating to RemoveOrderingFromLayers (20130404201756)
|
|
87970
|
+
Migrating to AddTextLayers (20130415185500)
|
|
87971
|
+
Migrating to StoreSizeInLayers (20130417210408)
|
|
87972
|
+
Migrating to StoreMarginInKeyframes (20130418191643)
|
|
87973
|
+
Migrating to LayersRemoveFromDom (20130418222016)
|
|
87974
|
+
Migrating to AddParagraphLayers (20130422193150)
|
|
87975
|
+
Migrating to LayersHaveZValue (20130426171058)
|
|
87976
|
+
Migrating to AddEmbedCodeToLayers (20130430224538)
|
|
87977
|
+
Migrating to MakeParagraphLayerBodyText (20130506204547)
|
|
87978
|
+
Migrating to AddActiveToFlmsLayers (20130506232533)
|
|
87979
|
+
Migrating to RemoveSizeLimitForEmbedCode (20130507222721)
|
|
87980
|
+
Migrating to AddImageDisplayModeToImageLayer (20130508002138)
|
|
87981
|
+
Migrating to AddAnimationAttributes (20130508174355)
|
|
87982
|
+
Migrating to AddThumbnailToBlock (20130508234709)
|
|
87983
|
+
Migrating to TitleForBlocks (20130514202128)
|
|
87984
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
87985
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|