templator_chabz 0.9.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/MIT-LICENSE +20 -0
- data/README.rdoc +3 -0
- data/Rakefile +32 -0
- data/lib/generators/templator_chabz/install_generator.rb +81 -0
- data/lib/generators/templator_chabz/template_generator.rb +31 -0
- data/lib/generators/templator_chabz/templates/foundation/erb/banded.html.erb +116 -0
- data/lib/generators/templator_chabz/templates/foundation/erb/banner-home.html.erb +125 -0
- data/lib/generators/templator_chabz/templates/foundation/erb/blog.html.erb +154 -0
- data/lib/generators/templator_chabz/templates/foundation/erb/feed.html.erb +165 -0
- data/lib/generators/templator_chabz/templates/foundation/erb/grid.html.erb +258 -0
- data/lib/generators/templator_chabz/templates/foundation/erb/orbit.html.erb +121 -0
- data/lib/generators/templator_chabz/templates/foundation/erb/sidebar.html.erb +111 -0
- data/lib/generators/templator_chabz/templates/foundation/haml/banded.html.haml +88 -0
- data/lib/generators/templator_chabz/templates/foundation/haml/banner-home.html.haml +114 -0
- data/lib/generators/templator_chabz/templates/foundation/haml/blog.html.haml +107 -0
- data/lib/generators/templator_chabz/templates/foundation/haml/feed.html.haml +155 -0
- data/lib/generators/templator_chabz/templates/foundation/haml/grid.html.haml +216 -0
- data/lib/generators/templator_chabz/templates/foundation/haml/orbit.html.haml +90 -0
- data/lib/generators/templator_chabz/templates/foundation/haml/sidebar.html.haml +92 -0
- data/lib/tasks/templator_chabz_tasks.rake +4 -0
- data/lib/templator_chabz.rb +3 -0
- data/lib/templator_chabz/engine.rb +6 -0
- data/lib/templator_chabz/version.rb +3 -0
- data/test/dummy/Gemfile +18 -0
- data/test/dummy/Gemfile.lock +127 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/app/views/posts/_form.html.haml +16 -0
- data/test/dummy/app/views/posts/edit.html.haml +7 -0
- data/test/dummy/app/views/posts/index.html.haml +21 -0
- data/test/dummy/app/views/posts/index.json.jbuilder +4 -0
- data/test/dummy/app/views/posts/new.html.haml +5 -0
- data/test/dummy/app/views/posts/show.html.haml +12 -0
- data/test/dummy/app/views/posts/show.json.jbuilder +1 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +23 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +29 -0
- data/test/dummy/config/environments/production.rb +80 -0
- data/test/dummy/config/environments/test.rb +36 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +12 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +56 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20131006054133_create_tests.rb +8 -0
- data/test/dummy/db/migrate/20131006115208_create_posts.rb +10 -0
- data/test/dummy/db/schema.rb +28 -0
- data/test/dummy/log/development.log +2299 -0
- data/test/dummy/public/404.html +58 -0
- data/test/dummy/public/422.html +58 -0
- data/test/dummy/public/500.html +57 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/test/controllers/posts_controller_test.rb +49 -0
- data/test/dummy/test/fixtures/posts.yml +9 -0
- data/test/dummy/test/fixtures/tests.yml +11 -0
- data/test/dummy/test/helpers/posts_helper_test.rb +4 -0
- data/test/dummy/test/models/post_test.rb +7 -0
- data/test/dummy/test/models/test_test.rb +7 -0
- data/test/dummy/tmp/cache/assets/development/sass/5e65457e8790b21bb66467547fe443e595671eb3/foundation.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_alert-boxes.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_block-grid.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_breadcrumbs.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_button-groups.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_buttons.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_clearing.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_custom-forms.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_dropdown-buttons.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_dropdown.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_flex-video.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_forms.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_global.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_grid.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_inline-lists.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_joyride.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_keystrokes.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_labels.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_magellan.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_orbit.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_pagination.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_panels.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_pricing-tables.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_progress-bars.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_reveal.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_section.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_side-nav.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_split-buttons.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_sub-nav.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_switch.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_tables.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_thumbs.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_tooltips.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_top-bar.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_type.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/942db8b2be953c9bac7f632a6f4ac941579d2216/_visibility.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/be6f7d6cf81a3a6db6a6427662e44ee1833019b8/_variables.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/ea369932e64bc5225aea5605bf0ed7dad0149c7c/foundation_and_overrides.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/ea369932e64bc5225aea5605bf0ed7dad0149c7c/posts.css.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/ea369932e64bc5225aea5605bf0ed7dad0149c7c/scaffolds.css.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/08662e474ce1579b97884ab50e2e2643 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0a99b6b60d901e7347ae702a774c460d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/109364ff23b8c3f298666d5b3ed59f8f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/10fcfbe6ebae11a40c8eac41939a1b9a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/1a821c95f916421780abe99813b3c91b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/1f186ab17df208d8f9291c4ec5793626 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/204247b3a9d449797de892002beb9ff0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/210743f18402df668a8eac0f97fe9792 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/21510ea8264eaa94d48104f903b60f39 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/21b774bcf777796eb33a2f79ef74e215 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/22f08f9bfd17b861b64760e60468d81b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2b2fc669f5a079c5eb55160b13687322 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2d64858078c6c6e2fe621b48bb2f44a9 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/302401b849544f478d71b360f959de1b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/35c4ebb0728d94f58835f5a834ee410b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3794b356552fe398efb67a9f13603852 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/40e4dc27315c8bb23ab744a9b4109d6d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/45608fceae9d088671ac5d2ee16d87da +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4582dca43473c600d2a889c0ceacb6e9 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4a31b996e5ba29ae4ae8296e024d72e2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4b0af6b796cc38d45f669c27eb80317c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5322bf09526bb349f4db53733d00708d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/554fbf86fb6ebbfba471462aece61b71 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/59ee4111f5f3ae4c0e2611fe56f27d41 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5a2122189d95df7e073f20347a1f4d1d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5a6dc5b720e91c7d5b96f8978e8c099c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5a903d903ff1031711d0cb82b0e4c473 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5f0c911bac0bdade86492175727353a0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6f9f5b80c345a75b6ed3c682bb12b4a2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/71ed84561ff87a5b5e970969ee1071d1 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/76ede84da6cefda9c2aa52569d397ab6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7b17de2aa94f5206252e277afe1df40c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7b50d5f08a3a319773b0c52f4483ee4f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7e4be92eadae28f8b72b8c1f6ee3d80d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8b590831eed712236b632c539da643e9 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8e99ae8c4ddf076611fbae06243721d8 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/90c20156d1c9a5163e51c8c056ff5777 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/92088122fa40322c86cc0083551a4528 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9227d7172d559066f794a189c599e1fc +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9ef8b3034506be9061b9df2e00698d80 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9f93e00a58310561d1989b82ab7b83a7 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9fdd00562d6dea819db33bdf1f5cab5b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a2559a19bfb0a6b5f9651b4e9dbe559c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a531964bec6d6cb36895a13f8bdab7e0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/aac4628c5d4049f6abe72c1b0e42097b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/aada318492cd92ae01885ef3911e2717 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/abb46c9cfc4b1dca83447d9672fb9b8d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b0acf2933cfdb22eaeb8c9d80a87ccd1 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b0e2c03464284b32461db11132ceaa42 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b0f8eeb3d384a02c7915be1d63860345 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b184b27f67d8e8736980a0b8984fd9ff +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b4c7391482ed7db125856b4a5611c8e0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b4d05ba000729f99077402d6f3ebc6a5 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b64602f02c6f0bd3701cdcc16fe1cdb1 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b7edc309227cdee7658c29674a5eb30f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/bd3936370d0f952ada5774e2230046ed +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/bfca04565e745a9dcb660191f63c2dd0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c0541f37a48c06469f284192ae351f9c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c32dd6e27182c620c704715b6f312863 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c3bc360cff83ffddb8e0f46b918957d2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c4a4cc465b11c1d68b8c960371d85011 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c8ef7534699ea82b3fb3658b8c10cf91 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cc3949ebb617002ef1f538cfd4caa5df +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d3404752cf23ba5902ef142cb4f1d72d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d70fca14dd961df1ddacfb404e68f641 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e35e5cf8df356b11ca306cb025aec9ff +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e459168835a5f27b832ace20874f7c10 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f4db7f07159837dd9f31e436c623d99e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f767bf7733f9d255bda5d7ad033ab87f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/templator_chabz_test.rb +7 -0
- data/test/test_helper.rb +15 -0
- metadata +432 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# Your secret key is used for verifying the integrity of signed cookies.
|
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
|
5
|
+
|
|
6
|
+
# Make sure the secret is at least 30 characters and all random,
|
|
7
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
|
8
|
+
# You can use `rake secret` to generate a secure secret key.
|
|
9
|
+
|
|
10
|
+
# Make sure your secret_key_base is kept private
|
|
11
|
+
# if you're sharing your code publicly.
|
|
12
|
+
Dummy::Application.config.secret_key_base = '6a1406e64a2321c189b6c63177efde533f5284b07dd00b4ecf1f0ead084f913940f705fa7311a4032489f0b3b123615f4da96f372da1f01e0aaf89d7891498b6'
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# This file contains settings for ActionController::ParamsWrapper which
|
|
4
|
+
# is enabled by default.
|
|
5
|
+
|
|
6
|
+
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
|
7
|
+
ActiveSupport.on_load(:action_controller) do
|
|
8
|
+
wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
# To enable root element in JSON for ActiveRecord objects.
|
|
12
|
+
# ActiveSupport.on_load(:active_record) do
|
|
13
|
+
# self.include_root_in_json = true
|
|
14
|
+
# end
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Files in the config/locales directory are used for internationalization
|
|
2
|
+
# and are automatically loaded by Rails. If you want to use locales other
|
|
3
|
+
# than English, add the necessary files in this directory.
|
|
4
|
+
#
|
|
5
|
+
# To use the locales, use `I18n.t`:
|
|
6
|
+
#
|
|
7
|
+
# I18n.t 'hello'
|
|
8
|
+
#
|
|
9
|
+
# In views, this is aliased to just `t`:
|
|
10
|
+
#
|
|
11
|
+
# <%= t('hello') %>
|
|
12
|
+
#
|
|
13
|
+
# To use a different locale, set it with `I18n.locale`:
|
|
14
|
+
#
|
|
15
|
+
# I18n.locale = :es
|
|
16
|
+
#
|
|
17
|
+
# This would use the information in config/locales/es.yml.
|
|
18
|
+
#
|
|
19
|
+
# To learn more, please read the Rails Internationalization guide
|
|
20
|
+
# available at http://guides.rubyonrails.org/i18n.html.
|
|
21
|
+
|
|
22
|
+
en:
|
|
23
|
+
hello: "Hello world"
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
Dummy::Application.routes.draw do
|
|
2
|
+
# The priority is based upon order of creation: first created -> highest priority.
|
|
3
|
+
# See how all your routes lay out with "rake routes".
|
|
4
|
+
|
|
5
|
+
# You can have the root of your site routed with "root"
|
|
6
|
+
# root 'welcome#index'
|
|
7
|
+
|
|
8
|
+
# Example of regular route:
|
|
9
|
+
# get 'products/:id' => 'catalog#view'
|
|
10
|
+
|
|
11
|
+
# Example of named route that can be invoked with purchase_url(id: product.id)
|
|
12
|
+
# get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
|
|
13
|
+
|
|
14
|
+
# Example resource route (maps HTTP verbs to controller actions automatically):
|
|
15
|
+
# resources :products
|
|
16
|
+
|
|
17
|
+
# Example resource route with options:
|
|
18
|
+
# resources :products do
|
|
19
|
+
# member do
|
|
20
|
+
# get 'short'
|
|
21
|
+
# post 'toggle'
|
|
22
|
+
# end
|
|
23
|
+
#
|
|
24
|
+
# collection do
|
|
25
|
+
# get 'sold'
|
|
26
|
+
# end
|
|
27
|
+
# end
|
|
28
|
+
|
|
29
|
+
# Example resource route with sub-resources:
|
|
30
|
+
# resources :products do
|
|
31
|
+
# resources :comments, :sales
|
|
32
|
+
# resource :seller
|
|
33
|
+
# end
|
|
34
|
+
|
|
35
|
+
# Example resource route with more complex sub-resources:
|
|
36
|
+
# resources :products do
|
|
37
|
+
# resources :comments
|
|
38
|
+
# resources :sales do
|
|
39
|
+
# get 'recent', on: :collection
|
|
40
|
+
# end
|
|
41
|
+
# end
|
|
42
|
+
|
|
43
|
+
# Example resource route with concerns:
|
|
44
|
+
# concern :toggleable do
|
|
45
|
+
# post 'toggle'
|
|
46
|
+
# end
|
|
47
|
+
# resources :posts, concerns: :toggleable
|
|
48
|
+
# resources :photos, concerns: :toggleable
|
|
49
|
+
|
|
50
|
+
# Example resource route within a namespace:
|
|
51
|
+
# namespace :admin do
|
|
52
|
+
# # Directs /admin/products/* to Admin::ProductsController
|
|
53
|
+
# # (app/controllers/admin/products_controller.rb)
|
|
54
|
+
# resources :products
|
|
55
|
+
# end
|
|
56
|
+
end
|
|
Binary file
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# encoding: UTF-8
|
|
2
|
+
# This file is auto-generated from the current state of the database. Instead
|
|
3
|
+
# of editing this file, please use the migrations feature of Active Record to
|
|
4
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
|
5
|
+
#
|
|
6
|
+
# Note that this schema.rb definition is the authoritative source for your
|
|
7
|
+
# database schema. If you need to create the application database on another
|
|
8
|
+
# system, you should be using db:schema:load, not running all the migrations
|
|
9
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
|
10
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
|
11
|
+
#
|
|
12
|
+
# It's strongly recommended that you check this file into your version control system.
|
|
13
|
+
|
|
14
|
+
ActiveRecord::Schema.define(version: 20131006115208) do
|
|
15
|
+
|
|
16
|
+
create_table "posts", force: true do |t|
|
|
17
|
+
t.string "title"
|
|
18
|
+
t.text "body"
|
|
19
|
+
t.datetime "created_at"
|
|
20
|
+
t.datetime "updated_at"
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
create_table "tests", force: true do |t|
|
|
24
|
+
t.datetime "created_at"
|
|
25
|
+
t.datetime "updated_at"
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
end
|
|
@@ -0,0 +1,2299 @@
|
|
|
1
|
+
[1m[36m (151.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
2
|
+
[1m[35m (142.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
3
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
4
|
+
Migrating to CreateTests (20131006054133)
|
|
5
|
+
[1m[35m (0.2ms)[0m begin transaction
|
|
6
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "tests" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) [0m
|
|
7
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131006054133"]]
|
|
8
|
+
[1m[36m (121.4ms)[0m [1mcommit transaction[0m
|
|
9
|
+
Migrating to CreatePosts (20131006115208)
|
|
10
|
+
[1m[35m (0.3ms)[0m begin transaction
|
|
11
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) [0m
|
|
12
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131006115208"]]
|
|
13
|
+
[1m[36m (114.4ms)[0m [1mcommit transaction[0m
|
|
14
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 19:53:04 +0800
|
|
18
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
19
|
+
Processing by PostsController#index as HTML
|
|
20
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
|
21
|
+
Rendered posts/index.html.haml within layouts/application (21.3ms)
|
|
22
|
+
Completed 200 OK in 3578ms (Views: 3542.8ms | ActiveRecord: 0.5ms)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 19:53:08 +0800
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 19:53:08 +0800
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
Started GET "/assets/vendor/custom.modernizr.js?body=1" for 127.0.0.1 at 2013-10-06 19:53:08 +0800
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 19:53:08 +0800
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 19:53:08 +0800
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 19:53:08 +0800
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 19:53:08 +0800
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 19:53:27 +0800
|
|
47
|
+
Processing by PostsController#index as HTML
|
|
48
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
49
|
+
Rendered posts/index.html.haml within layouts/application (1.9ms)
|
|
50
|
+
Completed 200 OK in 15ms (Views: 12.8ms | ActiveRecord: 0.2ms)
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 19:53:27 +0800
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 19:53:27 +0800
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 19:53:27 +0800
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
Started GET "/assets/vendor/custom.modernizr.js?body=1" for 127.0.0.1 at 2013-10-06 19:53:27 +0800
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 19:53:27 +0800
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 19:53:27 +0800
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 19:53:27 +0800
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 19:53:28 +0800
|
|
75
|
+
Processing by PostsController#index as HTML
|
|
76
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
|
77
|
+
Rendered posts/index.html.haml within layouts/application (1.0ms)
|
|
78
|
+
Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.2ms)
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 19:53:28 +0800
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
Started GET "/assets/vendor/custom.modernizr.js?body=1" for 127.0.0.1 at 2013-10-06 19:53:28 +0800
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 19:53:28 +0800
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 19:53:28 +0800
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 19:53:28 +0800
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 19:53:28 +0800
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 19:53:28 +0800
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 19:53:51 +0800
|
|
103
|
+
Processing by PostsController#index as HTML
|
|
104
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
105
|
+
Rendered posts/index.html.haml within layouts/application (1.0ms)
|
|
106
|
+
Completed 200 OK in 22ms (Views: 20.7ms | ActiveRecord: 0.2ms)
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 19:53:51 +0800
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 19:53:51 +0800
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 19:53:51 +0800
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 19:53:51 +0800
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
Started GET "/assets/vendor/custom.modernizr.js?body=1" for 127.0.0.1 at 2013-10-06 19:53:51 +0800
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 19:53:51 +0800
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 19:53:51 +0800
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 20:12:19 +0800
|
|
131
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
132
|
+
Processing by PostsController#index as HTML
|
|
133
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
134
|
+
Rendered posts/index.html.haml within layouts/application (5.6ms)
|
|
135
|
+
Completed 200 OK in 102ms (Views: 76.9ms | ActiveRecord: 0.4ms)
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 20:12:20 +0800
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 20:12:20 +0800
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 20:12:20 +0800
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 20:12:20 +0800
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
Started GET "/assets/vendor/custom.modernizr.js?body=1" for 127.0.0.1 at 2013-10-06 20:12:20 +0800
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 20:12:20 +0800
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 20:12:20 +0800
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 20:47:37 +0800
|
|
160
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
161
|
+
Processing by PostsController#index as HTML
|
|
162
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
163
|
+
Rendered posts/index.html.haml within layouts/application (5.0ms)
|
|
164
|
+
Completed 200 OK in 123ms (Views: 96.6ms | ActiveRecord: 0.4ms)
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 20:47:38 +0800
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 20:47:38 +0800
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 20:47:38 +0800
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 20:47:38 +0800
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
Started GET "/assets/vendor/custom.modernizr.js?body=1" for 127.0.0.1 at 2013-10-06 20:47:38 +0800
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 20:47:38 +0800
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 20:47:38 +0800
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 20:52:58 +0800
|
|
189
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
190
|
+
Processing by PostsController#index as HTML
|
|
191
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
192
|
+
Rendered posts/index.html.haml within layouts/application (4.9ms)
|
|
193
|
+
Completed 200 OK in 142ms (Views: 116.1ms | ActiveRecord: 0.4ms)
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 20:52:59 +0800
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 20:52:59 +0800
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 20:52:59 +0800
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 20:52:59 +0800
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 20:52:59 +0800
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
Started GET "/assets/vendor/custom.modernizr.js?body=1" for 127.0.0.1 at 2013-10-06 20:52:59 +0800
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 20:52:59 +0800
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 20:53:37 +0800
|
|
218
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
219
|
+
Processing by PostsController#index as HTML
|
|
220
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
221
|
+
Rendered posts/index.html.haml within layouts/application (5.2ms)
|
|
222
|
+
Completed 200 OK in 207ms (Views: 180.6ms | ActiveRecord: 0.4ms)
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 20:53:37 +0800
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 20:53:37 +0800
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 20:53:38 +0800
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 20:53:38 +0800
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-06 20:53:38 +0800
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
Started GET "/assets/vendor/custom.modernizr.js?body=1" for 127.0.0.1 at 2013-10-06 20:53:38 +0800
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 20:53:38 +0800
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 20:53:38 +0800
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 20:54:29 +0800
|
|
250
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
251
|
+
Processing by PostsController#index as HTML
|
|
252
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
253
|
+
Rendered posts/index.html.haml within layouts/application (5.1ms)
|
|
254
|
+
Completed 200 OK in 134ms (Views: 107.7ms | ActiveRecord: 0.4ms)
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 20:54:29 +0800
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 20:54:29 +0800
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 20:54:29 +0800
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
Started GET "/assets/vendor/custom.modernizr.js?body=1" for 127.0.0.1 at 2013-10-06 20:54:29 +0800
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-06 20:54:29 +0800
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 20:54:29 +0800
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 20:54:29 +0800
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 20:54:29 +0800
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 20:54:43 +0800
|
|
282
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
283
|
+
Processing by PostsController#index as HTML
|
|
284
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
285
|
+
Rendered posts/index.html.haml within layouts/application (4.9ms)
|
|
286
|
+
Completed 200 OK in 169ms (Views: 144.2ms | ActiveRecord: 0.4ms)
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 20:54:43 +0800
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 20:54:43 +0800
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
Started GET "/assets/vendor/custom.modernizr.js?body=1" for 127.0.0.1 at 2013-10-06 20:54:43 +0800
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 20:54:43 +0800
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 20:54:43 +0800
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 20:54:44 +0800
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-06 20:54:44 +0800
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 20:54:44 +0800
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 20:55:50 +0800
|
|
314
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
315
|
+
Processing by PostsController#index as HTML
|
|
316
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
317
|
+
Rendered posts/index.html.haml within layouts/application (4.9ms)
|
|
318
|
+
Completed 200 OK in 449ms (Views: 423.6ms | ActiveRecord: 0.4ms)
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
Started GET "/assets/foundation/foundation.js?body=1" for 127.0.0.1 at 2013-10-06 20:55:51 +0800
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
Started GET "/assets/foundation/foundation.clearing.js?body=1" for 127.0.0.1 at 2013-10-06 20:55:51 +0800
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
Started GET "/assets/foundation/foundation.dropdown.js?body=1" for 127.0.0.1 at 2013-10-06 20:55:51 +0800
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 20:55:51 +0800
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
Started GET "/assets/foundation/foundation.cookie.js?body=1" for 127.0.0.1 at 2013-10-06 20:55:51 +0800
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
Started GET "/assets/foundation/foundation.alerts.js?body=1" for 127.0.0.1 at 2013-10-06 20:55:51 +0800
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 20:55:51 +0800
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 20:55:51 +0800
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 20:55:51 +0800
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
Started GET "/assets/foundation/foundation.forms.js?body=1" for 127.0.0.1 at 2013-10-06 20:55:51 +0800
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
Started GET "/assets/foundation/foundation.joyride.js?body=1" for 127.0.0.1 at 2013-10-06 20:55:51 +0800
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
Started GET "/assets/foundation/foundation.magellan.js?body=1" for 127.0.0.1 at 2013-10-06 20:55:51 +0800
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
Started GET "/assets/foundation/foundation.orbit.js?body=1" for 127.0.0.1 at 2013-10-06 20:55:51 +0800
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-06 20:55:51 +0800
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
Started GET "/assets/vendor/custom.modernizr.js?body=1" for 127.0.0.1 at 2013-10-06 20:55:51 +0800
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
Started GET "/assets/foundation/foundation.reveal.js?body=1" for 127.0.0.1 at 2013-10-06 20:55:52 +0800
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
Started GET "/assets/foundation/foundation.section.js?body=1" for 127.0.0.1 at 2013-10-06 20:55:52 +0800
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
Started GET "/assets/foundation/foundation.placeholder.js?body=1" for 127.0.0.1 at 2013-10-06 20:55:52 +0800
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
Started GET "/assets/foundation/foundation.topbar.js?body=1" for 127.0.0.1 at 2013-10-06 20:55:52 +0800
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
Started GET "/assets/foundation/foundation.tooltips.js?body=1" for 127.0.0.1 at 2013-10-06 20:55:52 +0800
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
Started GET "/assets/foundation/foundation.interchange.js?body=1" for 127.0.0.1 at 2013-10-06 20:55:52 +0800
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
Started GET "/assets/foundation/foundation.abide.js?body=1" for 127.0.0.1 at 2013-10-06 20:55:52 +0800
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
Started GET "/assets/foundation/index.js?body=1" for 127.0.0.1 at 2013-10-06 20:55:52 +0800
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 20:55:52 +0800
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 20:55:52 +0800
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 20:56:08 +0800
|
|
397
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
398
|
+
Processing by PostsController#index as HTML
|
|
399
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
400
|
+
Rendered posts/index.html.haml within layouts/application (5.2ms)
|
|
401
|
+
Completed 200 OK in 260ms (Views: 232.9ms | ActiveRecord: 0.4ms)
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 20:56:09 +0800
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 20:56:09 +0800
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 20:56:09 +0800
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:09 +0800
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 20:56:09 +0800
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
Started GET "/assets/vendor/custom.modernizr.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:09 +0800
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
Started GET "/assets/foundation/foundation.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:09 +0800
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
Started GET "/assets/foundation/foundation.alerts.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:09 +0800
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
Started GET "/assets/foundation/foundation.clearing.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:09 +0800
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
Started GET "/assets/foundation/foundation.cookie.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:09 +0800
|
|
432
|
+
|
|
433
|
+
|
|
434
|
+
Started GET "/assets/foundation/foundation.dropdown.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:09 +0800
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
Started GET "/assets/foundation/foundation.forms.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:09 +0800
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
Started GET "/assets/foundation/foundation.joyride.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:09 +0800
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
Started GET "/assets/foundation/foundation.magellan.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:09 +0800
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
Started GET "/assets/foundation/foundation.orbit.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:09 +0800
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
Started GET "/assets/foundation/foundation.reveal.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:09 +0800
|
|
450
|
+
|
|
451
|
+
|
|
452
|
+
Started GET "/assets/foundation/foundation.section.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:09 +0800
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
Started GET "/assets/foundation/foundation.tooltips.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:09 +0800
|
|
456
|
+
|
|
457
|
+
|
|
458
|
+
Started GET "/assets/foundation/foundation.topbar.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:09 +0800
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
Started GET "/assets/foundation/foundation.interchange.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:09 +0800
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
Started GET "/assets/foundation/foundation.placeholder.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:09 +0800
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
Started GET "/assets/foundation/foundation.abide.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:09 +0800
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
Started GET "/assets/foundation/index.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:09 +0800
|
|
471
|
+
|
|
472
|
+
|
|
473
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:09 +0800
|
|
474
|
+
|
|
475
|
+
|
|
476
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:09 +0800
|
|
477
|
+
|
|
478
|
+
|
|
479
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 20:56:11 +0800
|
|
480
|
+
Processing by PostsController#index as HTML
|
|
481
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
482
|
+
Rendered posts/index.html.haml within layouts/application (1.6ms)
|
|
483
|
+
Completed 200 OK in 16ms (Views: 14.3ms | ActiveRecord: 0.2ms)
|
|
484
|
+
|
|
485
|
+
|
|
486
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 20:56:11 +0800
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 20:56:11 +0800
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:11 +0800
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 20:56:11 +0800
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 20:56:11 +0800
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
Started GET "/assets/vendor/custom.modernizr.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:11 +0800
|
|
502
|
+
|
|
503
|
+
|
|
504
|
+
Started GET "/assets/foundation/foundation.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:11 +0800
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+
Started GET "/assets/foundation/foundation.alerts.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:11 +0800
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
Started GET "/assets/foundation/foundation.clearing.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:11 +0800
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
Started GET "/assets/foundation/foundation.cookie.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:11 +0800
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
Started GET "/assets/foundation/foundation.dropdown.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:11 +0800
|
|
517
|
+
|
|
518
|
+
|
|
519
|
+
Started GET "/assets/foundation/foundation.forms.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:11 +0800
|
|
520
|
+
|
|
521
|
+
|
|
522
|
+
Started GET "/assets/foundation/foundation.joyride.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:11 +0800
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
Started GET "/assets/foundation/foundation.magellan.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:11 +0800
|
|
526
|
+
|
|
527
|
+
|
|
528
|
+
Started GET "/assets/foundation/foundation.orbit.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:11 +0800
|
|
529
|
+
|
|
530
|
+
|
|
531
|
+
Started GET "/assets/foundation/foundation.reveal.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:11 +0800
|
|
532
|
+
|
|
533
|
+
|
|
534
|
+
Started GET "/assets/foundation/foundation.section.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:11 +0800
|
|
535
|
+
|
|
536
|
+
|
|
537
|
+
Started GET "/assets/foundation/foundation.tooltips.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:11 +0800
|
|
538
|
+
|
|
539
|
+
|
|
540
|
+
Started GET "/assets/foundation/foundation.placeholder.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:11 +0800
|
|
541
|
+
|
|
542
|
+
|
|
543
|
+
Started GET "/assets/foundation/foundation.abide.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:11 +0800
|
|
544
|
+
|
|
545
|
+
|
|
546
|
+
Started GET "/assets/foundation/foundation.interchange.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:11 +0800
|
|
547
|
+
|
|
548
|
+
|
|
549
|
+
Started GET "/assets/foundation/foundation.topbar.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:11 +0800
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
Started GET "/assets/foundation/index.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:11 +0800
|
|
553
|
+
|
|
554
|
+
|
|
555
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:11 +0800
|
|
556
|
+
|
|
557
|
+
|
|
558
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:11 +0800
|
|
559
|
+
|
|
560
|
+
|
|
561
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 20:56:32 +0800
|
|
562
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
563
|
+
Processing by PostsController#index as HTML
|
|
564
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
565
|
+
Rendered posts/index.html.haml within layouts/application (5.5ms)
|
|
566
|
+
Completed 200 OK in 299ms (Views: 270.0ms | ActiveRecord: 0.4ms)
|
|
567
|
+
|
|
568
|
+
|
|
569
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 20:56:33 +0800
|
|
570
|
+
|
|
571
|
+
|
|
572
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 20:56:33 +0800
|
|
573
|
+
|
|
574
|
+
|
|
575
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:33 +0800
|
|
576
|
+
|
|
577
|
+
|
|
578
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 20:56:33 +0800
|
|
579
|
+
|
|
580
|
+
|
|
581
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 20:56:33 +0800
|
|
582
|
+
|
|
583
|
+
|
|
584
|
+
Started GET "/assets/vendor/custom.modernizr.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:33 +0800
|
|
585
|
+
|
|
586
|
+
|
|
587
|
+
Started GET "/assets/foundation/foundation.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:33 +0800
|
|
588
|
+
|
|
589
|
+
|
|
590
|
+
Started GET "/assets/foundation/foundation.alerts.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:33 +0800
|
|
591
|
+
|
|
592
|
+
|
|
593
|
+
Started GET "/assets/foundation/foundation.clearing.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:33 +0800
|
|
594
|
+
|
|
595
|
+
|
|
596
|
+
Started GET "/assets/foundation/foundation.cookie.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:33 +0800
|
|
597
|
+
|
|
598
|
+
|
|
599
|
+
Started GET "/assets/foundation/foundation.dropdown.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:33 +0800
|
|
600
|
+
|
|
601
|
+
|
|
602
|
+
Started GET "/assets/foundation/foundation.joyride.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:33 +0800
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
Started GET "/assets/foundation/foundation.forms.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:33 +0800
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
Started GET "/assets/foundation/foundation.magellan.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:33 +0800
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
Started GET "/assets/foundation/foundation.orbit.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:33 +0800
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
Started GET "/assets/foundation/foundation.section.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:33 +0800
|
|
615
|
+
|
|
616
|
+
|
|
617
|
+
Started GET "/assets/foundation/foundation.tooltips.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:33 +0800
|
|
618
|
+
|
|
619
|
+
|
|
620
|
+
Started GET "/assets/foundation/foundation.reveal.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:33 +0800
|
|
621
|
+
|
|
622
|
+
|
|
623
|
+
Started GET "/assets/foundation/foundation.topbar.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:33 +0800
|
|
624
|
+
|
|
625
|
+
|
|
626
|
+
Started GET "/assets/foundation/foundation.interchange.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:33 +0800
|
|
627
|
+
|
|
628
|
+
|
|
629
|
+
Started GET "/assets/foundation/foundation.placeholder.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:33 +0800
|
|
630
|
+
|
|
631
|
+
|
|
632
|
+
Started GET "/assets/foundation/foundation.abide.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:33 +0800
|
|
633
|
+
|
|
634
|
+
|
|
635
|
+
Started GET "/assets/foundation/index.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:33 +0800
|
|
636
|
+
|
|
637
|
+
|
|
638
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:33 +0800
|
|
639
|
+
|
|
640
|
+
|
|
641
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 20:56:33 +0800
|
|
642
|
+
|
|
643
|
+
|
|
644
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 21:02:08 +0800
|
|
645
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
646
|
+
Processing by PostsController#index as HTML
|
|
647
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
648
|
+
Rendered posts/index.html.haml within layouts/application (5.0ms)
|
|
649
|
+
Completed 200 OK in 254ms (Views: 229.2ms | ActiveRecord: 0.4ms)
|
|
650
|
+
|
|
651
|
+
|
|
652
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 21:02:09 +0800
|
|
653
|
+
|
|
654
|
+
|
|
655
|
+
Started GET "/assets/vendor/custom.modernizr.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:09 +0800
|
|
656
|
+
|
|
657
|
+
|
|
658
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 21:02:09 +0800
|
|
659
|
+
|
|
660
|
+
|
|
661
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 21:02:09 +0800
|
|
662
|
+
|
|
663
|
+
|
|
664
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 21:02:09 +0800
|
|
665
|
+
|
|
666
|
+
|
|
667
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:09 +0800
|
|
668
|
+
|
|
669
|
+
|
|
670
|
+
Started GET "/assets/foundation/foundation.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:09 +0800
|
|
671
|
+
|
|
672
|
+
|
|
673
|
+
Started GET "/assets/foundation/foundation.alerts.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:09 +0800
|
|
674
|
+
|
|
675
|
+
|
|
676
|
+
Started GET "/assets/foundation/foundation.clearing.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:09 +0800
|
|
677
|
+
|
|
678
|
+
|
|
679
|
+
Started GET "/assets/foundation/foundation.cookie.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:09 +0800
|
|
680
|
+
|
|
681
|
+
|
|
682
|
+
Started GET "/assets/foundation/foundation.dropdown.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:09 +0800
|
|
683
|
+
|
|
684
|
+
|
|
685
|
+
Started GET "/assets/foundation/foundation.forms.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:09 +0800
|
|
686
|
+
|
|
687
|
+
|
|
688
|
+
Started GET "/assets/foundation/foundation.joyride.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:09 +0800
|
|
689
|
+
|
|
690
|
+
|
|
691
|
+
Started GET "/assets/foundation/foundation.magellan.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:09 +0800
|
|
692
|
+
|
|
693
|
+
|
|
694
|
+
Started GET "/assets/foundation/foundation.orbit.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:09 +0800
|
|
695
|
+
|
|
696
|
+
|
|
697
|
+
Started GET "/assets/foundation/foundation.reveal.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:09 +0800
|
|
698
|
+
|
|
699
|
+
|
|
700
|
+
Started GET "/assets/foundation/foundation.topbar.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:09 +0800
|
|
701
|
+
|
|
702
|
+
|
|
703
|
+
Started GET "/assets/foundation/foundation.section.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:09 +0800
|
|
704
|
+
|
|
705
|
+
|
|
706
|
+
Started GET "/assets/foundation/foundation.tooltips.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:09 +0800
|
|
707
|
+
|
|
708
|
+
|
|
709
|
+
Started GET "/assets/foundation/foundation.abide.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:09 +0800
|
|
710
|
+
|
|
711
|
+
|
|
712
|
+
Started GET "/assets/foundation/foundation.placeholder.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:09 +0800
|
|
713
|
+
|
|
714
|
+
|
|
715
|
+
Started GET "/assets/foundation/foundation.interchange.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:09 +0800
|
|
716
|
+
|
|
717
|
+
|
|
718
|
+
Started GET "/assets/foundation/index.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:09 +0800
|
|
719
|
+
|
|
720
|
+
|
|
721
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:09 +0800
|
|
722
|
+
|
|
723
|
+
|
|
724
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:09 +0800
|
|
725
|
+
|
|
726
|
+
|
|
727
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 21:02:58 +0800
|
|
728
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
729
|
+
Processing by PostsController#index as HTML
|
|
730
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
731
|
+
Rendered posts/index.html.haml within layouts/application (5.3ms)
|
|
732
|
+
Completed 200 OK in 324ms (Views: 294.6ms | ActiveRecord: 0.5ms)
|
|
733
|
+
|
|
734
|
+
|
|
735
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 21:02:58 +0800
|
|
736
|
+
|
|
737
|
+
|
|
738
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 21:02:58 +0800
|
|
739
|
+
|
|
740
|
+
|
|
741
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:58 +0800
|
|
742
|
+
|
|
743
|
+
|
|
744
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 21:02:59 +0800
|
|
745
|
+
|
|
746
|
+
|
|
747
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 21:02:59 +0800
|
|
748
|
+
|
|
749
|
+
|
|
750
|
+
Started GET "/assets/vendor/custom.modernizr.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:59 +0800
|
|
751
|
+
|
|
752
|
+
|
|
753
|
+
Started GET "/assets/foundation/foundation.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:59 +0800
|
|
754
|
+
|
|
755
|
+
|
|
756
|
+
Started GET "/assets/foundation/foundation.alerts.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:59 +0800
|
|
757
|
+
|
|
758
|
+
|
|
759
|
+
Started GET "/assets/foundation/foundation.clearing.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:59 +0800
|
|
760
|
+
|
|
761
|
+
|
|
762
|
+
Started GET "/assets/foundation/foundation.cookie.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:59 +0800
|
|
763
|
+
|
|
764
|
+
|
|
765
|
+
Started GET "/assets/foundation/foundation.dropdown.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:59 +0800
|
|
766
|
+
|
|
767
|
+
|
|
768
|
+
Started GET "/assets/foundation/foundation.forms.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:59 +0800
|
|
769
|
+
|
|
770
|
+
|
|
771
|
+
Started GET "/assets/foundation/foundation.joyride.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:59 +0800
|
|
772
|
+
|
|
773
|
+
|
|
774
|
+
Started GET "/assets/foundation/foundation.magellan.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:59 +0800
|
|
775
|
+
|
|
776
|
+
|
|
777
|
+
Started GET "/assets/foundation/foundation.orbit.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:59 +0800
|
|
778
|
+
|
|
779
|
+
|
|
780
|
+
Started GET "/assets/foundation/foundation.reveal.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:59 +0800
|
|
781
|
+
|
|
782
|
+
|
|
783
|
+
Started GET "/assets/foundation/foundation.section.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:59 +0800
|
|
784
|
+
|
|
785
|
+
|
|
786
|
+
Started GET "/assets/foundation/foundation.tooltips.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:59 +0800
|
|
787
|
+
|
|
788
|
+
|
|
789
|
+
Started GET "/assets/foundation/index.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:59 +0800
|
|
790
|
+
|
|
791
|
+
|
|
792
|
+
Started GET "/assets/foundation/foundation.topbar.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:59 +0800
|
|
793
|
+
|
|
794
|
+
|
|
795
|
+
Started GET "/assets/foundation/foundation.placeholder.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:59 +0800
|
|
796
|
+
|
|
797
|
+
|
|
798
|
+
Started GET "/assets/foundation/foundation.abide.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:59 +0800
|
|
799
|
+
|
|
800
|
+
|
|
801
|
+
Started GET "/assets/foundation/foundation.interchange.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:59 +0800
|
|
802
|
+
|
|
803
|
+
|
|
804
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:59 +0800
|
|
805
|
+
|
|
806
|
+
|
|
807
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 21:02:59 +0800
|
|
808
|
+
|
|
809
|
+
|
|
810
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 21:06:46 +0800
|
|
811
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
812
|
+
Processing by PostsController#index as HTML
|
|
813
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
814
|
+
Rendered posts/index.html.haml within layouts/application (5.0ms)
|
|
815
|
+
Completed 200 OK in 266ms (Views: 238.8ms | ActiveRecord: 0.4ms)
|
|
816
|
+
|
|
817
|
+
|
|
818
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 21:06:47 +0800
|
|
819
|
+
|
|
820
|
+
|
|
821
|
+
Started GET "/assets/vendor/custom.modernizr.js?body=1" for 127.0.0.1 at 2013-10-06 21:06:47 +0800
|
|
822
|
+
|
|
823
|
+
|
|
824
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 21:06:47 +0800
|
|
825
|
+
|
|
826
|
+
|
|
827
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 21:06:47 +0800
|
|
828
|
+
|
|
829
|
+
|
|
830
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 21:06:47 +0800
|
|
831
|
+
|
|
832
|
+
|
|
833
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-06 21:06:47 +0800
|
|
834
|
+
|
|
835
|
+
|
|
836
|
+
Started GET "/assets/foundation/foundation.js?body=1" for 127.0.0.1 at 2013-10-06 21:06:47 +0800
|
|
837
|
+
|
|
838
|
+
|
|
839
|
+
Started GET "/assets/foundation/foundation.alerts.js?body=1" for 127.0.0.1 at 2013-10-06 21:06:47 +0800
|
|
840
|
+
|
|
841
|
+
|
|
842
|
+
Started GET "/assets/foundation/foundation.clearing.js?body=1" for 127.0.0.1 at 2013-10-06 21:06:47 +0800
|
|
843
|
+
|
|
844
|
+
|
|
845
|
+
Started GET "/assets/foundation/foundation.magellan.js?body=1" for 127.0.0.1 at 2013-10-06 21:06:47 +0800
|
|
846
|
+
|
|
847
|
+
|
|
848
|
+
Started GET "/assets/foundation/foundation.dropdown.js?body=1" for 127.0.0.1 at 2013-10-06 21:06:47 +0800
|
|
849
|
+
|
|
850
|
+
|
|
851
|
+
Started GET "/assets/foundation/foundation.forms.js?body=1" for 127.0.0.1 at 2013-10-06 21:06:47 +0800
|
|
852
|
+
|
|
853
|
+
|
|
854
|
+
Started GET "/assets/foundation/foundation.joyride.js?body=1" for 127.0.0.1 at 2013-10-06 21:06:47 +0800
|
|
855
|
+
|
|
856
|
+
|
|
857
|
+
Started GET "/assets/foundation/foundation.cookie.js?body=1" for 127.0.0.1 at 2013-10-06 21:06:47 +0800
|
|
858
|
+
|
|
859
|
+
|
|
860
|
+
Started GET "/assets/foundation/foundation.orbit.js?body=1" for 127.0.0.1 at 2013-10-06 21:06:47 +0800
|
|
861
|
+
|
|
862
|
+
|
|
863
|
+
Started GET "/assets/foundation/foundation.reveal.js?body=1" for 127.0.0.1 at 2013-10-06 21:06:47 +0800
|
|
864
|
+
|
|
865
|
+
|
|
866
|
+
Started GET "/assets/foundation/foundation.section.js?body=1" for 127.0.0.1 at 2013-10-06 21:06:47 +0800
|
|
867
|
+
|
|
868
|
+
|
|
869
|
+
Started GET "/assets/foundation/foundation.topbar.js?body=1" for 127.0.0.1 at 2013-10-06 21:06:47 +0800
|
|
870
|
+
|
|
871
|
+
|
|
872
|
+
Started GET "/assets/foundation/foundation.tooltips.js?body=1" for 127.0.0.1 at 2013-10-06 21:06:47 +0800
|
|
873
|
+
|
|
874
|
+
|
|
875
|
+
Started GET "/assets/foundation/foundation.placeholder.js?body=1" for 127.0.0.1 at 2013-10-06 21:06:47 +0800
|
|
876
|
+
|
|
877
|
+
|
|
878
|
+
Started GET "/assets/foundation/foundation.interchange.js?body=1" for 127.0.0.1 at 2013-10-06 21:06:47 +0800
|
|
879
|
+
|
|
880
|
+
|
|
881
|
+
Started GET "/assets/foundation/foundation.abide.js?body=1" for 127.0.0.1 at 2013-10-06 21:06:47 +0800
|
|
882
|
+
|
|
883
|
+
|
|
884
|
+
Started GET "/assets/foundation/index.js?body=1" for 127.0.0.1 at 2013-10-06 21:06:47 +0800
|
|
885
|
+
|
|
886
|
+
|
|
887
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 21:06:47 +0800
|
|
888
|
+
|
|
889
|
+
|
|
890
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 21:06:47 +0800
|
|
891
|
+
|
|
892
|
+
|
|
893
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 21:09:13 +0800
|
|
894
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
895
|
+
Processing by PostsController#index as HTML
|
|
896
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
897
|
+
Rendered posts/index.html.haml within layouts/application (5.0ms)
|
|
898
|
+
Completed 200 OK in 272ms (Views: 245.3ms | ActiveRecord: 0.4ms)
|
|
899
|
+
|
|
900
|
+
|
|
901
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 21:09:13 +0800
|
|
902
|
+
|
|
903
|
+
|
|
904
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 21:09:13 +0800
|
|
905
|
+
|
|
906
|
+
|
|
907
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-06 21:09:13 +0800
|
|
908
|
+
|
|
909
|
+
|
|
910
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 21:09:13 +0800
|
|
911
|
+
|
|
912
|
+
|
|
913
|
+
Started GET "/assets/vendor/custom.modernizr.js?body=1" for 127.0.0.1 at 2013-10-06 21:09:13 +0800
|
|
914
|
+
|
|
915
|
+
|
|
916
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 21:09:13 +0800
|
|
917
|
+
|
|
918
|
+
|
|
919
|
+
Started GET "/assets/foundation/foundation.js?body=1" for 127.0.0.1 at 2013-10-06 21:09:13 +0800
|
|
920
|
+
|
|
921
|
+
|
|
922
|
+
Started GET "/assets/foundation/foundation.alerts.js?body=1" for 127.0.0.1 at 2013-10-06 21:09:13 +0800
|
|
923
|
+
|
|
924
|
+
|
|
925
|
+
Started GET "/assets/foundation/foundation.clearing.js?body=1" for 127.0.0.1 at 2013-10-06 21:09:13 +0800
|
|
926
|
+
|
|
927
|
+
|
|
928
|
+
Started GET "/assets/foundation/foundation.cookie.js?body=1" for 127.0.0.1 at 2013-10-06 21:09:13 +0800
|
|
929
|
+
|
|
930
|
+
|
|
931
|
+
Started GET "/assets/foundation/foundation.dropdown.js?body=1" for 127.0.0.1 at 2013-10-06 21:09:13 +0800
|
|
932
|
+
|
|
933
|
+
|
|
934
|
+
Started GET "/assets/foundation/foundation.forms.js?body=1" for 127.0.0.1 at 2013-10-06 21:09:13 +0800
|
|
935
|
+
|
|
936
|
+
|
|
937
|
+
Started GET "/assets/foundation/foundation.joyride.js?body=1" for 127.0.0.1 at 2013-10-06 21:09:13 +0800
|
|
938
|
+
|
|
939
|
+
|
|
940
|
+
Started GET "/assets/foundation/foundation.magellan.js?body=1" for 127.0.0.1 at 2013-10-06 21:09:14 +0800
|
|
941
|
+
|
|
942
|
+
|
|
943
|
+
Started GET "/assets/foundation/foundation.orbit.js?body=1" for 127.0.0.1 at 2013-10-06 21:09:14 +0800
|
|
944
|
+
|
|
945
|
+
|
|
946
|
+
Started GET "/assets/foundation/foundation.reveal.js?body=1" for 127.0.0.1 at 2013-10-06 21:09:14 +0800
|
|
947
|
+
|
|
948
|
+
|
|
949
|
+
Started GET "/assets/foundation/foundation.section.js?body=1" for 127.0.0.1 at 2013-10-06 21:09:14 +0800
|
|
950
|
+
|
|
951
|
+
|
|
952
|
+
Started GET "/assets/foundation/foundation.tooltips.js?body=1" for 127.0.0.1 at 2013-10-06 21:09:14 +0800
|
|
953
|
+
|
|
954
|
+
|
|
955
|
+
Started GET "/assets/foundation/index.js?body=1" for 127.0.0.1 at 2013-10-06 21:09:14 +0800
|
|
956
|
+
|
|
957
|
+
|
|
958
|
+
Started GET "/assets/foundation/foundation.interchange.js?body=1" for 127.0.0.1 at 2013-10-06 21:09:14 +0800
|
|
959
|
+
|
|
960
|
+
|
|
961
|
+
Started GET "/assets/foundation/foundation.placeholder.js?body=1" for 127.0.0.1 at 2013-10-06 21:09:14 +0800
|
|
962
|
+
|
|
963
|
+
|
|
964
|
+
Started GET "/assets/foundation/foundation.abide.js?body=1" for 127.0.0.1 at 2013-10-06 21:09:14 +0800
|
|
965
|
+
|
|
966
|
+
|
|
967
|
+
Started GET "/assets/foundation/foundation.topbar.js?body=1" for 127.0.0.1 at 2013-10-06 21:09:14 +0800
|
|
968
|
+
|
|
969
|
+
|
|
970
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 21:09:14 +0800
|
|
971
|
+
|
|
972
|
+
|
|
973
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 21:09:14 +0800
|
|
974
|
+
|
|
975
|
+
|
|
976
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 21:14:05 +0800
|
|
977
|
+
Processing by PostsController#index as HTML
|
|
978
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
979
|
+
Rendered posts/index.html.haml within layouts/application (1.4ms)
|
|
980
|
+
Completed 200 OK in 18ms (Views: 16.4ms | ActiveRecord: 0.2ms)
|
|
981
|
+
|
|
982
|
+
|
|
983
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 21:14:06 +0800
|
|
984
|
+
|
|
985
|
+
|
|
986
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 21:14:06 +0800
|
|
987
|
+
|
|
988
|
+
|
|
989
|
+
Started GET "/assets/vendor/custom.modernizr.js?body=1" for 127.0.0.1 at 2013-10-06 21:14:06 +0800
|
|
990
|
+
|
|
991
|
+
|
|
992
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 21:14:06 +0800
|
|
993
|
+
|
|
994
|
+
|
|
995
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 21:14:06 +0800
|
|
996
|
+
|
|
997
|
+
|
|
998
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-06 21:14:06 +0800
|
|
999
|
+
|
|
1000
|
+
|
|
1001
|
+
Started GET "/assets/foundation/foundation.js?body=1" for 127.0.0.1 at 2013-10-06 21:14:06 +0800
|
|
1002
|
+
|
|
1003
|
+
|
|
1004
|
+
Started GET "/assets/foundation/foundation.clearing.js?body=1" for 127.0.0.1 at 2013-10-06 21:14:06 +0800
|
|
1005
|
+
|
|
1006
|
+
|
|
1007
|
+
Started GET "/assets/foundation/foundation.alerts.js?body=1" for 127.0.0.1 at 2013-10-06 21:14:06 +0800
|
|
1008
|
+
|
|
1009
|
+
|
|
1010
|
+
Started GET "/assets/foundation/foundation.cookie.js?body=1" for 127.0.0.1 at 2013-10-06 21:14:06 +0800
|
|
1011
|
+
|
|
1012
|
+
|
|
1013
|
+
Started GET "/assets/foundation/foundation.dropdown.js?body=1" for 127.0.0.1 at 2013-10-06 21:14:06 +0800
|
|
1014
|
+
|
|
1015
|
+
|
|
1016
|
+
Started GET "/assets/foundation/foundation.joyride.js?body=1" for 127.0.0.1 at 2013-10-06 21:14:06 +0800
|
|
1017
|
+
|
|
1018
|
+
|
|
1019
|
+
Started GET "/assets/foundation/foundation.forms.js?body=1" for 127.0.0.1 at 2013-10-06 21:14:06 +0800
|
|
1020
|
+
|
|
1021
|
+
|
|
1022
|
+
Started GET "/assets/foundation/foundation.magellan.js?body=1" for 127.0.0.1 at 2013-10-06 21:14:06 +0800
|
|
1023
|
+
|
|
1024
|
+
|
|
1025
|
+
Started GET "/assets/foundation/foundation.orbit.js?body=1" for 127.0.0.1 at 2013-10-06 21:14:06 +0800
|
|
1026
|
+
|
|
1027
|
+
|
|
1028
|
+
Started GET "/assets/foundation/foundation.reveal.js?body=1" for 127.0.0.1 at 2013-10-06 21:14:06 +0800
|
|
1029
|
+
|
|
1030
|
+
|
|
1031
|
+
Started GET "/assets/foundation/foundation.section.js?body=1" for 127.0.0.1 at 2013-10-06 21:14:06 +0800
|
|
1032
|
+
|
|
1033
|
+
|
|
1034
|
+
Started GET "/assets/foundation/foundation.tooltips.js?body=1" for 127.0.0.1 at 2013-10-06 21:14:06 +0800
|
|
1035
|
+
|
|
1036
|
+
|
|
1037
|
+
Started GET "/assets/foundation/foundation.topbar.js?body=1" for 127.0.0.1 at 2013-10-06 21:14:06 +0800
|
|
1038
|
+
|
|
1039
|
+
|
|
1040
|
+
Started GET "/assets/foundation/foundation.abide.js?body=1" for 127.0.0.1 at 2013-10-06 21:14:06 +0800
|
|
1041
|
+
|
|
1042
|
+
|
|
1043
|
+
Started GET "/assets/foundation/index.js?body=1" for 127.0.0.1 at 2013-10-06 21:14:06 +0800
|
|
1044
|
+
|
|
1045
|
+
|
|
1046
|
+
Started GET "/assets/foundation/foundation.placeholder.js?body=1" for 127.0.0.1 at 2013-10-06 21:14:06 +0800
|
|
1047
|
+
|
|
1048
|
+
|
|
1049
|
+
Started GET "/assets/foundation/foundation.interchange.js?body=1" for 127.0.0.1 at 2013-10-06 21:14:06 +0800
|
|
1050
|
+
|
|
1051
|
+
|
|
1052
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 21:14:06 +0800
|
|
1053
|
+
|
|
1054
|
+
|
|
1055
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 21:14:06 +0800
|
|
1056
|
+
|
|
1057
|
+
|
|
1058
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 21:18:14 +0800
|
|
1059
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1060
|
+
Processing by PostsController#index as HTML
|
|
1061
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
1062
|
+
Rendered posts/index.html.haml within layouts/application (6.0ms)
|
|
1063
|
+
Completed 200 OK in 308ms (Views: 280.7ms | ActiveRecord: 0.4ms)
|
|
1064
|
+
|
|
1065
|
+
|
|
1066
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 21:18:14 +0800
|
|
1067
|
+
|
|
1068
|
+
|
|
1069
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 21:18:14 +0800
|
|
1070
|
+
|
|
1071
|
+
|
|
1072
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 21:18:14 +0800
|
|
1073
|
+
|
|
1074
|
+
|
|
1075
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 21:18:14 +0800
|
|
1076
|
+
|
|
1077
|
+
|
|
1078
|
+
Started GET "/assets/vendor/custom.modernizr.js?body=1" for 127.0.0.1 at 2013-10-06 21:18:14 +0800
|
|
1079
|
+
|
|
1080
|
+
|
|
1081
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-06 21:18:14 +0800
|
|
1082
|
+
|
|
1083
|
+
|
|
1084
|
+
Started GET "/assets/foundation/foundation.js?body=1" for 127.0.0.1 at 2013-10-06 21:18:14 +0800
|
|
1085
|
+
|
|
1086
|
+
|
|
1087
|
+
Started GET "/assets/foundation/foundation.alerts.js?body=1" for 127.0.0.1 at 2013-10-06 21:18:14 +0800
|
|
1088
|
+
|
|
1089
|
+
|
|
1090
|
+
Started GET "/assets/foundation/foundation.clearing.js?body=1" for 127.0.0.1 at 2013-10-06 21:18:14 +0800
|
|
1091
|
+
|
|
1092
|
+
|
|
1093
|
+
Started GET "/assets/foundation/foundation.cookie.js?body=1" for 127.0.0.1 at 2013-10-06 21:18:14 +0800
|
|
1094
|
+
|
|
1095
|
+
|
|
1096
|
+
Started GET "/assets/foundation/foundation.dropdown.js?body=1" for 127.0.0.1 at 2013-10-06 21:18:14 +0800
|
|
1097
|
+
|
|
1098
|
+
|
|
1099
|
+
Started GET "/assets/foundation/foundation.forms.js?body=1" for 127.0.0.1 at 2013-10-06 21:18:14 +0800
|
|
1100
|
+
|
|
1101
|
+
|
|
1102
|
+
Started GET "/assets/foundation/foundation.joyride.js?body=1" for 127.0.0.1 at 2013-10-06 21:18:14 +0800
|
|
1103
|
+
|
|
1104
|
+
|
|
1105
|
+
Started GET "/assets/foundation/foundation.magellan.js?body=1" for 127.0.0.1 at 2013-10-06 21:18:14 +0800
|
|
1106
|
+
|
|
1107
|
+
|
|
1108
|
+
Started GET "/assets/foundation/foundation.orbit.js?body=1" for 127.0.0.1 at 2013-10-06 21:18:14 +0800
|
|
1109
|
+
|
|
1110
|
+
|
|
1111
|
+
Started GET "/assets/foundation/foundation.reveal.js?body=1" for 127.0.0.1 at 2013-10-06 21:18:14 +0800
|
|
1112
|
+
|
|
1113
|
+
|
|
1114
|
+
Started GET "/assets/foundation/foundation.tooltips.js?body=1" for 127.0.0.1 at 2013-10-06 21:18:15 +0800
|
|
1115
|
+
|
|
1116
|
+
|
|
1117
|
+
Started GET "/assets/foundation/foundation.section.js?body=1" for 127.0.0.1 at 2013-10-06 21:18:15 +0800
|
|
1118
|
+
|
|
1119
|
+
|
|
1120
|
+
Started GET "/assets/foundation/foundation.placeholder.js?body=1" for 127.0.0.1 at 2013-10-06 21:18:15 +0800
|
|
1121
|
+
|
|
1122
|
+
|
|
1123
|
+
Started GET "/assets/foundation/foundation.interchange.js?body=1" for 127.0.0.1 at 2013-10-06 21:18:15 +0800
|
|
1124
|
+
|
|
1125
|
+
|
|
1126
|
+
Started GET "/assets/foundation/foundation.topbar.js?body=1" for 127.0.0.1 at 2013-10-06 21:18:15 +0800
|
|
1127
|
+
|
|
1128
|
+
|
|
1129
|
+
Started GET "/assets/foundation/foundation.abide.js?body=1" for 127.0.0.1 at 2013-10-06 21:18:15 +0800
|
|
1130
|
+
|
|
1131
|
+
|
|
1132
|
+
Started GET "/assets/foundation/index.js?body=1" for 127.0.0.1 at 2013-10-06 21:18:15 +0800
|
|
1133
|
+
|
|
1134
|
+
|
|
1135
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 21:18:15 +0800
|
|
1136
|
+
|
|
1137
|
+
|
|
1138
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 21:18:15 +0800
|
|
1139
|
+
|
|
1140
|
+
|
|
1141
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 21:19:01 +0800
|
|
1142
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1143
|
+
Processing by PostsController#index as HTML
|
|
1144
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
1145
|
+
Rendered posts/index.html.haml within layouts/application (5.1ms)
|
|
1146
|
+
Completed 200 OK in 279ms (Views: 253.6ms | ActiveRecord: 0.4ms)
|
|
1147
|
+
|
|
1148
|
+
|
|
1149
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 21:19:02 +0800
|
|
1150
|
+
|
|
1151
|
+
|
|
1152
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 21:19:02 +0800
|
|
1153
|
+
|
|
1154
|
+
|
|
1155
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 21:19:02 +0800
|
|
1156
|
+
|
|
1157
|
+
|
|
1158
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 21:19:02 +0800
|
|
1159
|
+
|
|
1160
|
+
|
|
1161
|
+
Started GET "/assets/vendor/custom.modernizr.js?body=1" for 127.0.0.1 at 2013-10-06 21:19:02 +0800
|
|
1162
|
+
|
|
1163
|
+
|
|
1164
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-06 21:19:02 +0800
|
|
1165
|
+
|
|
1166
|
+
|
|
1167
|
+
Started GET "/assets/foundation/foundation.js?body=1" for 127.0.0.1 at 2013-10-06 21:19:02 +0800
|
|
1168
|
+
|
|
1169
|
+
|
|
1170
|
+
Started GET "/assets/foundation/foundation.alerts.js?body=1" for 127.0.0.1 at 2013-10-06 21:19:02 +0800
|
|
1171
|
+
|
|
1172
|
+
|
|
1173
|
+
Started GET "/assets/foundation/foundation.clearing.js?body=1" for 127.0.0.1 at 2013-10-06 21:19:02 +0800
|
|
1174
|
+
|
|
1175
|
+
|
|
1176
|
+
Started GET "/assets/foundation/foundation.cookie.js?body=1" for 127.0.0.1 at 2013-10-06 21:19:02 +0800
|
|
1177
|
+
|
|
1178
|
+
|
|
1179
|
+
Started GET "/assets/foundation/foundation.dropdown.js?body=1" for 127.0.0.1 at 2013-10-06 21:19:02 +0800
|
|
1180
|
+
|
|
1181
|
+
|
|
1182
|
+
Started GET "/assets/foundation/foundation.forms.js?body=1" for 127.0.0.1 at 2013-10-06 21:19:02 +0800
|
|
1183
|
+
|
|
1184
|
+
|
|
1185
|
+
Started GET "/assets/foundation/foundation.joyride.js?body=1" for 127.0.0.1 at 2013-10-06 21:19:02 +0800
|
|
1186
|
+
|
|
1187
|
+
|
|
1188
|
+
Started GET "/assets/foundation/foundation.magellan.js?body=1" for 127.0.0.1 at 2013-10-06 21:19:02 +0800
|
|
1189
|
+
|
|
1190
|
+
|
|
1191
|
+
Started GET "/assets/foundation/foundation.orbit.js?body=1" for 127.0.0.1 at 2013-10-06 21:19:02 +0800
|
|
1192
|
+
|
|
1193
|
+
|
|
1194
|
+
Started GET "/assets/foundation/foundation.reveal.js?body=1" for 127.0.0.1 at 2013-10-06 21:19:02 +0800
|
|
1195
|
+
|
|
1196
|
+
|
|
1197
|
+
Started GET "/assets/foundation/foundation.section.js?body=1" for 127.0.0.1 at 2013-10-06 21:19:02 +0800
|
|
1198
|
+
|
|
1199
|
+
|
|
1200
|
+
Started GET "/assets/foundation/foundation.interchange.js?body=1" for 127.0.0.1 at 2013-10-06 21:19:02 +0800
|
|
1201
|
+
|
|
1202
|
+
|
|
1203
|
+
Started GET "/assets/foundation/foundation.tooltips.js?body=1" for 127.0.0.1 at 2013-10-06 21:19:02 +0800
|
|
1204
|
+
|
|
1205
|
+
|
|
1206
|
+
Started GET "/assets/foundation/foundation.placeholder.js?body=1" for 127.0.0.1 at 2013-10-06 21:19:02 +0800
|
|
1207
|
+
|
|
1208
|
+
|
|
1209
|
+
Started GET "/assets/foundation/foundation.topbar.js?body=1" for 127.0.0.1 at 2013-10-06 21:19:02 +0800
|
|
1210
|
+
|
|
1211
|
+
|
|
1212
|
+
Started GET "/assets/foundation/foundation.abide.js?body=1" for 127.0.0.1 at 2013-10-06 21:19:02 +0800
|
|
1213
|
+
|
|
1214
|
+
|
|
1215
|
+
Started GET "/assets/foundation/index.js?body=1" for 127.0.0.1 at 2013-10-06 21:19:02 +0800
|
|
1216
|
+
|
|
1217
|
+
|
|
1218
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 21:19:02 +0800
|
|
1219
|
+
|
|
1220
|
+
|
|
1221
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 21:19:02 +0800
|
|
1222
|
+
|
|
1223
|
+
|
|
1224
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 21:23:59 +0800
|
|
1225
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1226
|
+
Processing by PostsController#index as HTML
|
|
1227
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
|
1228
|
+
Rendered posts/index.html.haml within layouts/application (9.5ms)
|
|
1229
|
+
Completed 200 OK in 375ms (Views: 345.0ms | ActiveRecord: 0.5ms)
|
|
1230
|
+
|
|
1231
|
+
|
|
1232
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 21:24:00 +0800
|
|
1233
|
+
|
|
1234
|
+
|
|
1235
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 21:24:00 +0800
|
|
1236
|
+
|
|
1237
|
+
|
|
1238
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 21:24:00 +0800
|
|
1239
|
+
|
|
1240
|
+
|
|
1241
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 21:24:00 +0800
|
|
1242
|
+
|
|
1243
|
+
|
|
1244
|
+
Started GET "/assets/vendor/custom.modernizr.js?body=1" for 127.0.0.1 at 2013-10-06 21:24:00 +0800
|
|
1245
|
+
|
|
1246
|
+
|
|
1247
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-06 21:24:00 +0800
|
|
1248
|
+
|
|
1249
|
+
|
|
1250
|
+
Started GET "/assets/foundation/foundation.js?body=1" for 127.0.0.1 at 2013-10-06 21:24:00 +0800
|
|
1251
|
+
|
|
1252
|
+
|
|
1253
|
+
Started GET "/assets/foundation/foundation.alerts.js?body=1" for 127.0.0.1 at 2013-10-06 21:24:00 +0800
|
|
1254
|
+
|
|
1255
|
+
|
|
1256
|
+
Started GET "/assets/foundation/foundation.clearing.js?body=1" for 127.0.0.1 at 2013-10-06 21:24:00 +0800
|
|
1257
|
+
|
|
1258
|
+
|
|
1259
|
+
Started GET "/assets/foundation/foundation.cookie.js?body=1" for 127.0.0.1 at 2013-10-06 21:24:00 +0800
|
|
1260
|
+
|
|
1261
|
+
|
|
1262
|
+
Started GET "/assets/foundation/foundation.dropdown.js?body=1" for 127.0.0.1 at 2013-10-06 21:24:00 +0800
|
|
1263
|
+
|
|
1264
|
+
|
|
1265
|
+
Started GET "/assets/foundation/foundation.forms.js?body=1" for 127.0.0.1 at 2013-10-06 21:24:00 +0800
|
|
1266
|
+
|
|
1267
|
+
|
|
1268
|
+
Started GET "/assets/foundation/foundation.joyride.js?body=1" for 127.0.0.1 at 2013-10-06 21:24:00 +0800
|
|
1269
|
+
|
|
1270
|
+
|
|
1271
|
+
Started GET "/assets/foundation/foundation.magellan.js?body=1" for 127.0.0.1 at 2013-10-06 21:24:00 +0800
|
|
1272
|
+
|
|
1273
|
+
|
|
1274
|
+
Started GET "/assets/foundation/foundation.orbit.js?body=1" for 127.0.0.1 at 2013-10-06 21:24:00 +0800
|
|
1275
|
+
|
|
1276
|
+
|
|
1277
|
+
Started GET "/assets/foundation/foundation.reveal.js?body=1" for 127.0.0.1 at 2013-10-06 21:24:00 +0800
|
|
1278
|
+
|
|
1279
|
+
|
|
1280
|
+
Started GET "/assets/foundation/foundation.section.js?body=1" for 127.0.0.1 at 2013-10-06 21:24:00 +0800
|
|
1281
|
+
|
|
1282
|
+
|
|
1283
|
+
Started GET "/assets/foundation/foundation.tooltips.js?body=1" for 127.0.0.1 at 2013-10-06 21:24:00 +0800
|
|
1284
|
+
|
|
1285
|
+
|
|
1286
|
+
Started GET "/assets/foundation/foundation.interchange.js?body=1" for 127.0.0.1 at 2013-10-06 21:24:00 +0800
|
|
1287
|
+
|
|
1288
|
+
|
|
1289
|
+
Started GET "/assets/foundation/foundation.placeholder.js?body=1" for 127.0.0.1 at 2013-10-06 21:24:00 +0800
|
|
1290
|
+
|
|
1291
|
+
|
|
1292
|
+
Started GET "/assets/foundation/foundation.abide.js?body=1" for 127.0.0.1 at 2013-10-06 21:24:00 +0800
|
|
1293
|
+
|
|
1294
|
+
|
|
1295
|
+
Started GET "/assets/foundation/foundation.topbar.js?body=1" for 127.0.0.1 at 2013-10-06 21:24:00 +0800
|
|
1296
|
+
|
|
1297
|
+
|
|
1298
|
+
Started GET "/assets/foundation/index.js?body=1" for 127.0.0.1 at 2013-10-06 21:24:00 +0800
|
|
1299
|
+
|
|
1300
|
+
|
|
1301
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 21:24:00 +0800
|
|
1302
|
+
|
|
1303
|
+
|
|
1304
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 21:24:00 +0800
|
|
1305
|
+
|
|
1306
|
+
|
|
1307
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 21:27:52 +0800
|
|
1308
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1309
|
+
Processing by PostsController#index as HTML
|
|
1310
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
1311
|
+
Rendered posts/index.html.haml within layouts/application (5.0ms)
|
|
1312
|
+
Completed 200 OK in 293ms (Views: 267.5ms | ActiveRecord: 0.4ms)
|
|
1313
|
+
|
|
1314
|
+
|
|
1315
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 21:27:53 +0800
|
|
1316
|
+
|
|
1317
|
+
|
|
1318
|
+
Started GET "/assets/vendor/custom.modernizr.js?body=1" for 127.0.0.1 at 2013-10-06 21:27:53 +0800
|
|
1319
|
+
|
|
1320
|
+
|
|
1321
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 21:27:53 +0800
|
|
1322
|
+
|
|
1323
|
+
|
|
1324
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 21:27:53 +0800
|
|
1325
|
+
|
|
1326
|
+
|
|
1327
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 21:27:53 +0800
|
|
1328
|
+
|
|
1329
|
+
|
|
1330
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-06 21:27:53 +0800
|
|
1331
|
+
|
|
1332
|
+
|
|
1333
|
+
Started GET "/assets/foundation/foundation.js?body=1" for 127.0.0.1 at 2013-10-06 21:27:53 +0800
|
|
1334
|
+
|
|
1335
|
+
|
|
1336
|
+
Started GET "/assets/foundation/foundation.alerts.js?body=1" for 127.0.0.1 at 2013-10-06 21:27:53 +0800
|
|
1337
|
+
|
|
1338
|
+
|
|
1339
|
+
Started GET "/assets/foundation/foundation.clearing.js?body=1" for 127.0.0.1 at 2013-10-06 21:27:53 +0800
|
|
1340
|
+
|
|
1341
|
+
|
|
1342
|
+
Started GET "/assets/foundation/foundation.cookie.js?body=1" for 127.0.0.1 at 2013-10-06 21:27:53 +0800
|
|
1343
|
+
|
|
1344
|
+
|
|
1345
|
+
Started GET "/assets/foundation/foundation.dropdown.js?body=1" for 127.0.0.1 at 2013-10-06 21:27:53 +0800
|
|
1346
|
+
|
|
1347
|
+
|
|
1348
|
+
Started GET "/assets/foundation/foundation.forms.js?body=1" for 127.0.0.1 at 2013-10-06 21:27:53 +0800
|
|
1349
|
+
|
|
1350
|
+
|
|
1351
|
+
Started GET "/assets/foundation/foundation.magellan.js?body=1" for 127.0.0.1 at 2013-10-06 21:27:53 +0800
|
|
1352
|
+
|
|
1353
|
+
|
|
1354
|
+
Started GET "/assets/foundation/foundation.joyride.js?body=1" for 127.0.0.1 at 2013-10-06 21:27:53 +0800
|
|
1355
|
+
|
|
1356
|
+
|
|
1357
|
+
Started GET "/assets/foundation/foundation.orbit.js?body=1" for 127.0.0.1 at 2013-10-06 21:27:53 +0800
|
|
1358
|
+
|
|
1359
|
+
|
|
1360
|
+
Started GET "/assets/foundation/foundation.reveal.js?body=1" for 127.0.0.1 at 2013-10-06 21:27:53 +0800
|
|
1361
|
+
|
|
1362
|
+
|
|
1363
|
+
Started GET "/assets/foundation/foundation.section.js?body=1" for 127.0.0.1 at 2013-10-06 21:27:53 +0800
|
|
1364
|
+
|
|
1365
|
+
|
|
1366
|
+
Started GET "/assets/foundation/foundation.placeholder.js?body=1" for 127.0.0.1 at 2013-10-06 21:27:53 +0800
|
|
1367
|
+
|
|
1368
|
+
|
|
1369
|
+
Started GET "/assets/foundation/foundation.topbar.js?body=1" for 127.0.0.1 at 2013-10-06 21:27:53 +0800
|
|
1370
|
+
|
|
1371
|
+
|
|
1372
|
+
Started GET "/assets/foundation/foundation.tooltips.js?body=1" for 127.0.0.1 at 2013-10-06 21:27:53 +0800
|
|
1373
|
+
|
|
1374
|
+
|
|
1375
|
+
Started GET "/assets/foundation/foundation.interchange.js?body=1" for 127.0.0.1 at 2013-10-06 21:27:53 +0800
|
|
1376
|
+
|
|
1377
|
+
|
|
1378
|
+
Started GET "/assets/foundation/foundation.abide.js?body=1" for 127.0.0.1 at 2013-10-06 21:27:53 +0800
|
|
1379
|
+
|
|
1380
|
+
|
|
1381
|
+
Started GET "/assets/foundation/index.js?body=1" for 127.0.0.1 at 2013-10-06 21:27:53 +0800
|
|
1382
|
+
|
|
1383
|
+
|
|
1384
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 21:27:53 +0800
|
|
1385
|
+
|
|
1386
|
+
|
|
1387
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 21:27:53 +0800
|
|
1388
|
+
|
|
1389
|
+
|
|
1390
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 21:28:29 +0800
|
|
1391
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1392
|
+
Processing by PostsController#index as HTML
|
|
1393
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
1394
|
+
Rendered posts/index.html.haml within layouts/application (5.0ms)
|
|
1395
|
+
Completed 200 OK in 1913ms (Views: 1888.1ms | ActiveRecord: 0.4ms)
|
|
1396
|
+
|
|
1397
|
+
|
|
1398
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 21:28:31 +0800
|
|
1399
|
+
|
|
1400
|
+
|
|
1401
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 21:28:31 +0800
|
|
1402
|
+
|
|
1403
|
+
|
|
1404
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:31 +0800
|
|
1405
|
+
|
|
1406
|
+
|
|
1407
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 21:28:31 +0800
|
|
1408
|
+
|
|
1409
|
+
|
|
1410
|
+
Started GET "/assets/vendor/custom.modernizr.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:31 +0800
|
|
1411
|
+
|
|
1412
|
+
|
|
1413
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 21:28:31 +0800
|
|
1414
|
+
|
|
1415
|
+
|
|
1416
|
+
Started GET "/assets/foundation/foundation.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:31 +0800
|
|
1417
|
+
|
|
1418
|
+
|
|
1419
|
+
Started GET "/assets/foundation/foundation.alerts.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:31 +0800
|
|
1420
|
+
|
|
1421
|
+
|
|
1422
|
+
Started GET "/assets/foundation/foundation.clearing.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:31 +0800
|
|
1423
|
+
|
|
1424
|
+
|
|
1425
|
+
Started GET "/assets/foundation/foundation.cookie.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:31 +0800
|
|
1426
|
+
|
|
1427
|
+
|
|
1428
|
+
Started GET "/assets/foundation/foundation.dropdown.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:31 +0800
|
|
1429
|
+
|
|
1430
|
+
|
|
1431
|
+
Started GET "/assets/foundation/foundation.forms.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:31 +0800
|
|
1432
|
+
|
|
1433
|
+
|
|
1434
|
+
Started GET "/assets/foundation/foundation.joyride.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:31 +0800
|
|
1435
|
+
|
|
1436
|
+
|
|
1437
|
+
Started GET "/assets/foundation/foundation.magellan.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:31 +0800
|
|
1438
|
+
|
|
1439
|
+
|
|
1440
|
+
Started GET "/assets/foundation/foundation.orbit.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:31 +0800
|
|
1441
|
+
|
|
1442
|
+
|
|
1443
|
+
Started GET "/assets/foundation/foundation.reveal.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:31 +0800
|
|
1444
|
+
|
|
1445
|
+
|
|
1446
|
+
Started GET "/assets/foundation/foundation.tooltips.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:31 +0800
|
|
1447
|
+
|
|
1448
|
+
|
|
1449
|
+
Started GET "/assets/foundation/foundation.section.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:32 +0800
|
|
1450
|
+
|
|
1451
|
+
|
|
1452
|
+
Started GET "/assets/foundation/foundation.topbar.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:32 +0800
|
|
1453
|
+
|
|
1454
|
+
|
|
1455
|
+
Started GET "/assets/foundation/foundation.placeholder.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:32 +0800
|
|
1456
|
+
|
|
1457
|
+
|
|
1458
|
+
Started GET "/assets/foundation/foundation.interchange.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:32 +0800
|
|
1459
|
+
|
|
1460
|
+
|
|
1461
|
+
Started GET "/assets/foundation/foundation.abide.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:32 +0800
|
|
1462
|
+
|
|
1463
|
+
|
|
1464
|
+
Started GET "/assets/foundation/index.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:32 +0800
|
|
1465
|
+
|
|
1466
|
+
|
|
1467
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:32 +0800
|
|
1468
|
+
|
|
1469
|
+
|
|
1470
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:32 +0800
|
|
1471
|
+
|
|
1472
|
+
|
|
1473
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 21:28:42 +0800
|
|
1474
|
+
Processing by PostsController#index as HTML
|
|
1475
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
1476
|
+
Rendered posts/index.html.haml within layouts/application (1.1ms)
|
|
1477
|
+
Completed 200 OK in 1687ms (Views: 1685.9ms | ActiveRecord: 0.2ms)
|
|
1478
|
+
|
|
1479
|
+
|
|
1480
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 21:28:44 +0800
|
|
1481
|
+
|
|
1482
|
+
|
|
1483
|
+
Started GET "/assets/vendor/custom.modernizr.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:44 +0800
|
|
1484
|
+
|
|
1485
|
+
|
|
1486
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 21:28:44 +0800
|
|
1487
|
+
|
|
1488
|
+
|
|
1489
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 21:28:44 +0800
|
|
1490
|
+
|
|
1491
|
+
|
|
1492
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 21:28:44 +0800
|
|
1493
|
+
|
|
1494
|
+
|
|
1495
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:44 +0800
|
|
1496
|
+
|
|
1497
|
+
|
|
1498
|
+
Started GET "/assets/foundation/foundation.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:44 +0800
|
|
1499
|
+
|
|
1500
|
+
|
|
1501
|
+
Started GET "/assets/foundation/foundation.alerts.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:44 +0800
|
|
1502
|
+
|
|
1503
|
+
|
|
1504
|
+
Started GET "/assets/foundation/foundation.dropdown.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:44 +0800
|
|
1505
|
+
|
|
1506
|
+
|
|
1507
|
+
Started GET "/assets/foundation/foundation.cookie.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:44 +0800
|
|
1508
|
+
|
|
1509
|
+
|
|
1510
|
+
Started GET "/assets/foundation/foundation.clearing.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:44 +0800
|
|
1511
|
+
|
|
1512
|
+
|
|
1513
|
+
Started GET "/assets/foundation/foundation.forms.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:44 +0800
|
|
1514
|
+
|
|
1515
|
+
|
|
1516
|
+
Started GET "/assets/foundation/foundation.joyride.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:44 +0800
|
|
1517
|
+
|
|
1518
|
+
|
|
1519
|
+
Started GET "/assets/foundation/foundation.magellan.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:44 +0800
|
|
1520
|
+
|
|
1521
|
+
|
|
1522
|
+
Started GET "/assets/foundation/foundation.orbit.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:44 +0800
|
|
1523
|
+
|
|
1524
|
+
|
|
1525
|
+
Started GET "/assets/foundation/foundation.reveal.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:44 +0800
|
|
1526
|
+
|
|
1527
|
+
|
|
1528
|
+
Started GET "/assets/foundation/foundation.section.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:44 +0800
|
|
1529
|
+
|
|
1530
|
+
|
|
1531
|
+
Started GET "/assets/foundation/foundation.interchange.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:44 +0800
|
|
1532
|
+
|
|
1533
|
+
|
|
1534
|
+
Started GET "/assets/foundation/foundation.tooltips.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:44 +0800
|
|
1535
|
+
|
|
1536
|
+
|
|
1537
|
+
Started GET "/assets/foundation/foundation.topbar.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:44 +0800
|
|
1538
|
+
|
|
1539
|
+
|
|
1540
|
+
Started GET "/assets/foundation/foundation.placeholder.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:44 +0800
|
|
1541
|
+
|
|
1542
|
+
|
|
1543
|
+
Started GET "/assets/foundation/foundation.abide.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:44 +0800
|
|
1544
|
+
|
|
1545
|
+
|
|
1546
|
+
Started GET "/assets/foundation/index.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:44 +0800
|
|
1547
|
+
|
|
1548
|
+
|
|
1549
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:44 +0800
|
|
1550
|
+
|
|
1551
|
+
|
|
1552
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 21:28:44 +0800
|
|
1553
|
+
|
|
1554
|
+
|
|
1555
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 21:44:44 +0800
|
|
1556
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1557
|
+
Processing by PostsController#index as HTML
|
|
1558
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
1559
|
+
Rendered posts/index.html.haml within layouts/application (6.0ms)
|
|
1560
|
+
Completed 200 OK in 45ms (Views: 14.2ms | ActiveRecord: 0.4ms)
|
|
1561
|
+
|
|
1562
|
+
|
|
1563
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 21:44:44 +0800
|
|
1564
|
+
Processing by PostsController#index as HTML
|
|
1565
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
1566
|
+
Rendered posts/index.html.haml within layouts/application (1.5ms)
|
|
1567
|
+
Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.3ms)
|
|
1568
|
+
|
|
1569
|
+
|
|
1570
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 21:44:50 +0800
|
|
1571
|
+
Processing by PostsController#index as HTML
|
|
1572
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
|
1573
|
+
Rendered posts/index.html.haml within layouts/application (1.8ms)
|
|
1574
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms)
|
|
1575
|
+
|
|
1576
|
+
|
|
1577
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 21:44:55 +0800
|
|
1578
|
+
Processing by PostsController#index as HTML
|
|
1579
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
1580
|
+
Rendered posts/index.html.haml within layouts/application (1.0ms)
|
|
1581
|
+
Completed 200 OK in 4ms (Views: 2.6ms | ActiveRecord: 0.2ms)
|
|
1582
|
+
|
|
1583
|
+
|
|
1584
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 22:01:56 +0800
|
|
1585
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1586
|
+
Processing by PostsController#index as HTML
|
|
1587
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
1588
|
+
Rendered posts/index.html.haml within layouts/application (4.8ms)
|
|
1589
|
+
Completed 200 OK in 1732ms (Views: 1706.8ms | ActiveRecord: 0.4ms)
|
|
1590
|
+
|
|
1591
|
+
|
|
1592
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1593
|
+
Processing by PostsController#index as HTML
|
|
1594
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
1595
|
+
Rendered posts/index.html.haml within layouts/application (1.3ms)
|
|
1596
|
+
Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.2ms)
|
|
1597
|
+
|
|
1598
|
+
|
|
1599
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1600
|
+
|
|
1601
|
+
|
|
1602
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1603
|
+
|
|
1604
|
+
|
|
1605
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1606
|
+
|
|
1607
|
+
|
|
1608
|
+
Started GET "/assets/vendor/custom.modernizr.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1609
|
+
|
|
1610
|
+
|
|
1611
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1612
|
+
|
|
1613
|
+
|
|
1614
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1615
|
+
|
|
1616
|
+
|
|
1617
|
+
Started GET "/assets/foundation/foundation.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1618
|
+
|
|
1619
|
+
|
|
1620
|
+
Started GET "/assets/foundation/foundation.clearing.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1621
|
+
|
|
1622
|
+
|
|
1623
|
+
Started GET "/assets/foundation/foundation.cookie.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1624
|
+
|
|
1625
|
+
|
|
1626
|
+
Started GET "/assets/foundation/foundation.alerts.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1627
|
+
|
|
1628
|
+
|
|
1629
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1630
|
+
|
|
1631
|
+
|
|
1632
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1633
|
+
|
|
1634
|
+
|
|
1635
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1636
|
+
|
|
1637
|
+
|
|
1638
|
+
Started GET "/assets/vendor/custom.modernizr.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1639
|
+
|
|
1640
|
+
|
|
1641
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1642
|
+
|
|
1643
|
+
|
|
1644
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1645
|
+
|
|
1646
|
+
|
|
1647
|
+
Started GET "/assets/foundation/foundation.orbit.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1648
|
+
|
|
1649
|
+
|
|
1650
|
+
Started GET "/assets/foundation/foundation.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1651
|
+
|
|
1652
|
+
|
|
1653
|
+
Started GET "/assets/foundation/foundation.clearing.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1654
|
+
|
|
1655
|
+
|
|
1656
|
+
Started GET "/assets/foundation/foundation.cookie.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1657
|
+
|
|
1658
|
+
|
|
1659
|
+
Started GET "/assets/foundation/foundation.alerts.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1660
|
+
|
|
1661
|
+
|
|
1662
|
+
Started GET "/assets/foundation/foundation.dropdown.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1663
|
+
|
|
1664
|
+
|
|
1665
|
+
Started GET "/assets/foundation/foundation.forms.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1666
|
+
|
|
1667
|
+
|
|
1668
|
+
Started GET "/assets/foundation/foundation.joyride.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1669
|
+
|
|
1670
|
+
|
|
1671
|
+
Started GET "/assets/foundation/foundation.magellan.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1672
|
+
|
|
1673
|
+
|
|
1674
|
+
Started GET "/assets/foundation/foundation.dropdown.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1675
|
+
|
|
1676
|
+
|
|
1677
|
+
Started GET "/assets/foundation/foundation.orbit.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1678
|
+
|
|
1679
|
+
|
|
1680
|
+
Started GET "/assets/foundation/foundation.forms.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1681
|
+
|
|
1682
|
+
|
|
1683
|
+
Started GET "/assets/foundation/foundation.reveal.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1684
|
+
|
|
1685
|
+
|
|
1686
|
+
Started GET "/assets/foundation/foundation.joyride.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1687
|
+
|
|
1688
|
+
|
|
1689
|
+
Started GET "/assets/foundation/foundation.magellan.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1690
|
+
|
|
1691
|
+
|
|
1692
|
+
Started GET "/assets/foundation/foundation.section.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1693
|
+
|
|
1694
|
+
|
|
1695
|
+
Started GET "/assets/foundation/foundation.topbar.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:58 +0800
|
|
1696
|
+
|
|
1697
|
+
|
|
1698
|
+
Started GET "/assets/foundation/index.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:59 +0800
|
|
1699
|
+
|
|
1700
|
+
|
|
1701
|
+
Started GET "/assets/foundation/foundation.interchange.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:59 +0800
|
|
1702
|
+
|
|
1703
|
+
|
|
1704
|
+
Started GET "/assets/foundation/foundation.abide.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:59 +0800
|
|
1705
|
+
|
|
1706
|
+
|
|
1707
|
+
Started GET "/assets/foundation/foundation.tooltips.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:59 +0800
|
|
1708
|
+
|
|
1709
|
+
|
|
1710
|
+
Started GET "/assets/foundation/foundation.placeholder.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:59 +0800
|
|
1711
|
+
|
|
1712
|
+
|
|
1713
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:59 +0800
|
|
1714
|
+
|
|
1715
|
+
|
|
1716
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:59 +0800
|
|
1717
|
+
|
|
1718
|
+
|
|
1719
|
+
Started GET "/assets/foundation/foundation.reveal.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:59 +0800
|
|
1720
|
+
|
|
1721
|
+
|
|
1722
|
+
Started GET "/assets/foundation/foundation.section.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:59 +0800
|
|
1723
|
+
|
|
1724
|
+
|
|
1725
|
+
Started GET "/assets/foundation/foundation.topbar.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:59 +0800
|
|
1726
|
+
|
|
1727
|
+
|
|
1728
|
+
Started GET "/assets/foundation/foundation.tooltips.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:59 +0800
|
|
1729
|
+
|
|
1730
|
+
|
|
1731
|
+
Started GET "/assets/foundation/foundation.interchange.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:59 +0800
|
|
1732
|
+
|
|
1733
|
+
|
|
1734
|
+
Started GET "/assets/foundation/foundation.placeholder.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:59 +0800
|
|
1735
|
+
|
|
1736
|
+
|
|
1737
|
+
Started GET "/assets/foundation/foundation.abide.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:59 +0800
|
|
1738
|
+
|
|
1739
|
+
|
|
1740
|
+
Started GET "/assets/foundation/index.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:59 +0800
|
|
1741
|
+
|
|
1742
|
+
|
|
1743
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:59 +0800
|
|
1744
|
+
|
|
1745
|
+
|
|
1746
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 22:01:59 +0800
|
|
1747
|
+
|
|
1748
|
+
|
|
1749
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 22:27:25 +0800
|
|
1750
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1751
|
+
Processing by PostsController#index as HTML
|
|
1752
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
1753
|
+
Rendered posts/index.html.haml within layouts/application (5.0ms)
|
|
1754
|
+
Completed 200 OK in 270ms (Views: 245.5ms | ActiveRecord: 0.4ms)
|
|
1755
|
+
|
|
1756
|
+
|
|
1757
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1758
|
+
Processing by PostsController#index as HTML
|
|
1759
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
1760
|
+
Rendered posts/index.html.haml within layouts/application (1.1ms)
|
|
1761
|
+
Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.2ms)
|
|
1762
|
+
|
|
1763
|
+
|
|
1764
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1765
|
+
|
|
1766
|
+
|
|
1767
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1768
|
+
|
|
1769
|
+
|
|
1770
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1771
|
+
|
|
1772
|
+
|
|
1773
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1774
|
+
|
|
1775
|
+
|
|
1776
|
+
Started GET "/assets/vendor/custom.modernizr.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1777
|
+
|
|
1778
|
+
|
|
1779
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1780
|
+
|
|
1781
|
+
|
|
1782
|
+
Started GET "/assets/foundation/foundation.dropdown.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1783
|
+
|
|
1784
|
+
|
|
1785
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1786
|
+
|
|
1787
|
+
|
|
1788
|
+
Started GET "/assets/foundation/foundation.forms.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1789
|
+
|
|
1790
|
+
|
|
1791
|
+
Started GET "/assets/foundation/foundation.joyride.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1792
|
+
|
|
1793
|
+
|
|
1794
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1795
|
+
|
|
1796
|
+
|
|
1797
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1798
|
+
|
|
1799
|
+
|
|
1800
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1801
|
+
|
|
1802
|
+
|
|
1803
|
+
Started GET "/assets/foundation/foundation.orbit.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1804
|
+
|
|
1805
|
+
|
|
1806
|
+
Started GET "/assets/foundation/foundation.magellan.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1807
|
+
|
|
1808
|
+
|
|
1809
|
+
Started GET "/assets/vendor/custom.modernizr.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1810
|
+
|
|
1811
|
+
|
|
1812
|
+
Started GET "/assets/foundation/foundation.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1813
|
+
|
|
1814
|
+
|
|
1815
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1816
|
+
|
|
1817
|
+
|
|
1818
|
+
Started GET "/assets/foundation/foundation.alerts.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1819
|
+
|
|
1820
|
+
|
|
1821
|
+
Started GET "/assets/foundation/foundation.clearing.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1822
|
+
|
|
1823
|
+
|
|
1824
|
+
Started GET "/assets/foundation/foundation.cookie.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1825
|
+
|
|
1826
|
+
|
|
1827
|
+
Started GET "/assets/foundation/foundation.dropdown.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1828
|
+
|
|
1829
|
+
|
|
1830
|
+
Started GET "/assets/foundation/foundation.forms.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1831
|
+
|
|
1832
|
+
|
|
1833
|
+
Started GET "/assets/foundation/foundation.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1834
|
+
|
|
1835
|
+
|
|
1836
|
+
Started GET "/assets/foundation/foundation.joyride.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1837
|
+
|
|
1838
|
+
|
|
1839
|
+
Started GET "/assets/foundation/foundation.alerts.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1840
|
+
|
|
1841
|
+
|
|
1842
|
+
Started GET "/assets/foundation/foundation.clearing.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1843
|
+
|
|
1844
|
+
|
|
1845
|
+
Started GET "/assets/foundation/foundation.cookie.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1846
|
+
|
|
1847
|
+
|
|
1848
|
+
Started GET "/assets/foundation/foundation.magellan.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1849
|
+
|
|
1850
|
+
|
|
1851
|
+
Started GET "/assets/foundation/foundation.orbit.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1852
|
+
|
|
1853
|
+
|
|
1854
|
+
Started GET "/assets/foundation/foundation.reveal.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1855
|
+
|
|
1856
|
+
|
|
1857
|
+
Started GET "/assets/foundation/foundation.section.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1858
|
+
|
|
1859
|
+
|
|
1860
|
+
Started GET "/assets/foundation/foundation.tooltips.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1861
|
+
|
|
1862
|
+
|
|
1863
|
+
Started GET "/assets/foundation/foundation.abide.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1864
|
+
|
|
1865
|
+
|
|
1866
|
+
Started GET "/assets/foundation/foundation.topbar.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1867
|
+
|
|
1868
|
+
|
|
1869
|
+
Started GET "/assets/foundation/foundation.interchange.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1870
|
+
|
|
1871
|
+
|
|
1872
|
+
Started GET "/assets/foundation/foundation.placeholder.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1873
|
+
|
|
1874
|
+
|
|
1875
|
+
Started GET "/assets/foundation/index.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1876
|
+
|
|
1877
|
+
|
|
1878
|
+
Started GET "/assets/foundation/foundation.reveal.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1879
|
+
|
|
1880
|
+
|
|
1881
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1882
|
+
|
|
1883
|
+
|
|
1884
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1885
|
+
|
|
1886
|
+
|
|
1887
|
+
Started GET "/assets/foundation/foundation.section.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1888
|
+
|
|
1889
|
+
|
|
1890
|
+
Started GET "/assets/foundation/foundation.tooltips.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1891
|
+
|
|
1892
|
+
|
|
1893
|
+
Started GET "/assets/foundation/foundation.abide.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1894
|
+
|
|
1895
|
+
|
|
1896
|
+
Started GET "/assets/foundation/foundation.interchange.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1897
|
+
|
|
1898
|
+
|
|
1899
|
+
Started GET "/assets/foundation/foundation.topbar.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1900
|
+
|
|
1901
|
+
|
|
1902
|
+
Started GET "/assets/foundation/foundation.placeholder.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1903
|
+
|
|
1904
|
+
|
|
1905
|
+
Started GET "/assets/foundation/index.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1906
|
+
|
|
1907
|
+
|
|
1908
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1909
|
+
|
|
1910
|
+
|
|
1911
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 22:27:26 +0800
|
|
1912
|
+
|
|
1913
|
+
|
|
1914
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 22:29:14 +0800
|
|
1915
|
+
Processing by PostsController#index as HTML
|
|
1916
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
|
1917
|
+
Rendered posts/index.html.haml within layouts/application (1.2ms)
|
|
1918
|
+
Completed 200 OK in 16ms (Views: 14.2ms | ActiveRecord: 0.2ms)
|
|
1919
|
+
|
|
1920
|
+
|
|
1921
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 22:29:14 +0800
|
|
1922
|
+
|
|
1923
|
+
|
|
1924
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 22:29:15 +0800
|
|
1925
|
+
|
|
1926
|
+
|
|
1927
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 22:29:15 +0800
|
|
1928
|
+
|
|
1929
|
+
|
|
1930
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 22:29:15 +0800
|
|
1931
|
+
|
|
1932
|
+
|
|
1933
|
+
Started GET "/assets/vendor/custom.modernizr.js?body=1" for 127.0.0.1 at 2013-10-06 22:29:15 +0800
|
|
1934
|
+
|
|
1935
|
+
|
|
1936
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-06 22:29:15 +0800
|
|
1937
|
+
|
|
1938
|
+
|
|
1939
|
+
Started GET "/assets/foundation/foundation.js?body=1" for 127.0.0.1 at 2013-10-06 22:29:15 +0800
|
|
1940
|
+
|
|
1941
|
+
|
|
1942
|
+
Started GET "/assets/foundation/foundation.alerts.js?body=1" for 127.0.0.1 at 2013-10-06 22:29:15 +0800
|
|
1943
|
+
|
|
1944
|
+
|
|
1945
|
+
Started GET "/assets/foundation/foundation.clearing.js?body=1" for 127.0.0.1 at 2013-10-06 22:29:15 +0800
|
|
1946
|
+
|
|
1947
|
+
|
|
1948
|
+
Started GET "/assets/foundation/foundation.cookie.js?body=1" for 127.0.0.1 at 2013-10-06 22:29:15 +0800
|
|
1949
|
+
|
|
1950
|
+
|
|
1951
|
+
Started GET "/assets/foundation/foundation.dropdown.js?body=1" for 127.0.0.1 at 2013-10-06 22:29:15 +0800
|
|
1952
|
+
|
|
1953
|
+
|
|
1954
|
+
Started GET "/assets/foundation/foundation.joyride.js?body=1" for 127.0.0.1 at 2013-10-06 22:29:15 +0800
|
|
1955
|
+
|
|
1956
|
+
|
|
1957
|
+
Started GET "/assets/foundation/foundation.magellan.js?body=1" for 127.0.0.1 at 2013-10-06 22:29:15 +0800
|
|
1958
|
+
|
|
1959
|
+
|
|
1960
|
+
Started GET "/assets/foundation/foundation.forms.js?body=1" for 127.0.0.1 at 2013-10-06 22:29:15 +0800
|
|
1961
|
+
|
|
1962
|
+
|
|
1963
|
+
Started GET "/assets/foundation/foundation.orbit.js?body=1" for 127.0.0.1 at 2013-10-06 22:29:15 +0800
|
|
1964
|
+
|
|
1965
|
+
|
|
1966
|
+
Started GET "/assets/foundation/foundation.reveal.js?body=1" for 127.0.0.1 at 2013-10-06 22:29:15 +0800
|
|
1967
|
+
|
|
1968
|
+
|
|
1969
|
+
Started GET "/assets/foundation/foundation.section.js?body=1" for 127.0.0.1 at 2013-10-06 22:29:15 +0800
|
|
1970
|
+
|
|
1971
|
+
|
|
1972
|
+
Started GET "/assets/foundation/foundation.tooltips.js?body=1" for 127.0.0.1 at 2013-10-06 22:29:15 +0800
|
|
1973
|
+
|
|
1974
|
+
|
|
1975
|
+
Started GET "/assets/foundation/foundation.topbar.js?body=1" for 127.0.0.1 at 2013-10-06 22:29:15 +0800
|
|
1976
|
+
|
|
1977
|
+
|
|
1978
|
+
Started GET "/assets/foundation/foundation.placeholder.js?body=1" for 127.0.0.1 at 2013-10-06 22:29:15 +0800
|
|
1979
|
+
|
|
1980
|
+
|
|
1981
|
+
Started GET "/assets/foundation/foundation.interchange.js?body=1" for 127.0.0.1 at 2013-10-06 22:29:15 +0800
|
|
1982
|
+
|
|
1983
|
+
|
|
1984
|
+
Started GET "/assets/foundation/foundation.abide.js?body=1" for 127.0.0.1 at 2013-10-06 22:29:15 +0800
|
|
1985
|
+
|
|
1986
|
+
|
|
1987
|
+
Started GET "/assets/foundation/index.js?body=1" for 127.0.0.1 at 2013-10-06 22:29:15 +0800
|
|
1988
|
+
|
|
1989
|
+
|
|
1990
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 22:29:15 +0800
|
|
1991
|
+
|
|
1992
|
+
|
|
1993
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 22:29:15 +0800
|
|
1994
|
+
|
|
1995
|
+
|
|
1996
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 22:39:49 +0800
|
|
1997
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1998
|
+
Processing by PostsController#index as HTML
|
|
1999
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
2000
|
+
Rendered posts/index.html.haml within layouts/application (5.4ms)
|
|
2001
|
+
Completed 200 OK in 189ms (Views: 164.6ms | ActiveRecord: 0.4ms)
|
|
2002
|
+
|
|
2003
|
+
|
|
2004
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-06 22:39:50 +0800
|
|
2005
|
+
|
|
2006
|
+
|
|
2007
|
+
Started GET "/assets/foundation/foundation.js?body=1" for 127.0.0.1 at 2013-10-06 22:39:50 +0800
|
|
2008
|
+
|
|
2009
|
+
|
|
2010
|
+
Started GET "/assets/foundation/foundation.clearing.js?body=1" for 127.0.0.1 at 2013-10-06 22:39:50 +0800
|
|
2011
|
+
|
|
2012
|
+
|
|
2013
|
+
Started GET "/assets/foundation/foundation.cookie.js?body=1" for 127.0.0.1 at 2013-10-06 22:39:50 +0800
|
|
2014
|
+
|
|
2015
|
+
|
|
2016
|
+
Started GET "/assets/foundation/foundation.dropdown.js?body=1" for 127.0.0.1 at 2013-10-06 22:39:50 +0800
|
|
2017
|
+
|
|
2018
|
+
|
|
2019
|
+
Started GET "/assets/foundation/foundation.alerts.js?body=1" for 127.0.0.1 at 2013-10-06 22:39:50 +0800
|
|
2020
|
+
|
|
2021
|
+
|
|
2022
|
+
Started GET "/assets/foundation/foundation.forms.js?body=1" for 127.0.0.1 at 2013-10-06 22:39:50 +0800
|
|
2023
|
+
|
|
2024
|
+
|
|
2025
|
+
Started GET "/assets/foundation/foundation.joyride.js?body=1" for 127.0.0.1 at 2013-10-06 22:39:50 +0800
|
|
2026
|
+
|
|
2027
|
+
|
|
2028
|
+
Started GET "/assets/foundation/foundation.magellan.js?body=1" for 127.0.0.1 at 2013-10-06 22:39:50 +0800
|
|
2029
|
+
|
|
2030
|
+
|
|
2031
|
+
Started GET "/assets/foundation/foundation.orbit.js?body=1" for 127.0.0.1 at 2013-10-06 22:39:50 +0800
|
|
2032
|
+
|
|
2033
|
+
|
|
2034
|
+
Started GET "/assets/foundation/foundation.reveal.js?body=1" for 127.0.0.1 at 2013-10-06 22:39:50 +0800
|
|
2035
|
+
|
|
2036
|
+
|
|
2037
|
+
Started GET "/assets/foundation/foundation.tooltips.js?body=1" for 127.0.0.1 at 2013-10-06 22:39:50 +0800
|
|
2038
|
+
|
|
2039
|
+
|
|
2040
|
+
Started GET "/assets/foundation/foundation.section.js?body=1" for 127.0.0.1 at 2013-10-06 22:39:50 +0800
|
|
2041
|
+
|
|
2042
|
+
|
|
2043
|
+
Started GET "/assets/foundation/foundation.topbar.js?body=1" for 127.0.0.1 at 2013-10-06 22:39:50 +0800
|
|
2044
|
+
|
|
2045
|
+
|
|
2046
|
+
Started GET "/assets/foundation/foundation.interchange.js?body=1" for 127.0.0.1 at 2013-10-06 22:39:50 +0800
|
|
2047
|
+
|
|
2048
|
+
|
|
2049
|
+
Started GET "/assets/foundation/foundation.placeholder.js?body=1" for 127.0.0.1 at 2013-10-06 22:39:50 +0800
|
|
2050
|
+
|
|
2051
|
+
|
|
2052
|
+
Started GET "/assets/foundation/foundation.abide.js?body=1" for 127.0.0.1 at 2013-10-06 22:39:50 +0800
|
|
2053
|
+
|
|
2054
|
+
|
|
2055
|
+
Started GET "/assets/foundation/index.js?body=1" for 127.0.0.1 at 2013-10-06 22:39:50 +0800
|
|
2056
|
+
|
|
2057
|
+
|
|
2058
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 22:39:50 +0800
|
|
2059
|
+
|
|
2060
|
+
|
|
2061
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 22:39:50 +0800
|
|
2062
|
+
|
|
2063
|
+
|
|
2064
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 22:41:09 +0800
|
|
2065
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
2066
|
+
Processing by PostsController#index as HTML
|
|
2067
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
2068
|
+
Rendered posts/index.html.haml within layouts/application (5.1ms)
|
|
2069
|
+
Completed 200 OK in 241ms (Views: 215.8ms | ActiveRecord: 0.4ms)
|
|
2070
|
+
|
|
2071
|
+
|
|
2072
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 22:41:10 +0800
|
|
2073
|
+
|
|
2074
|
+
|
|
2075
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 22:41:10 +0800
|
|
2076
|
+
|
|
2077
|
+
|
|
2078
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:10 +0800
|
|
2079
|
+
|
|
2080
|
+
|
|
2081
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 22:41:10 +0800
|
|
2082
|
+
|
|
2083
|
+
|
|
2084
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 22:41:10 +0800
|
|
2085
|
+
|
|
2086
|
+
|
|
2087
|
+
Started GET "/assets/foundation/foundation.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:10 +0800
|
|
2088
|
+
|
|
2089
|
+
|
|
2090
|
+
Started GET "/assets/foundation/foundation.alerts.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:10 +0800
|
|
2091
|
+
|
|
2092
|
+
|
|
2093
|
+
Started GET "/assets/foundation/foundation.clearing.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:10 +0800
|
|
2094
|
+
|
|
2095
|
+
|
|
2096
|
+
Started GET "/assets/foundation/foundation.cookie.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:10 +0800
|
|
2097
|
+
|
|
2098
|
+
|
|
2099
|
+
Started GET "/assets/foundation/foundation.dropdown.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:10 +0800
|
|
2100
|
+
|
|
2101
|
+
|
|
2102
|
+
Started GET "/assets/foundation/foundation.forms.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:10 +0800
|
|
2103
|
+
|
|
2104
|
+
|
|
2105
|
+
Started GET "/assets/foundation/foundation.joyride.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:10 +0800
|
|
2106
|
+
|
|
2107
|
+
|
|
2108
|
+
Started GET "/assets/foundation/foundation.orbit.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:10 +0800
|
|
2109
|
+
|
|
2110
|
+
|
|
2111
|
+
Started GET "/assets/foundation/foundation.reveal.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:10 +0800
|
|
2112
|
+
|
|
2113
|
+
|
|
2114
|
+
Started GET "/assets/foundation/foundation.magellan.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:10 +0800
|
|
2115
|
+
|
|
2116
|
+
|
|
2117
|
+
Started GET "/assets/foundation/foundation.section.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:10 +0800
|
|
2118
|
+
|
|
2119
|
+
|
|
2120
|
+
Started GET "/assets/foundation/foundation.tooltips.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:10 +0800
|
|
2121
|
+
|
|
2122
|
+
|
|
2123
|
+
Started GET "/assets/foundation/foundation.topbar.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:10 +0800
|
|
2124
|
+
|
|
2125
|
+
|
|
2126
|
+
Started GET "/assets/foundation/foundation.interchange.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:10 +0800
|
|
2127
|
+
|
|
2128
|
+
|
|
2129
|
+
Started GET "/assets/foundation/foundation.placeholder.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:10 +0800
|
|
2130
|
+
|
|
2131
|
+
|
|
2132
|
+
Started GET "/assets/foundation/foundation.abide.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:10 +0800
|
|
2133
|
+
|
|
2134
|
+
|
|
2135
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:10 +0800
|
|
2136
|
+
|
|
2137
|
+
|
|
2138
|
+
Started GET "/assets/foundation/index.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:10 +0800
|
|
2139
|
+
|
|
2140
|
+
|
|
2141
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:10 +0800
|
|
2142
|
+
|
|
2143
|
+
|
|
2144
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 22:41:30 +0800
|
|
2145
|
+
Processing by PostsController#index as HTML
|
|
2146
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
2147
|
+
Rendered posts/index.html.haml within layouts/application (1.0ms)
|
|
2148
|
+
Completed 200 OK in 18ms (Views: 15.8ms | ActiveRecord: 0.2ms)
|
|
2149
|
+
|
|
2150
|
+
|
|
2151
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 22:41:30 +0800
|
|
2152
|
+
|
|
2153
|
+
|
|
2154
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 22:41:30 +0800
|
|
2155
|
+
|
|
2156
|
+
|
|
2157
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 22:41:30 +0800
|
|
2158
|
+
|
|
2159
|
+
|
|
2160
|
+
Started GET "/assets/foundation/foundation.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:30 +0800
|
|
2161
|
+
|
|
2162
|
+
|
|
2163
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 22:41:30 +0800
|
|
2164
|
+
|
|
2165
|
+
|
|
2166
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:30 +0800
|
|
2167
|
+
|
|
2168
|
+
|
|
2169
|
+
Started GET "/assets/foundation/foundation.alerts.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:30 +0800
|
|
2170
|
+
|
|
2171
|
+
|
|
2172
|
+
Started GET "/assets/foundation/foundation.clearing.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:30 +0800
|
|
2173
|
+
|
|
2174
|
+
|
|
2175
|
+
Started GET "/assets/foundation/foundation.cookie.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:30 +0800
|
|
2176
|
+
|
|
2177
|
+
|
|
2178
|
+
Started GET "/assets/foundation/foundation.dropdown.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:30 +0800
|
|
2179
|
+
|
|
2180
|
+
|
|
2181
|
+
Started GET "/assets/foundation/foundation.forms.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:30 +0800
|
|
2182
|
+
|
|
2183
|
+
|
|
2184
|
+
Started GET "/assets/foundation/foundation.joyride.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:30 +0800
|
|
2185
|
+
|
|
2186
|
+
|
|
2187
|
+
Started GET "/assets/foundation/foundation.magellan.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:30 +0800
|
|
2188
|
+
|
|
2189
|
+
|
|
2190
|
+
Started GET "/assets/foundation/foundation.orbit.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:30 +0800
|
|
2191
|
+
|
|
2192
|
+
|
|
2193
|
+
Started GET "/assets/foundation/foundation.reveal.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:30 +0800
|
|
2194
|
+
|
|
2195
|
+
|
|
2196
|
+
Started GET "/assets/foundation/foundation.section.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:30 +0800
|
|
2197
|
+
|
|
2198
|
+
|
|
2199
|
+
Started GET "/assets/foundation/foundation.tooltips.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:30 +0800
|
|
2200
|
+
|
|
2201
|
+
|
|
2202
|
+
Started GET "/assets/foundation/foundation.topbar.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:30 +0800
|
|
2203
|
+
|
|
2204
|
+
|
|
2205
|
+
Started GET "/assets/foundation/foundation.interchange.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:30 +0800
|
|
2206
|
+
|
|
2207
|
+
|
|
2208
|
+
Started GET "/assets/foundation/foundation.placeholder.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:30 +0800
|
|
2209
|
+
|
|
2210
|
+
|
|
2211
|
+
Started GET "/assets/foundation/foundation.abide.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:30 +0800
|
|
2212
|
+
|
|
2213
|
+
|
|
2214
|
+
Started GET "/assets/foundation/index.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:30 +0800
|
|
2215
|
+
|
|
2216
|
+
|
|
2217
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:30 +0800
|
|
2218
|
+
|
|
2219
|
+
|
|
2220
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 22:41:30 +0800
|
|
2221
|
+
|
|
2222
|
+
|
|
2223
|
+
Started GET "/" for 127.0.0.1 at 2013-10-06 22:42:50 +0800
|
|
2224
|
+
Processing by PostsController#index as HTML
|
|
2225
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
|
2226
|
+
Rendered posts/index.html.haml within layouts/application (1.1ms)
|
|
2227
|
+
Completed 200 OK in 15ms (Views: 13.4ms | ActiveRecord: 0.2ms)
|
|
2228
|
+
|
|
2229
|
+
|
|
2230
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-06 22:42:50 +0800
|
|
2231
|
+
|
|
2232
|
+
|
|
2233
|
+
Started GET "/assets/foundation_and_overrides.css?body=1" for 127.0.0.1 at 2013-10-06 22:42:50 +0800
|
|
2234
|
+
|
|
2235
|
+
|
|
2236
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-06 22:42:50 +0800
|
|
2237
|
+
|
|
2238
|
+
|
|
2239
|
+
Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-10-06 22:42:50 +0800
|
|
2240
|
+
|
|
2241
|
+
|
|
2242
|
+
Started GET "/assets/foundation/foundation.js?body=1" for 127.0.0.1 at 2013-10-06 22:42:50 +0800
|
|
2243
|
+
|
|
2244
|
+
|
|
2245
|
+
Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2013-10-06 22:42:50 +0800
|
|
2246
|
+
|
|
2247
|
+
|
|
2248
|
+
Started GET "/assets/foundation/foundation.alerts.js?body=1" for 127.0.0.1 at 2013-10-06 22:42:50 +0800
|
|
2249
|
+
|
|
2250
|
+
|
|
2251
|
+
Started GET "/assets/foundation/foundation.clearing.js?body=1" for 127.0.0.1 at 2013-10-06 22:42:50 +0800
|
|
2252
|
+
|
|
2253
|
+
|
|
2254
|
+
Started GET "/assets/foundation/foundation.cookie.js?body=1" for 127.0.0.1 at 2013-10-06 22:42:50 +0800
|
|
2255
|
+
|
|
2256
|
+
|
|
2257
|
+
Started GET "/assets/foundation/foundation.dropdown.js?body=1" for 127.0.0.1 at 2013-10-06 22:42:50 +0800
|
|
2258
|
+
|
|
2259
|
+
|
|
2260
|
+
Started GET "/assets/foundation/foundation.forms.js?body=1" for 127.0.0.1 at 2013-10-06 22:42:50 +0800
|
|
2261
|
+
|
|
2262
|
+
|
|
2263
|
+
Started GET "/assets/foundation/foundation.joyride.js?body=1" for 127.0.0.1 at 2013-10-06 22:42:50 +0800
|
|
2264
|
+
|
|
2265
|
+
|
|
2266
|
+
Started GET "/assets/foundation/foundation.magellan.js?body=1" for 127.0.0.1 at 2013-10-06 22:42:50 +0800
|
|
2267
|
+
|
|
2268
|
+
|
|
2269
|
+
Started GET "/assets/foundation/foundation.orbit.js?body=1" for 127.0.0.1 at 2013-10-06 22:42:50 +0800
|
|
2270
|
+
|
|
2271
|
+
|
|
2272
|
+
Started GET "/assets/foundation/foundation.reveal.js?body=1" for 127.0.0.1 at 2013-10-06 22:42:50 +0800
|
|
2273
|
+
|
|
2274
|
+
|
|
2275
|
+
Started GET "/assets/foundation/foundation.section.js?body=1" for 127.0.0.1 at 2013-10-06 22:42:50 +0800
|
|
2276
|
+
|
|
2277
|
+
|
|
2278
|
+
Started GET "/assets/foundation/foundation.topbar.js?body=1" for 127.0.0.1 at 2013-10-06 22:42:50 +0800
|
|
2279
|
+
|
|
2280
|
+
|
|
2281
|
+
Started GET "/assets/foundation/foundation.tooltips.js?body=1" for 127.0.0.1 at 2013-10-06 22:42:50 +0800
|
|
2282
|
+
|
|
2283
|
+
|
|
2284
|
+
Started GET "/assets/foundation/foundation.interchange.js?body=1" for 127.0.0.1 at 2013-10-06 22:42:50 +0800
|
|
2285
|
+
|
|
2286
|
+
|
|
2287
|
+
Started GET "/assets/foundation/foundation.abide.js?body=1" for 127.0.0.1 at 2013-10-06 22:42:50 +0800
|
|
2288
|
+
|
|
2289
|
+
|
|
2290
|
+
Started GET "/assets/foundation/foundation.placeholder.js?body=1" for 127.0.0.1 at 2013-10-06 22:42:50 +0800
|
|
2291
|
+
|
|
2292
|
+
|
|
2293
|
+
Started GET "/assets/foundation/index.js?body=1" for 127.0.0.1 at 2013-10-06 22:42:50 +0800
|
|
2294
|
+
|
|
2295
|
+
|
|
2296
|
+
Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-10-06 22:42:50 +0800
|
|
2297
|
+
|
|
2298
|
+
|
|
2299
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-06 22:42:50 +0800
|